/* Options: Date: 2025-09-08 02:39:56 Version: 8.81 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://account.servicestack.net //Package: //GlobalNamespace: dtos //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: AccountSettings.* //ExcludeTypes: //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,java.io.InputStream,net.servicestack.client.* */ import java.math.*; import java.util.*; import java.io.InputStream; import net.servicestack.client.*; public class dtos { @Route(Path="/account/settings") // @Route(Path="/AccountSettings", Verbs="GET POST") public static class AccountSettings implements IReturn, IPost { public String displayName = null; public String firstName = null; public String lastName = null; public String company = null; public String phoneNumber = null; public Boolean showCard = null; public String brand = null; public String last4 = null; public String cardNumber = null; public String cvc = null; public Integer expMonth = null; public Integer expYear = null; public String getDisplayName() { return displayName; } public AccountSettings setDisplayName(String value) { this.displayName = value; return this; } public String getFirstName() { return firstName; } public AccountSettings setFirstName(String value) { this.firstName = value; return this; } public String getLastName() { return lastName; } public AccountSettings setLastName(String value) { this.lastName = value; return this; } public String getCompany() { return company; } public AccountSettings setCompany(String value) { this.company = value; return this; } public String getPhoneNumber() { return phoneNumber; } public AccountSettings setPhoneNumber(String value) { this.phoneNumber = value; return this; } public Boolean isShowCard() { return showCard; } public AccountSettings setShowCard(Boolean value) { this.showCard = value; return this; } public String getBrand() { return brand; } public AccountSettings setBrand(String value) { this.brand = value; return this; } public String getLast4() { return last4; } public AccountSettings setLast4(String value) { this.last4 = value; return this; } public String getCardNumber() { return cardNumber; } public AccountSettings setCardNumber(String value) { this.cardNumber = value; return this; } public String getCvc() { return cvc; } public AccountSettings setCvc(String value) { this.cvc = value; return this; } public Integer getExpMonth() { return expMonth; } public AccountSettings setExpMonth(Integer value) { this.expMonth = value; return this; } public Integer getExpYear() { return expYear; } public AccountSettings setExpYear(Integer value) { this.expYear = value; return this; } private static Object responseType = AccountSettings.class; public Object getResponseType() { return responseType; } } }