/* Options: Date: 2024-06-02 07:04:49 Version: 8.23 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://testapi.bokamera.se //Package: //GlobalNamespace: dtos //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: AddAccessyCodeLockSetting.* //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="/codelock/accessy/settings", Verbs="POST") @ValidateRequest(Validator="IsAuthenticated") @ApiResponse(Description="You were unauthorized to call this service", StatusCode=401) // @ApiResponse(Description="You have too low privileges to call this service", StatusCode=403) public static class AddAccessyCodeLockSetting 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.") public UUID CompanyId = null; /** * The api clientId */ @ApiMember(DataType="string", Description="The api clientId") public String ClientId = null; /** * The api clientSecret */ @ApiMember(DataType="string", Description="The api clientSecret") public String ClientSecret = null; public UUID getCompanyId() { return CompanyId; } public AddAccessyCodeLockSetting setCompanyId(UUID value) { this.CompanyId = value; return this; } public String getClientId() { return ClientId; } public AddAccessyCodeLockSetting setClientId(String value) { this.ClientId = value; return this; } public String getClientSecret() { return ClientSecret; } public AddAccessyCodeLockSetting setClientSecret(String value) { this.ClientSecret = value; return this; } private static Object responseType = CodeLockAccessySettingResponse.class; public Object getResponseType() { return responseType; } } public static class CodeLockAccessySettingResponse { public UUID CompanyId = null; /** * The api clientId */ @ApiMember(DataType="string", Description="The api clientId") public String ClientId = null; /** * The api clientSecret */ @ApiMember(DataType="string", Description="The api clientSecret") public String ClientSecret = null; /** * When settings was created */ @ApiMember(DataType="datetime", Description="When settings was created") public Date Created = null; /** * When settings was updated */ @ApiMember(DataType="datetime", Description="When settings was updated") public Date Updated = null; public UUID getCompanyId() { return CompanyId; } public CodeLockAccessySettingResponse setCompanyId(UUID value) { this.CompanyId = value; return this; } public String getClientId() { return ClientId; } public CodeLockAccessySettingResponse setClientId(String value) { this.ClientId = value; return this; } public String getClientSecret() { return ClientSecret; } public CodeLockAccessySettingResponse setClientSecret(String value) { this.ClientSecret = value; return this; } public Date getCreated() { return Created; } public CodeLockAccessySettingResponse setCreated(Date value) { this.Created = value; return this; } public Date getUpdated() { return Updated; } public CodeLockAccessySettingResponse setUpdated(Date value) { this.Updated = value; return this; } } public static interface ICompany { public UUID CompanyId = null; } }