Requires any of the roles: | bookingsupplier-administrator-write, superadmin |
PUT | /rebatecodes/{Id} | Update RebateCode by Id | Update RebateCode by Id) |
---|
import java.math.*;
import java.util.*;
import net.servicestack.client.*;
public class dtos
{
@ApiResponse(Description="You were unauthorized to call this service", StatusCode=401)
@ValidateRequest(Validator="IsAuthenticated")
public static class UpdateRebateCode implements ICompany
{
/**
* Id of the rebate code
*/
@ApiMember(Description="Id of the rebate code", IsRequired=true, ParameterType="path")
public Integer Id = null;
public UUID CompanyId = null;
/**
* The default value is 9999
*/
@ApiMember(Description="The default value is 9999")
public Integer MaxNumberOfUses = null;
/**
* The default value is 1
*/
@ApiMember(Description="The default value is 1")
public Integer MaxNumberOfUsesPerCustomer = null;
/**
* AutoGenerateRebateCodeSign=true - random generate code
*/
@ApiMember(Description="AutoGenerateRebateCodeSign=true - random generate code")
public Boolean AutoGenerateRebateCodeSign = null;
/**
* 1 - Percent, 2 - Сurrency
*/
@ApiMember(Description="1 - Percent, 2 - Сurrency")
public Integer RebateCodeTypeId = null;
/**
*
*/
@ApiMember(Description="")
public Date ValidFrom = null;
/**
*
*/
@ApiMember(Description="")
public Date ValidTo = null;
/**
* If the price is only valid for specific days in week add a comma separated list of which days this day price belongs to, 1 = Monday .. 7 = Sunday. All old days connected will be removed on update.
*/
@ApiMember(Description="If the price is only valid for specific days in week add a comma separated list of which days this day price belongs to, 1 = Monday .. 7 = Sunday. All old days connected will be removed on update.")
public TimeSpan FromTime = null;
/**
* If the price is only valid for a specific time span during a time of day enter the FromTime and ToTime parameters.
*/
@ApiMember(Description="If the price is only valid for a specific time span during a time of day enter the FromTime and ToTime parameters.")
public TimeSpan ToTime = null;
public Integer RebateCodeValue = null;
/**
* Is empty - random generate code, is not empty - more than four letters, unique among active codes
*/
@ApiMember(Description="Is empty - random generate code, is not empty - more than four letters, unique among active codes")
public String RebateCodeSign = null;
/**
*
*/
@ApiMember(Description="")
public String PersonalNote = null;
/**
*
*/
@ApiMember(Description="")
public ArrayList<Integer> DaysOfWeek = null;
/**
*
*/
@ApiMember(Description="")
public ArrayList<Integer> Services = null;
/**
*
*/
@ApiMember(Description="")
public ArrayList<UUID> Customers = null;
public Integer getId() { return Id; }
public UpdateRebateCode setId(Integer value) { this.Id = value; return this; }
public UUID getCompanyId() { return CompanyId; }
public UpdateRebateCode setCompanyId(UUID value) { this.CompanyId = value; return this; }
public Integer getMaxNumberOfUses() { return MaxNumberOfUses; }
public UpdateRebateCode setMaxNumberOfUses(Integer value) { this.MaxNumberOfUses = value; return this; }
public Integer getMaxNumberOfUsesPerCustomer() { return MaxNumberOfUsesPerCustomer; }
public UpdateRebateCode setMaxNumberOfUsesPerCustomer(Integer value) { this.MaxNumberOfUsesPerCustomer = value; return this; }
public Boolean isAutoGenerateRebateCodeSign() { return AutoGenerateRebateCodeSign; }
public UpdateRebateCode setAutoGenerateRebateCodeSign(Boolean value) { this.AutoGenerateRebateCodeSign = value; return this; }
public Integer getRebateCodeTypeId() { return RebateCodeTypeId; }
public UpdateRebateCode setRebateCodeTypeId(Integer value) { this.RebateCodeTypeId = value; return this; }
public Date getValidFrom() { return ValidFrom; }
public UpdateRebateCode setValidFrom(Date value) { this.ValidFrom = value; return this; }
public Date getValidTo() { return ValidTo; }
public UpdateRebateCode setValidTo(Date value) { this.ValidTo = value; return this; }
public TimeSpan getFromTime() { return FromTime; }
public UpdateRebateCode setFromTime(TimeSpan value) { this.FromTime = value; return this; }
public TimeSpan getToTime() { return ToTime; }
public UpdateRebateCode setToTime(TimeSpan value) { this.ToTime = value; return this; }
public Integer getRebateCodeValue() { return RebateCodeValue; }
public UpdateRebateCode setRebateCodeValue(Integer value) { this.RebateCodeValue = value; return this; }
public String getRebateCodeSign() { return RebateCodeSign; }
public UpdateRebateCode setRebateCodeSign(String value) { this.RebateCodeSign = value; return this; }
public String getPersonalNote() { return PersonalNote; }
public UpdateRebateCode setPersonalNote(String value) { this.PersonalNote = value; return this; }
public ArrayList<Integer> getDaysOfWeek() { return DaysOfWeek; }
public UpdateRebateCode setDaysOfWeek(ArrayList<Integer> value) { this.DaysOfWeek = value; return this; }
public ArrayList<Integer> getServices() { return Services; }
public UpdateRebateCode setServices(ArrayList<Integer> value) { this.Services = value; return this; }
public ArrayList<UUID> getCustomers() { return Customers; }
public UpdateRebateCode setCustomers(ArrayList<UUID> value) { this.Customers = value; return this; }
}
public static class RebateCodeResponse
{
public Integer Id = null;
public UUID CompanyId = null;
public Date ValidFrom = null;
public Date ValidTo = null;
/**
* If the price is only valid for specific days in week add a comma separated list of which days this day price belongs to, 1 = Monday .. 7 = Sunday. All old days connected will be removed on update.
*/
@ApiMember(Description="If the price is only valid for specific days in week add a comma separated list of which days this day price belongs to, 1 = Monday .. 7 = Sunday. All old days connected will be removed on update.")
public TimeSpan FromTime = null;
/**
* If the price is only valid for a specific time span during a time of day enter the FromTime and ToTime parameters.
*/
@ApiMember(Description="If the price is only valid for a specific time span during a time of day enter the FromTime and ToTime parameters.")
public TimeSpan ToTime = null;
public String CreatedBy = null;
public Date Created = null;
public String UpdatedBy = null;
public Date Updated = null;
public String PersonalNote = null;
public String RebateCodeSign = null;
public Integer RebateCodeValue = null;
public Integer RebateCodeTypeId = null;
public String Name = null;
public Integer RebateCodeStatusId = null;
public String StatusName = null;
public Integer MaxNumberOfUses = null;
public Integer MaxNumberOfUsesPerCustomer = null;
public Integer NumberOfUsesUsed = null;
public ArrayList<DaysOfWeekResponse> DaysOfWeek = null;
public ArrayList<RebateCodeServiceResponse> Services = null;
public ArticleResponse Article = null;
public ArrayList<RebateCodeTransactionQueryResponse> Transactions = null;
public Double RemainingAmount = null;
public Integer RemainingUsage = null;
public ArrayList<RebateCodeCustomerResponse> Customers = null;
public ResponseStatus ResponseStatus = null;
public Boolean PaymentReceived = null;
public String RebateCodeCurrencySign = null;
public Boolean ActiveByStatus = null;
public String PriceSign = null;
public String RebateCodeTypeName = null;
public Integer getId() { return Id; }
public RebateCodeResponse setId(Integer value) { this.Id = value; return this; }
public UUID getCompanyId() { return CompanyId; }
public RebateCodeResponse setCompanyId(UUID value) { this.CompanyId = value; return this; }
public Date getValidFrom() { return ValidFrom; }
public RebateCodeResponse setValidFrom(Date value) { this.ValidFrom = value; return this; }
public Date getValidTo() { return ValidTo; }
public RebateCodeResponse setValidTo(Date value) { this.ValidTo = value; return this; }
public TimeSpan getFromTime() { return FromTime; }
public RebateCodeResponse setFromTime(TimeSpan value) { this.FromTime = value; return this; }
public TimeSpan getToTime() { return ToTime; }
public RebateCodeResponse setToTime(TimeSpan value) { this.ToTime = value; return this; }
public String getCreatedBy() { return CreatedBy; }
public RebateCodeResponse setCreatedBy(String value) { this.CreatedBy = value; return this; }
public Date getCreated() { return Created; }
public RebateCodeResponse setCreated(Date value) { this.Created = value; return this; }
public String getUpdatedBy() { return UpdatedBy; }
public RebateCodeResponse setUpdatedBy(String value) { this.UpdatedBy = value; return this; }
public Date getUpdated() { return Updated; }
public RebateCodeResponse setUpdated(Date value) { this.Updated = value; return this; }
public String getPersonalNote() { return PersonalNote; }
public RebateCodeResponse setPersonalNote(String value) { this.PersonalNote = value; return this; }
public String getRebateCodeSign() { return RebateCodeSign; }
public RebateCodeResponse setRebateCodeSign(String value) { this.RebateCodeSign = value; return this; }
public Integer getRebateCodeValue() { return RebateCodeValue; }
public RebateCodeResponse setRebateCodeValue(Integer value) { this.RebateCodeValue = value; return this; }
public Integer getRebateCodeTypeId() { return RebateCodeTypeId; }
public RebateCodeResponse setRebateCodeTypeId(Integer value) { this.RebateCodeTypeId = value; return this; }
public String getName() { return Name; }
public RebateCodeResponse setName(String value) { this.Name = value; return this; }
public Integer getRebateCodeStatusId() { return RebateCodeStatusId; }
public RebateCodeResponse setRebateCodeStatusId(Integer value) { this.RebateCodeStatusId = value; return this; }
public String getStatusName() { return StatusName; }
public RebateCodeResponse setStatusName(String value) { this.StatusName = value; return this; }
public Integer getMaxNumberOfUses() { return MaxNumberOfUses; }
public RebateCodeResponse setMaxNumberOfUses(Integer value) { this.MaxNumberOfUses = value; return this; }
public Integer getMaxNumberOfUsesPerCustomer() { return MaxNumberOfUsesPerCustomer; }
public RebateCodeResponse setMaxNumberOfUsesPerCustomer(Integer value) { this.MaxNumberOfUsesPerCustomer = value; return this; }
public Integer getNumberOfUsesUsed() { return NumberOfUsesUsed; }
public RebateCodeResponse setNumberOfUsesUsed(Integer value) { this.NumberOfUsesUsed = value; return this; }
public ArrayList<DaysOfWeekResponse> getDaysOfWeek() { return DaysOfWeek; }
public RebateCodeResponse setDaysOfWeek(ArrayList<DaysOfWeekResponse> value) { this.DaysOfWeek = value; return this; }
public ArrayList<RebateCodeServiceResponse> getServices() { return Services; }
public RebateCodeResponse setServices(ArrayList<RebateCodeServiceResponse> value) { this.Services = value; return this; }
public ArticleResponse getArticle() { return Article; }
public RebateCodeResponse setArticle(ArticleResponse value) { this.Article = value; return this; }
public ArrayList<RebateCodeTransactionQueryResponse> getTransactions() { return Transactions; }
public RebateCodeResponse setTransactions(ArrayList<RebateCodeTransactionQueryResponse> value) { this.Transactions = value; return this; }
public Double getRemainingAmount() { return RemainingAmount; }
public RebateCodeResponse setRemainingAmount(Double value) { this.RemainingAmount = value; return this; }
public Integer getRemainingUsage() { return RemainingUsage; }
public RebateCodeResponse setRemainingUsage(Integer value) { this.RemainingUsage = value; return this; }
public ArrayList<RebateCodeCustomerResponse> getCustomers() { return Customers; }
public RebateCodeResponse setCustomers(ArrayList<RebateCodeCustomerResponse> value) { this.Customers = value; return this; }
public ResponseStatus getResponseStatus() { return ResponseStatus; }
public RebateCodeResponse setResponseStatus(ResponseStatus value) { this.ResponseStatus = value; return this; }
public Boolean isPaymentReceived() { return PaymentReceived; }
public RebateCodeResponse setPaymentReceived(Boolean value) { this.PaymentReceived = value; return this; }
public String getRebateCodeCurrencySign() { return RebateCodeCurrencySign; }
public RebateCodeResponse setRebateCodeCurrencySign(String value) { this.RebateCodeCurrencySign = value; return this; }
public Boolean isActiveByStatus() { return ActiveByStatus; }
public RebateCodeResponse setActiveByStatus(Boolean value) { this.ActiveByStatus = value; return this; }
public String getPriceSign() { return PriceSign; }
public RebateCodeResponse setPriceSign(String value) { this.PriceSign = value; return this; }
public String getRebateCodeTypeName() { return RebateCodeTypeName; }
public RebateCodeResponse setRebateCodeTypeName(String value) { this.RebateCodeTypeName = value; return this; }
}
public static class DaysOfWeekResponse
{
public Integer Id = null;
public String DayOfWeek = null;
public String DayOfWeekTranslation = null;
public Boolean DayOfWeekActive = null;
public Short DayOfWeekSortOrder = null;
public Integer getId() { return Id; }
public DaysOfWeekResponse setId(Integer value) { this.Id = value; return this; }
public String getDayOfWeek() { return DayOfWeek; }
public DaysOfWeekResponse setDayOfWeek(String value) { this.DayOfWeek = value; return this; }
public String getDayOfWeekTranslation() { return DayOfWeekTranslation; }
public DaysOfWeekResponse setDayOfWeekTranslation(String value) { this.DayOfWeekTranslation = value; return this; }
public Boolean isDayOfWeekActive() { return DayOfWeekActive; }
public DaysOfWeekResponse setDayOfWeekActive(Boolean value) { this.DayOfWeekActive = value; return this; }
public Short getDayOfWeekSortOrder() { return DayOfWeekSortOrder; }
public DaysOfWeekResponse setDayOfWeekSortOrder(Short value) { this.DayOfWeekSortOrder = value; return this; }
}
public static class RebateCodeServiceResponse
{
public Integer Id = null;
public String Name = null;
public String Description = null;
public Boolean Active = null;
public Integer getId() { return Id; }
public RebateCodeServiceResponse setId(Integer value) { this.Id = value; return this; }
public String getName() { return Name; }
public RebateCodeServiceResponse setName(String value) { this.Name = value; return this; }
public String getDescription() { return Description; }
public RebateCodeServiceResponse setDescription(String value) { this.Description = value; return this; }
public Boolean isActive() { return Active; }
public RebateCodeServiceResponse setActive(Boolean value) { this.Active = value; return this; }
}
public static class ArticleResponse
{
public UUID CompanyId = null;
public Integer Id = null;
public String Name = null;
public Integer ArticleTypeId = null;
public String Description = null;
public String ImageUrl = null;
public Boolean Active = null;
public Integer Amount = null;
public Double Price = null;
public String CurrencyId = null;
public Date UpdatedDate = null;
public Date CreatedDate = null;
public ArrayList<ArticleServiceRelation> Services = null;
public ArrayList<Integer> ServiceIds = null;
public String PriceSign = null;
public UUID getCompanyId() { return CompanyId; }
public ArticleResponse setCompanyId(UUID value) { this.CompanyId = value; return this; }
public Integer getId() { return Id; }
public ArticleResponse setId(Integer value) { this.Id = value; return this; }
public String getName() { return Name; }
public ArticleResponse setName(String value) { this.Name = value; return this; }
public Integer getArticleTypeId() { return ArticleTypeId; }
public ArticleResponse setArticleTypeId(Integer value) { this.ArticleTypeId = value; return this; }
public String getDescription() { return Description; }
public ArticleResponse setDescription(String value) { this.Description = value; return this; }
public String getImageUrl() { return ImageUrl; }
public ArticleResponse setImageUrl(String value) { this.ImageUrl = value; return this; }
public Boolean isActive() { return Active; }
public ArticleResponse setActive(Boolean value) { this.Active = value; return this; }
public Integer getAmount() { return Amount; }
public ArticleResponse setAmount(Integer value) { this.Amount = value; return this; }
public Double getPrice() { return Price; }
public ArticleResponse setPrice(Double value) { this.Price = value; return this; }
public String getCurrencyId() { return CurrencyId; }
public ArticleResponse setCurrencyId(String value) { this.CurrencyId = value; return this; }
public Date getUpdatedDate() { return UpdatedDate; }
public ArticleResponse setUpdatedDate(Date value) { this.UpdatedDate = value; return this; }
public Date getCreatedDate() { return CreatedDate; }
public ArticleResponse setCreatedDate(Date value) { this.CreatedDate = value; return this; }
public ArrayList<ArticleServiceRelation> getServices() { return Services; }
public ArticleResponse setServices(ArrayList<ArticleServiceRelation> value) { this.Services = value; return this; }
public ArrayList<Integer> getServiceIds() { return ServiceIds; }
public ArticleResponse setServiceIds(ArrayList<Integer> value) { this.ServiceIds = value; return this; }
public String getPriceSign() { return PriceSign; }
public ArticleResponse setPriceSign(String value) { this.PriceSign = value; return this; }
}
public static class ArticleServiceRelation extends BaseModel
{
@Required()
public UUID CompanyId = null;
public Integer Id = null;
@Required()
public Integer ServiceId = null;
@Required()
public Integer ArticleId = null;
public UUID getCompanyId() { return CompanyId; }
public ArticleServiceRelation setCompanyId(UUID value) { this.CompanyId = value; return this; }
public Integer getId() { return Id; }
public ArticleServiceRelation setId(Integer value) { this.Id = value; return this; }
public Integer getServiceId() { return ServiceId; }
public ArticleServiceRelation setServiceId(Integer value) { this.ServiceId = value; return this; }
public Integer getArticleId() { return ArticleId; }
public ArticleServiceRelation setArticleId(Integer value) { this.ArticleId = value; return this; }
}
public static class BaseModel
{
}
public static class RebateCodeTransactionQueryResponse
{
public Integer Id = null;
public UUID CompanyId = null;
public String Note = null;
public Integer RebateCodeId = null;
public String RebateCodeSign = null;
public Integer RebateCodeTypeId = null;
public String RebateCodeTypeName = null;
public Double Amount = null;
public Integer BookingId = null;
public Date UpdatedDate = null;
public Date CreatedDate = null;
public RebateCodeServiceResponse Service = null;
public RebateCodeCustomerResponse Customer = null;
public String PriceSign = null;
public Integer getId() { return Id; }
public RebateCodeTransactionQueryResponse setId(Integer value) { this.Id = value; return this; }
public UUID getCompanyId() { return CompanyId; }
public RebateCodeTransactionQueryResponse setCompanyId(UUID value) { this.CompanyId = value; return this; }
public String getNote() { return Note; }
public RebateCodeTransactionQueryResponse setNote(String value) { this.Note = value; return this; }
public Integer getRebateCodeId() { return RebateCodeId; }
public RebateCodeTransactionQueryResponse setRebateCodeId(Integer value) { this.RebateCodeId = value; return this; }
public String getRebateCodeSign() { return RebateCodeSign; }
public RebateCodeTransactionQueryResponse setRebateCodeSign(String value) { this.RebateCodeSign = value; return this; }
public Integer getRebateCodeTypeId() { return RebateCodeTypeId; }
public RebateCodeTransactionQueryResponse setRebateCodeTypeId(Integer value) { this.RebateCodeTypeId = value; return this; }
public String getRebateCodeTypeName() { return RebateCodeTypeName; }
public RebateCodeTransactionQueryResponse setRebateCodeTypeName(String value) { this.RebateCodeTypeName = value; return this; }
public Double getAmount() { return Amount; }
public RebateCodeTransactionQueryResponse setAmount(Double value) { this.Amount = value; return this; }
public Integer getBookingId() { return BookingId; }
public RebateCodeTransactionQueryResponse setBookingId(Integer value) { this.BookingId = value; return this; }
public Date getUpdatedDate() { return UpdatedDate; }
public RebateCodeTransactionQueryResponse setUpdatedDate(Date value) { this.UpdatedDate = value; return this; }
public Date getCreatedDate() { return CreatedDate; }
public RebateCodeTransactionQueryResponse setCreatedDate(Date value) { this.CreatedDate = value; return this; }
public RebateCodeServiceResponse getService() { return Service; }
public RebateCodeTransactionQueryResponse setService(RebateCodeServiceResponse value) { this.Service = value; return this; }
public RebateCodeCustomerResponse getCustomer() { return Customer; }
public RebateCodeTransactionQueryResponse setCustomer(RebateCodeCustomerResponse value) { this.Customer = value; return this; }
public String getPriceSign() { return PriceSign; }
public RebateCodeTransactionQueryResponse setPriceSign(String value) { this.PriceSign = value; return this; }
}
public static class RebateCodeCustomerResponse
{
public UUID Id = null;
public String Firstname = null;
public String Lastname = null;
public String Email = null;
public String Phone = null;
public String ImageUrl = null;
public UUID getId() { return Id; }
public RebateCodeCustomerResponse setId(UUID value) { this.Id = value; return this; }
public String getFirstname() { return Firstname; }
public RebateCodeCustomerResponse setFirstname(String value) { this.Firstname = value; return this; }
public String getLastname() { return Lastname; }
public RebateCodeCustomerResponse setLastname(String value) { this.Lastname = value; return this; }
public String getEmail() { return Email; }
public RebateCodeCustomerResponse setEmail(String value) { this.Email = value; return this; }
public String getPhone() { return Phone; }
public RebateCodeCustomerResponse setPhone(String value) { this.Phone = value; return this; }
public String getImageUrl() { return ImageUrl; }
public RebateCodeCustomerResponse setImageUrl(String value) { this.ImageUrl = value; return this; }
}
}
To override the Content-type in your clients, use the HTTP Accept Header, append the .xml suffix or ?format=xml
The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.
PUT /rebatecodes/{Id} HTTP/1.1
Host: api.bokamera.se
Accept: application/xml
Content-Type: application/xml
Content-Length: length
<UpdateRebateCode xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BokaMera.API.ServiceModel.Dtos">
<AutoGenerateRebateCodeSign>false</AutoGenerateRebateCodeSign>
<CompanyId>00000000-0000-0000-0000-000000000000</CompanyId>
<Customers xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d2p1:guid>00000000-0000-0000-0000-000000000000</d2p1:guid>
</Customers>
<DaysOfWeek xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d2p1:int>0</d2p1:int>
</DaysOfWeek>
<FromTime>PT0S</FromTime>
<Id>0</Id>
<MaxNumberOfUses>0</MaxNumberOfUses>
<MaxNumberOfUsesPerCustomer>0</MaxNumberOfUsesPerCustomer>
<PersonalNote>String</PersonalNote>
<RebateCodeSign>String</RebateCodeSign>
<RebateCodeTypeId>0</RebateCodeTypeId>
<RebateCodeValue>0</RebateCodeValue>
<Services xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d2p1:int>0</d2p1:int>
</Services>
<ToTime>PT0S</ToTime>
<ValidFrom>0001-01-01T00:00:00</ValidFrom>
<ValidTo>0001-01-01T00:00:00</ValidTo>
</UpdateRebateCode>
HTTP/1.1 200 OK Content-Type: application/xml Content-Length: length <RebateCodeResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BokaMera.API.ServiceModel.Dtos"> <ActiveByStatus>false</ActiveByStatus> <Article> <Active>false</Active> <Amount>0</Amount> <ArticleTypeId>0</ArticleTypeId> <CompanyId>00000000-0000-0000-0000-000000000000</CompanyId> <CreatedDate>0001-01-01T00:00:00</CreatedDate> <CurrencyId>String</CurrencyId> <Description>String</Description> <Id>0</Id> <ImageUrl>String</ImageUrl> <Name>String</Name> <Price>0</Price> <PriceSign>String</PriceSign> <ServiceIds xmlns:d3p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays"> <d3p1:int>0</d3p1:int> </ServiceIds> <Services xmlns:d3p1="http://schemas.datacontract.org/2004/07/BokaMera.API.ServiceModel.Db"> <d3p1:ArticleServiceRelation> <d3p1:ArticleId>0</d3p1:ArticleId> <d3p1:CompanyId>00000000-0000-0000-0000-000000000000</d3p1:CompanyId> <d3p1:Id>0</d3p1:Id> <d3p1:ServiceId>0</d3p1:ServiceId> </d3p1:ArticleServiceRelation> </Services> <UpdatedDate>0001-01-01T00:00:00</UpdatedDate> </Article> <CompanyId>00000000-0000-0000-0000-000000000000</CompanyId> <Created>0001-01-01T00:00:00</Created> <CreatedBy>String</CreatedBy> <Customers> <RebateCodeCustomerResponse> <Email>String</Email> <Firstname>String</Firstname> <Id>00000000-0000-0000-0000-000000000000</Id> <ImageUrl>String</ImageUrl> <Lastname>String</Lastname> <Phone>String</Phone> </RebateCodeCustomerResponse> </Customers> <DaysOfWeek> <DaysOfWeekResponse> <DayOfWeek>String</DayOfWeek> <DayOfWeekActive>false</DayOfWeekActive> <DayOfWeekSortOrder>0</DayOfWeekSortOrder> <DayOfWeekTranslation>String</DayOfWeekTranslation> <Id>0</Id> </DaysOfWeekResponse> </DaysOfWeek> <FromTime>PT0S</FromTime> <Id>0</Id> <MaxNumberOfUses>0</MaxNumberOfUses> <MaxNumberOfUsesPerCustomer>0</MaxNumberOfUsesPerCustomer> <Name>String</Name> <NumberOfUsesUsed>0</NumberOfUsesUsed> <PaymentReceived>false</PaymentReceived> <PersonalNote>String</PersonalNote> <PriceSign>String</PriceSign> <RebateCodeCurrencySign>String</RebateCodeCurrencySign> <RebateCodeSign>String</RebateCodeSign> <RebateCodeStatusId>0</RebateCodeStatusId> <RebateCodeTypeId>0</RebateCodeTypeId> <RebateCodeTypeName>String</RebateCodeTypeName> <RebateCodeValue>0</RebateCodeValue> <RemainingAmount>0</RemainingAmount> <RemainingUsage>0</RemainingUsage> <ResponseStatus xmlns:d2p1="http://schemas.servicestack.net/types"> <d2p1:ErrorCode>String</d2p1:ErrorCode> <d2p1:Message>String</d2p1:Message> <d2p1:StackTrace>String</d2p1:StackTrace> <d2p1:Errors> <d2p1:ResponseError> <d2p1:ErrorCode>String</d2p1:ErrorCode> <d2p1:FieldName>String</d2p1:FieldName> <d2p1:Message>String</d2p1:Message> <d2p1:Meta xmlns:d5p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays"> <d5p1:KeyValueOfstringstring> <d5p1:Key>String</d5p1:Key> <d5p1:Value>String</d5p1:Value> </d5p1:KeyValueOfstringstring> </d2p1:Meta> </d2p1:ResponseError> </d2p1:Errors> <d2p1:Meta xmlns:d3p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays"> <d3p1:KeyValueOfstringstring> <d3p1:Key>String</d3p1:Key> <d3p1:Value>String</d3p1:Value> </d3p1:KeyValueOfstringstring> </d2p1:Meta> </ResponseStatus> <Services> <RebateCodeServiceResponse> <Active>false</Active> <Description>String</Description> <Id>0</Id> <Name>String</Name> </RebateCodeServiceResponse> </Services> <StatusName>String</StatusName> <ToTime>PT0S</ToTime> <Transactions> <RebateCodeTransactionQueryResponse> <Amount>0</Amount> <BookingId>0</BookingId> <CompanyId>00000000-0000-0000-0000-000000000000</CompanyId> <CreatedDate>0001-01-01T00:00:00</CreatedDate> <Customer> <Email>String</Email> <Firstname>String</Firstname> <Id>00000000-0000-0000-0000-000000000000</Id> <ImageUrl>String</ImageUrl> <Lastname>String</Lastname> <Phone>String</Phone> </Customer> <Id>0</Id> <Note>String</Note> <PriceSign>String</PriceSign> <RebateCodeId>0</RebateCodeId> <RebateCodeSign>String</RebateCodeSign> <RebateCodeTypeId>0</RebateCodeTypeId> <RebateCodeTypeName>String</RebateCodeTypeName> <Service> <Active>false</Active> <Description>String</Description> <Id>0</Id> <Name>String</Name> </Service> <UpdatedDate>0001-01-01T00:00:00</UpdatedDate> </RebateCodeTransactionQueryResponse> </Transactions> <Updated>0001-01-01T00:00:00</Updated> <UpdatedBy>String</UpdatedBy> <ValidFrom>0001-01-01T00:00:00</ValidFrom> <ValidTo>0001-01-01T00:00:00</ValidTo> </RebateCodeResponse>