new api implementation

This commit is contained in:
Eudes Inácio
2024-05-29 15:43:37 +01:00
parent 08303ef8cf
commit 3769a7b8fe
12 changed files with 325 additions and 34 deletions
+20 -4
View File
@@ -4,8 +4,8 @@ export class Attachment {
Source?: Sources;
ApplicationId: number
CreateDate: string
Data: null| string
Description:string
Data: null | string
Description: string
Link: null
SourceId: string
SourceName: string
@@ -13,8 +13,7 @@ export class Attachment {
//Data: any;
}
export enum Sources
{
export enum Sources {
Undefined = 0,
webTRIX = 1,
K2 = 2,
@@ -35,3 +34,20 @@ export class EventAttachment {
SourceTitle: string;
}
export class EventAttachment_v2 {
sourceId: string;
sourceName: string;
description: string
applicationId: number
}
export class Atendees_v2 {
name: string;
emailAddress: string;
attendeeType: string;
wxUserId: number;
IsRequired: boolean;
}