/* Options: Date: 2025-07-04 07:52:39 Version: 6.110 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://doapigw.baasbv.nl/api //GlobalNamespace: //MakePropertiesOptional: False //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: AddFileAsExternalLink.* //ExcludeTypes: //DefaultImports: */ export interface IReturn { createResponse(): T; } export class AddFileAsExternalLinkResponse { public constructor(init?: Partial) { (Object as any).assign(this, init); } } export class AddFileAsExternalLink implements IReturn { public Link: string; public DocumentID: string; public Type: string; public constructor(init?: Partial) { (Object as any).assign(this, init); } public getTypeName() { return 'AddFileAsExternalLink'; } public getMethod() { return 'POST'; } public createResponse() { return new AddFileAsExternalLinkResponse(); } }