mirror of
https://code.equilibrium.co.ao/ITO/doneit-web.git
synced 2026-04-19 04:57:52 +00:00
new api implementation
This commit is contained in:
@@ -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;
|
||||
}
|
||||
Reference in New Issue
Block a user