/* Options: Date: 2025-04-24 14:46:25 Version: 8.23 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://testapi.bokamera.se //GlobalNamespace: //MakePropertiesOptional: False //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: ListWebhookEventTypesRequest.* //ExcludeTypes: //DefaultImports: */ export interface IReturn { createResponse(): T; } export class WebhookEventTypeDto { public Name: string; public Description: string; public Id: number; public Value: string; public constructor(init?: Partial) { (Object as any).assign(this, init); } } export class WebhookEventTypesResponse { public EventTypes: IList; public constructor(init?: Partial) { (Object as any).assign(this, init); } } // @Route("/webhook/eventtypes", "GET") export class ListWebhookEventTypesRequest implements IReturn { public constructor(init?: Partial) { (Object as any).assign(this, init); } public getTypeName() { return 'ListWebhookEventTypesRequest'; } public getMethod() { return 'GET'; } public createResponse() { return new WebhookEventTypesResponse(); } }