/* Options: Date: 2025-01-18 08:50:03 Version: 8.23 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://api.bokamera.se //Package: //GlobalNamespace: dtos //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: ListWebhookEventTypesRequest.* //ExcludeTypes: //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.* */ import java.math.*; import java.util.*; import net.servicestack.client.*; public class dtos { @Route(Path="/webhook/eventtypes", Verbs="GET") public static class ListWebhookEventTypesRequest implements IReturn { private static Object responseType = WebhookEventTypesResponse.class; public Object getResponseType() { return responseType; } } public static class WebhookEventTypesResponse { public IList EventTypes = null; public IList getEventTypes() { return EventTypes; } public WebhookEventTypesResponse setEventTypes(IList value) { this.EventTypes = value; return this; } } public static class WebhookEventTypeDto { public String Name = null; public String Description = null; public Integer Id = null; public String Value = null; public String getName() { return Name; } public WebhookEventTypeDto setName(String value) { this.Name = value; return this; } public String getDescription() { return Description; } public WebhookEventTypeDto setDescription(String value) { this.Description = value; return this; } public Integer getId() { return Id; } public WebhookEventTypeDto setId(Integer value) { this.Id = value; return this; } public String getValue() { return Value; } public WebhookEventTypeDto setValue(String value) { this.Value = value; return this; } } }