scheunemann-interfaces
Version:
Interfaces de Projetos Scheunemann
14 lines (13 loc) • 409 B
TypeScript
import { IEvolutionChatWoot } from './i-chatwoot';
export interface IEvolutionInstance {
instanceName: string;
instanceId: string;
status: 'open' | 'close' | 'connecting' | string;
serverUrl: string;
apikey: string;
owner: string | null;
profileName: string | null;
profilePictureUrl: string | null;
profileStatus: string | null;
chatwoot: IEvolutionChatWoot | null;
}