/* Options: Date: 2024-07-03 12:56:27 Version: 8.23 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://api.bokamera.se //GlobalNamespace: //MakePropertiesOptional: False //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: WebhookCreateAgreement.* //ExcludeTypes: //DefaultImports: */ export class WebhookAgreements { public id: string; public label: string; public documents: string[]; public constructor(init?: Partial) { (Object as any).assign(this, init); } } export class Releases { public deletion: WebhookAgreements[]; public constructor(init?: Partial) { (Object as any).assign(this, init); } } // @Route("/webhooks/terms", "POST") // @ApiResponse(Description="Returned if there is a validation error on the input parameters", StatusCode=400) // @ApiResponse(Description="Returned if the current user is not allowed to perform the action", StatusCode=401) export class WebhookCreateAgreement { public releases: Releases; public documents: string[]; public secret: string; public constructor(init?: Partial) { (Object as any).assign(this, init); } public getTypeName() { return 'WebhookCreateAgreement'; } public getMethod() { return 'POST'; } public createResponse() {} }