prodap-chatbot-domain
Version:
Classes utilizadas na resposta de todas as Intents do Assistente Virtual
16 lines (15 loc) • 465 B
TypeScript
import ActionAbstract from './ActionAbstract';
import HttpMethods from './HttpMethods';
import { Action, IconType, TextType } from '../common/types';
export type HttpActionProps = Action & {
url: string;
};
export default class HttpAction extends ActionAbstract {
desc?: TextType | number;
method?: HttpMethods;
openIcon?: IconType;
order?: number | string;
statusIcon?: IconType;
url: string;
constructor(props: HttpActionProps);
}