/* Options: Date: 2024-06-18 17:53:50 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: GetPricesAfterRebateCode.* //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="/rebatecodes/prices", Verbs="POST") @ApiResponse(Description="You were unauthorized to call this service", StatusCode=401) @ValidateRequest(Validator="IsAuthenticated") public static class GetPricesAfterRebateCode implements IReturn { /** * */ @ApiMember(Description="", IsRequired=true) public UUID CompanyId = null; /** * The service you want to get the prices with rebates on */ @ApiMember(Description="The service you want to get the prices with rebates on") public Integer ServiceId = null; /** * Provide this if you like to the prices with rebate code ids */ @ApiMember(Description="Provide this if you like to the prices with rebate code ids") public ArrayList RebateCodeIds = null; /** * Provide this if you like to the prices with rebate code signs instead of ids */ @ApiMember(Description="Provide this if you like to the prices with rebate code signs instead of ids") public ArrayList RebateCodeSigns = null; /** * Provide this if you like to calculate the prices with the provided datetime */ @ApiMember(Description="Provide this if you like to calculate the prices with the provided datetime", IsRequired=true) public Date DateFrom = null; public UUID getCompanyId() { return CompanyId; } public GetPricesAfterRebateCode setCompanyId(UUID value) { this.CompanyId = value; return this; } public Integer getServiceId() { return ServiceId; } public GetPricesAfterRebateCode setServiceId(Integer value) { this.ServiceId = value; return this; } public ArrayList getRebateCodeIds() { return RebateCodeIds; } public GetPricesAfterRebateCode setRebateCodeIds(ArrayList value) { this.RebateCodeIds = value; return this; } public ArrayList getRebateCodeSigns() { return RebateCodeSigns; } public GetPricesAfterRebateCode setRebateCodeSigns(ArrayList value) { this.RebateCodeSigns = value; return this; } public Date getDateFrom() { return DateFrom; } public GetPricesAfterRebateCode setDateFrom(Date value) { this.DateFrom = value; return this; } private static Object responseType = RebateCodePriceResponse.class; public Object getResponseType() { return responseType; } } public static class RebateCodePriceResponse { public ArrayList RebateCodePrices = null; public ResponseStatus ResponseStatus = null; public ArrayList getRebateCodePrices() { return RebateCodePrices; } public RebateCodePriceResponse setRebateCodePrices(ArrayList value) { this.RebateCodePrices = value; return this; } public ResponseStatus getResponseStatus() { return ResponseStatus; } public RebateCodePriceResponse setResponseStatus(ResponseStatus value) { this.ResponseStatus = value; return this; } } public static class RebateCodeTypeItem { public Integer Id = null; public String Name = null; public String Description = null; public Integer getId() { return Id; } public RebateCodeTypeItem setId(Integer value) { this.Id = value; return this; } public String getName() { return Name; } public RebateCodeTypeItem setName(String value) { this.Name = value; return this; } public String getDescription() { return Description; } public RebateCodeTypeItem setDescription(String value) { this.Description = value; return this; } } public static class RebateCodePrice { /** * Price Id */ @ApiMember(Description="Price Id") public Integer PriceId = null; public String PriceText = null; public Double PriceBeforeRebate = null; public Double Price = null; public BigDecimal VAT = null; public ArrayList AppliedCodes = null; public Integer getPriceId() { return PriceId; } public RebateCodePrice setPriceId(Integer value) { this.PriceId = value; return this; } public String getPriceText() { return PriceText; } public RebateCodePrice setPriceText(String value) { this.PriceText = value; return this; } public Double getPriceBeforeRebate() { return PriceBeforeRebate; } public RebateCodePrice setPriceBeforeRebate(Double value) { this.PriceBeforeRebate = value; return this; } public Double getPrice() { return Price; } public RebateCodePrice setPrice(Double value) { this.Price = value; return this; } public BigDecimal getVat() { return VAT; } public RebateCodePrice setVat(BigDecimal value) { this.VAT = value; return this; } public ArrayList getAppliedCodes() { return AppliedCodes; } public RebateCodePrice setAppliedCodes(ArrayList value) { this.AppliedCodes = value; return this; } } public static class AppliedRebateCodesResponse { public String RebateCodeSign = null; public Integer RebateCodeValue = null; public RebateCodeTypeItem RebateCodeType = null; public Integer RebateCodeId = null; public Double RebateAmount = null; public String getRebateCodeSign() { return RebateCodeSign; } public AppliedRebateCodesResponse setRebateCodeSign(String value) { this.RebateCodeSign = value; return this; } public Integer getRebateCodeValue() { return RebateCodeValue; } public AppliedRebateCodesResponse setRebateCodeValue(Integer value) { this.RebateCodeValue = value; return this; } public RebateCodeTypeItem getRebateCodeType() { return RebateCodeType; } public AppliedRebateCodesResponse setRebateCodeType(RebateCodeTypeItem value) { this.RebateCodeType = value; return this; } public Integer getRebateCodeId() { return RebateCodeId; } public AppliedRebateCodesResponse setRebateCodeId(Integer value) { this.RebateCodeId = value; return this; } public Double getRebateAmount() { return RebateAmount; } public AppliedRebateCodesResponse setRebateAmount(Double value) { this.RebateAmount = value; return this; } } }