/* Options: Date: 2024-07-03 13:13:42 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: CompanyCreditCardInformation.* //ExcludeTypes: //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.*,com.google.gson.annotations.*,com.google.gson.reflect.* */ import java.math.*; import java.util.*; import net.servicestack.client.*; import com.google.gson.annotations.*; import com.google.gson.reflect.*; public class dtos { @Route(Path="/billing/company/creditcard", Verbs="GET") @ApiResponse(Description="You were unauthorized to call this service", StatusCode=401) @ValidateRequest(Validator="IsAuthenticated") public static class CompanyCreditCardInformation extends QueryDb 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; /** * If you want to include only active credit cards */ @ApiMember(DataType="boolean", Description="If you want to include only active credit cards", ParameterType="query") public Boolean Active = null; /** * If you want to include only valid credit cards (not expired and valid) */ @ApiMember(DataType="boolean", Description="If you want to include only valid credit cards (not expired and valid)", ParameterType="query") public Boolean IsValid = null; public UUID getCompanyId() { return CompanyId; } public CompanyCreditCardInformation setCompanyId(UUID value) { this.CompanyId = value; return this; } public Boolean isActive() { return Active; } public CompanyCreditCardInformation setActive(Boolean value) { this.Active = value; return this; } public Boolean getIsValid() { return IsValid; } public CompanyCreditCardInformation setIsValid(Boolean value) { this.IsValid = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @DataContract public static class QueryResponse { @DataMember(Order=1) public Integer Offset = null; @DataMember(Order=2) public Integer Total = null; @DataMember(Order=3) public ArrayList Results = null; @DataMember(Order=4) public HashMap Meta = null; @DataMember(Order=5) public ResponseStatus ResponseStatus = null; public Integer getOffset() { return Offset; } public QueryResponse setOffset(Integer value) { this.Offset = value; return this; } public Integer getTotal() { return Total; } public QueryResponse setTotal(Integer value) { this.Total = value; return this; } public ArrayList getResults() { return Results; } public QueryResponse setResults(ArrayList value) { this.Results = value; return this; } public HashMap getMeta() { return Meta; } public QueryResponse setMeta(HashMap value) { this.Meta = value; return this; } public ResponseStatus getResponseStatus() { return ResponseStatus; } public QueryResponse setResponseStatus(ResponseStatus value) { this.ResponseStatus = value; return this; } } public static class QueryDb extends QueryBase { } public static interface ICompany { public UUID CompanyId = null; } public static class CreditCard extends BaseModel { @Ignore() public Boolean IsValid = null; @Required() public UUID CompanyId = null; public Integer Id = null; @Required() public String Name = null; @Required() public Boolean Active = null; @Required() public String Type = null; @Required() public String ExpYear = null; @Required() public String ExpMonth = null; @Required() public String TicketId = null; public Date Updated = null; public Date Created = null; public Date ModifiedDate = null; public Boolean getIsValid() { return IsValid; } public CreditCard setIsValid(Boolean value) { this.IsValid = value; return this; } public UUID getCompanyId() { return CompanyId; } public CreditCard setCompanyId(UUID value) { this.CompanyId = value; return this; } public Integer getId() { return Id; } public CreditCard setId(Integer value) { this.Id = value; return this; } public String getName() { return Name; } public CreditCard setName(String value) { this.Name = value; return this; } public Boolean isActive() { return Active; } public CreditCard setActive(Boolean value) { this.Active = value; return this; } public String getType() { return Type; } public CreditCard setType(String value) { this.Type = value; return this; } public String getExpYear() { return ExpYear; } public CreditCard setExpYear(String value) { this.ExpYear = value; return this; } public String getExpMonth() { return ExpMonth; } public CreditCard setExpMonth(String value) { this.ExpMonth = value; return this; } public String getTicketId() { return TicketId; } public CreditCard setTicketId(String value) { this.TicketId = value; return this; } public Date getUpdated() { return Updated; } public CreditCard setUpdated(Date value) { this.Updated = value; return this; } public Date getCreated() { return Created; } public CreditCard setCreated(Date value) { this.Created = value; return this; } public Date getModifiedDate() { return ModifiedDate; } public CreditCard setModifiedDate(Date value) { this.ModifiedDate = value; return this; } } @DataContract public static class QueryBase { /** * Skip over a given number of elements in a sequence and then return the remainder. Use this when you need paging.

Example:
?skip=10&orderBy=Id */ @DataMember(Order=1) public Integer Skip = null; /** * Return a given number of elements in a sequence and then skip over the remainder. Use this when you need paging.

Example:
?take=20 */ @DataMember(Order=2) public Integer Take = null; /** * Comma separated list of fields to order by. Prefix the field name with a minus if you wan't to invert the sort for that field.

Example:
?orderBy=Id,-Age,FirstName */ @DataMember(Order=3) public String OrderBy = null; /** * Comma separated list of fields to order by in descending order. Prefix the field name with a minus if you wan't to invert the sort for that field.

Example:
?orderByDesc=Id,-Age,FirstName */ @DataMember(Order=4) public String OrderByDesc = null; /** * Include any of the aggregates AVG, COUNT, FIRST, LAST, MAX, MIN, SUM in your result set. The results will be returned in the meta field.

Example:
?include=COUNT(*) as Total

or multiple fields with
?include=Count(*) Total, Min(Age), AVG(Age) AverageAge

or unique with
?include=COUNT(DISTINCT LivingStatus) as UniqueStatus */ @DataMember(Order=5) public String Include = null; @DataMember(Order=6) public String Fields = null; @DataMember(Order=7) public HashMap Meta = null; public Integer getSkip() { return Skip; } public QueryBase setSkip(Integer value) { this.Skip = value; return this; } public Integer getTake() { return Take; } public QueryBase setTake(Integer value) { this.Take = value; return this; } public String getOrderBy() { return OrderBy; } public QueryBase setOrderBy(String value) { this.OrderBy = value; return this; } public String getOrderByDesc() { return OrderByDesc; } public QueryBase setOrderByDesc(String value) { this.OrderByDesc = value; return this; } public String getInclude() { return Include; } public QueryBase setInclude(String value) { this.Include = value; return this; } public String getFields() { return Fields; } public QueryBase setFields(String value) { this.Fields = value; return this; } public HashMap getMeta() { return Meta; } public QueryBase setMeta(HashMap value) { this.Meta = value; return this; } } public static class BaseModel { } public static class CompanyCreditCardQueryResponse { /** * The credit card id */ @ApiMember(Description="The credit card id") public Integer Id = null; /** * The credit card name */ @ApiMember(Description="The credit card name") public String Name = null; /** * If the credit card is active */ @ApiMember(Description="If the credit card is active") public Boolean Active = null; /** * If the credit card is valid (active and not expired) */ @ApiMember(Description="If the credit card is valid (active and not expired)") public Boolean IsValid = null; /** * The credit card type */ @ApiMember(Description="The credit card type") public String Type = null; /** * The credit card expiration Year */ @ApiMember(Description="The credit card expiration Year") public String ExpYear = null; /** * The credit card expiration month */ @ApiMember(Description="The credit card expiration month") public String ExpMonth = null; /** * The credit card ticket name. This is secret information and won't be displayed */ @ApiMember(Description="The credit card ticket name. This is secret information and won't be displayed") public String TicketId = null; /** * The date when the credit card was saved. */ @ApiMember(Description="The date when the credit card was saved.") public Date Created = null; /** * The date when the credit card was updated. */ @ApiMember(Description="The date when the credit card was updated.") public Date Updated = null; public Integer getId() { return Id; } public CompanyCreditCardQueryResponse setId(Integer value) { this.Id = value; return this; } public String getName() { return Name; } public CompanyCreditCardQueryResponse setName(String value) { this.Name = value; return this; } public Boolean isActive() { return Active; } public CompanyCreditCardQueryResponse setActive(Boolean value) { this.Active = value; return this; } public Boolean getIsValid() { return IsValid; } public CompanyCreditCardQueryResponse setIsValid(Boolean value) { this.IsValid = value; return this; } public String getType() { return Type; } public CompanyCreditCardQueryResponse setType(String value) { this.Type = value; return this; } public String getExpYear() { return ExpYear; } public CompanyCreditCardQueryResponse setExpYear(String value) { this.ExpYear = value; return this; } public String getExpMonth() { return ExpMonth; } public CompanyCreditCardQueryResponse setExpMonth(String value) { this.ExpMonth = value; return this; } public String getTicketId() { return TicketId; } public CompanyCreditCardQueryResponse setTicketId(String value) { this.TicketId = value; return this; } public Date getCreated() { return Created; } public CompanyCreditCardQueryResponse setCreated(Date value) { this.Created = value; return this; } public Date getUpdated() { return Updated; } public CompanyCreditCardQueryResponse setUpdated(Date value) { this.Updated = value; return this; } } }