/* Options: Date: 2025-01-18 08:52:21 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: 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(); } }