| POST | /bets/cancel |
|---|
import java.math.*;
import java.util.*;
import java.io.InputStream;
import net.servicestack.client.*;
public class dtos
{
public static class ReportBetCancellations
{
public RecordList<RollbackDto> betCancellations = null;
public RecordList<RollbackDto> getBetCancellations() { return betCancellations; }
public ReportBetCancellations setBetCancellations(RecordList<RollbackDto> value) { this.betCancellations = value; return this; }
}
public static class RecordList<T> extends ArrayList<T>
{
}
public static class RollbackDto extends TransactionDtoBase
{
public String rollback_transaction_id = null;
public String ticket_id = null;
public RollbackTransactionType rollback_transaction_type = null;
public String getRollbackTransactionId() { return rollback_transaction_id; }
public RollbackDto setRollbackTransactionId(String value) { this.rollback_transaction_id = value; return this; }
public String getTicketId() { return ticket_id; }
public RollbackDto setTicketId(String value) { this.ticket_id = value; return this; }
public RollbackTransactionType getRollbackTransactionType() { return rollback_transaction_type; }
public RollbackDto setRollbackTransactionType(RollbackTransactionType value) { this.rollback_transaction_type = value; return this; }
}
public static class TransactionDtoBase
{
public String transaction_id = null;
public Date transaction_time = null;
public BigDecimal transaction_amount = null;
public String game_name = null;
public String betting_place_id = null;
public String betting_terminal_id = null;
public String jmbg = null;
public String passport_number = null;
public BetSource source = null;
public String identification_document_country = null;
public String identification_document_type = null;
public String getTransactionId() { return transaction_id; }
public TransactionDtoBase setTransactionId(String value) { this.transaction_id = value; return this; }
public Date getTransactionTime() { return transaction_time; }
public TransactionDtoBase setTransactionTime(Date value) { this.transaction_time = value; return this; }
public BigDecimal getTransactionAmount() { return transaction_amount; }
public TransactionDtoBase setTransactionAmount(BigDecimal value) { this.transaction_amount = value; return this; }
public String getGameName() { return game_name; }
public TransactionDtoBase setGameName(String value) { this.game_name = value; return this; }
public String getBettingPlaceId() { return betting_place_id; }
public TransactionDtoBase setBettingPlaceId(String value) { this.betting_place_id = value; return this; }
public String getBettingTerminalId() { return betting_terminal_id; }
public TransactionDtoBase setBettingTerminalId(String value) { this.betting_terminal_id = value; return this; }
public String getJmbg() { return jmbg; }
public TransactionDtoBase setJmbg(String value) { this.jmbg = value; return this; }
public String getPassportNumber() { return passport_number; }
public TransactionDtoBase setPassportNumber(String value) { this.passport_number = value; return this; }
public BetSource getSource() { return source; }
public TransactionDtoBase setSource(BetSource value) { this.source = value; return this; }
public String getIdentificationDocumentCountry() { return identification_document_country; }
public TransactionDtoBase setIdentificationDocumentCountry(String value) { this.identification_document_country = value; return this; }
public String getIdentificationDocumentType() { return identification_document_type; }
public TransactionDtoBase setIdentificationDocumentType(String value) { this.identification_document_type = value; return this; }
}
public static enum BetSource
{
@SerializedName("0") Landbase(0),
@SerializedName("1") Web(1);
private final int value;
BetSource(final int intValue) { value = intValue; }
public int getValue() { return value; }
}
public static enum RollbackTransactionType
{
@SerializedName("0") Bet(0),
@SerializedName("1") Win(1),
@SerializedName("1") Jackpot(1);
private final int value;
RollbackTransactionType(final int intValue) { value = intValue; }
public int getValue() { return value; }
}
}
Java ReportBetCancellations DTOs
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.
POST /bets/cancel HTTP/1.1
Host: api.sbbet-prod-mnta.webhop.biz
Accept: application/xml
Content-Type: application/xml
Content-Length: length
<ReportBetCancellations xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Starnet.MontenegroTaxationAuthority.WebApi.ServiceModel">
<BetCancellations xmlns:d2p1="http://schemas.datacontract.org/2004/07/Starnet.MontenegroTaxationAuthority.Common">
<d2p1:RollbackDto>
<d2p1:betting_place_id>String</d2p1:betting_place_id>
<d2p1:betting_terminal_id>String</d2p1:betting_terminal_id>
<d2p1:game_name>String</d2p1:game_name>
<d2p1:identification_document_country>String</d2p1:identification_document_country>
<d2p1:identification_document_type>String</d2p1:identification_document_type>
<d2p1:jmbg>String</d2p1:jmbg>
<d2p1:passport_number>String</d2p1:passport_number>
<d2p1:source>Landbase</d2p1:source>
<d2p1:transaction_amount>0</d2p1:transaction_amount>
<d2p1:transaction_id>String</d2p1:transaction_id>
<d2p1:transaction_time>0001-01-01T00:00:00</d2p1:transaction_time>
<d2p1:rollback_transaction_id>String</d2p1:rollback_transaction_id>
<d2p1:rollback_transaction_type>Bet</d2p1:rollback_transaction_type>
<d2p1:ticket_id>String</d2p1:ticket_id>
</d2p1:RollbackDto>
</BetCancellations>
</ReportBetCancellations>
HTTP/1.1 200 OK
Content-Type: application/xml
Content-Length: length
<ResponseStatus xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.servicestack.net/types">
<ErrorCode>String</ErrorCode>
<Message>String</Message>
<StackTrace>String</StackTrace>
<Errors>
<ResponseError>
<ErrorCode>String</ErrorCode>
<FieldName>String</FieldName>
<Message>String</Message>
<Meta xmlns:d4p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d4p1:KeyValueOfstringstring>
<d4p1:Key>String</d4p1:Key>
<d4p1:Value>String</d4p1:Value>
</d4p1:KeyValueOfstringstring>
</Meta>
</ResponseError>
</Errors>
<Meta xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d2p1:KeyValueOfstringstring>
<d2p1:Key>String</d2p1:Key>
<d2p1:Value>String</d2p1:Value>
</d2p1:KeyValueOfstringstring>
</Meta>
</ResponseStatus>