/* Options: Date: 2025-12-06 05:22:33 Version: 8.80 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://api.dev.dynamics.trendsic.com //GlobalNamespace: //MakePropertiesOptional: False //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: DropboxShareRequest.* //ExcludeTypes: //DefaultImports: */ export interface IReturn { createResponse(): T; } // @DataContract export class ResponseStatus { // @DataMember(Order=1) public ErrorCode: string; // @DataMember(Order=2) public Message: string; // @DataMember(Order=3) public StackTrace: string; // @DataMember(Order=4) public Errors: ResponseError[] = []; // @DataMember(Order=5) public Meta: { [index:string]: string; } = {}; public constructor(init?: Partial) { (Object as any).assign(this, init); } } export class DropboxShareResponse { public ResponseStatus: ResponseStatus; public constructor(init?: Partial) { (Object as any).assign(this, init); } } // @Route("/v1/DropboxShare/{ContactId}/{AgentId}/{AttachmentId}/{SharerAgentId}", "POST,OPTIONS") // @Route("/v1/DropboxShare/{AgentId}/{AttachmentId}/{SharerAgentId}", "POST,OPTIONS") // @Route("/v1/DropboxShare/{DropboxShareId}", "DELETE,OPTIONS") // @Route("/v1/DropboxShare/{DropboxShareId}/{canShare}", "PUT,OPTIONS") export class DropboxShareRequest implements IReturn { public ContactId: number; public DropboxShareId: number; public AgentId: number; public AttachmentId: string; public SharerAgentId: number; public canShare: boolean; public constructor(init?: Partial) { (Object as any).assign(this, init); } public getTypeName() { return 'DropboxShareRequest'; } public getMethod() { return 'POST'; } public createResponse() { return new DropboxShareResponse(); } }