/* Options: Date: 2026-01-27 22:28:28 Version: 6.40 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://digiofficeapigateway.vionfood.com/api //GlobalNamespace: //MakePropertiesOptional: False //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: GetCanPlaceSignatureInDocument.* //ExcludeTypes: //DefaultImports: */ export interface IReturn { createResponse(): T; } // @Route("/documents/{DocumentID}/CanPlaceSignatureInDocument", "GET") export class GetCanPlaceSignatureInDocument implements IReturn { public DocumentID: string; public constructor(init?: Partial) { (Object as any).assign(this, init); } public getTypeName() { return 'GetCanPlaceSignatureInDocument'; } public getMethod() { return 'GET'; } public createResponse() { return false; } }