/* Options: Date: 2026-03-31 18:44:37 Version: 8.80 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://test-dogw.klokgroep.nl/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; } }