/* Options: Date: 2025-04-04 20:16: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: StripeGetAccountRequest.* //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/stripe/v1/account", Verbs="GET") public static class StripeGetAccountRequest implements IReturn, ICompany { /** * The company id. */ @ApiMember(Description="The company id.", IsRequired=true) public UUID CompanyId = null; public UUID getCompanyId() { return CompanyId; } public StripeGetAccountRequest setCompanyId(UUID value) { this.CompanyId = value; return this; } private static Object responseType = StripeAccountQueryResponse.class; public Object getResponseType() { return responseType; } } public static class StripeAccountQueryResponse { public String StripeAccount = null; public String getStripeAccount() { return StripeAccount; } public StripeAccountQueryResponse setStripeAccount(String value) { this.StripeAccount = value; return this; } } public static interface ICompany { public UUID CompanyId = null; } }