/* Options: Date: 2025-01-18 08:55:46 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: WebhookSettingsRequest.* //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/settings", Verbs="GET") public static class WebhookSettingsRequest 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; public UUID getCompanyId() { return CompanyId; } public WebhookSettingsRequest setCompanyId(UUID value) { this.CompanyId = value; return this; } private static Object responseType = WebhookSettingsResponse.class; public Object getResponseType() { return responseType; } } public static class WebhookSettingsResponse { public Boolean Enabled = null; public String Message = null; public UUID CompanyId = null; public Boolean isEnabled() { return Enabled; } public WebhookSettingsResponse setEnabled(Boolean value) { this.Enabled = value; return this; } public String getMessage() { return Message; } public WebhookSettingsResponse setMessage(String value) { this.Message = value; return this; } public UUID getCompanyId() { return CompanyId; } public WebhookSettingsResponse setCompanyId(UUID value) { this.CompanyId = value; return this; } } public static interface ICompany { public UUID CompanyId = null; } }