/* Options: Date: 2024-07-03 14:33:08 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: TestPaysonApiSettings.* //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="/payment/payson/apisettings/test", Verbs="POST") @ValidateRequest(Validator="IsAuthenticated") public static class TestPaysonApiSettings 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 payson security user id */ @ApiMember(Description="The payson security user id") public String SecurityUserId = null; /** * The payson security user password */ @ApiMember(Description="The payson security user password") public String SecurityPassword = null; /** * The payson receiver email */ @ApiMember(Description="The payson receiver email") public String ReceiverEmail = null; /** * The payson receiver firstname */ @ApiMember(Description="The payson receiver firstname") public String ReceiverFirstname = null; /** * The payson receiver lastname */ @ApiMember(Description="The payson receiver lastname") public String ReceiverLastname = null; public UUID getCompanyId() { return CompanyId; } public TestPaysonApiSettings setCompanyId(UUID value) { this.CompanyId = value; return this; } public String getSecurityUserId() { return SecurityUserId; } public TestPaysonApiSettings setSecurityUserId(String value) { this.SecurityUserId = value; return this; } public String getSecurityPassword() { return SecurityPassword; } public TestPaysonApiSettings setSecurityPassword(String value) { this.SecurityPassword = value; return this; } public String getReceiverEmail() { return ReceiverEmail; } public TestPaysonApiSettings setReceiverEmail(String value) { this.ReceiverEmail = value; return this; } public String getReceiverFirstname() { return ReceiverFirstname; } public TestPaysonApiSettings setReceiverFirstname(String value) { this.ReceiverFirstname = value; return this; } public String getReceiverLastname() { return ReceiverLastname; } public TestPaysonApiSettings setReceiverLastname(String value) { this.ReceiverLastname = value; return this; } private static Object responseType = PaysonApiSettingsTestResponse.class; public Object getResponseType() { return responseType; } } public static class PaysonApiSettingsTestResponse { /** * If the settings works or not */ @ApiMember(Description="If the settings works or not") public Boolean Success = null; public Boolean isSuccess() { return Success; } public PaysonApiSettingsTestResponse setSuccess(Boolean value) { this.Success = value; return this; } } public static interface ICompany { public UUID CompanyId = null; } }