/* Options: Date: 2025-01-18 08:37:36 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: UpdateWebhookEndpoint.* //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/endpoints/{id}", Verbs="PUT") @ApiResponse(Description="You were unauthorized to call this service", StatusCode=401) @ValidateRequest(Validator="IsAuthenticated") public static class UpdateWebhookEndpoint implements IReturn, ICompany { /** * The company id, if empty will use the company id for the user you are logged in with. */ @ApiMember(Description="The company id, if empty will use the company id for the user you are logged in with.", IsRequired=true, ParameterType="query") public UUID CompanyId = null; /** * The webhook endpoint URL. */ @ApiMember(Description="The webhook endpoint URL.", IsRequired=true) public String Url = null; /** * The ID of the webhook endpoint. */ @ApiMember(Description="The ID of the webhook endpoint.", IsRequired=true, ParameterType="path") public String Id = null; /** * List of event types. At least one event type is required. */ @ApiMember(Description="List of event types. At least one event type is required.", IsRequired=true) @Validate(Validator="NotEmpty", ErrorCode="At least one event type is required.") public ArrayList EventTypes = null; public String Description = null; public Boolean Disabled = null; public UUID getCompanyId() { return CompanyId; } public UpdateWebhookEndpoint setCompanyId(UUID value) { this.CompanyId = value; return this; } public String getUrl() { return Url; } public UpdateWebhookEndpoint setUrl(String value) { this.Url = value; return this; } public String getId() { return Id; } public UpdateWebhookEndpoint setId(String value) { this.Id = value; return this; } public ArrayList getEventTypes() { return EventTypes; } public UpdateWebhookEndpoint setEventTypes(ArrayList value) { this.EventTypes = value; return this; } public String getDescription() { return Description; } public UpdateWebhookEndpoint setDescription(String value) { this.Description = value; return this; } public Boolean isDisabled() { return Disabled; } public UpdateWebhookEndpoint setDisabled(Boolean value) { this.Disabled = value; return this; } private static Object responseType = WebhookEndpoint.class; public Object getResponseType() { return responseType; } } public static class WebhookEndpoint { public String Description = null; public String Url = null; public String Id = null; public Boolean Disabled = null; public ArrayList EventTypes = null; public String getDescription() { return Description; } public WebhookEndpoint setDescription(String value) { this.Description = value; return this; } public String getUrl() { return Url; } public WebhookEndpoint setUrl(String value) { this.Url = value; return this; } public String getId() { return Id; } public WebhookEndpoint setId(String value) { this.Id = value; return this; } public Boolean isDisabled() { return Disabled; } public WebhookEndpoint setDisabled(Boolean value) { this.Disabled = value; return this; } public ArrayList getEventTypes() { return EventTypes; } public WebhookEndpoint setEventTypes(ArrayList value) { this.EventTypes = value; return this; } } public static interface ICompany { public UUID CompanyId = null; } }