| All Verbs | /qry/locations/byRound |
|---|
import 'package:servicestack/servicestack.dart';
class QueryRequest implements IConvertible
{
Map<String,String?>? qry = {};
QueryRequest({this.qry});
QueryRequest.fromJson(Map<String, dynamic> json) { fromMap(json); }
fromMap(Map<String, dynamic> json) {
qry = JsonConverters.toStringMap(json['qry']);
return this;
}
Map<String, dynamic> toJson() => {
'qry': qry
};
getTypeName() => "QueryRequest";
TypeContext? context = _ctx;
}
class PaginatedQueryRequest extends QueryRequest implements IConvertible
{
int? currentPage;
int? pageSize;
PaginatedQueryRequest({this.currentPage,this.pageSize});
PaginatedQueryRequest.fromJson(Map<String, dynamic> json) { fromMap(json); }
fromMap(Map<String, dynamic> json) {
super.fromMap(json);
currentPage = json['currentPage'];
pageSize = json['pageSize'];
return this;
}
Map<String, dynamic> toJson() => super.toJson()..addAll({
'currentPage': currentPage,
'pageSize': pageSize
});
getTypeName() => "PaginatedQueryRequest";
TypeContext? context = _ctx;
}
class FindLocationRoundStats extends PaginatedQueryRequest implements IConvertible
{
FindLocationRoundStats();
FindLocationRoundStats.fromJson(Map<String, dynamic> json) : super.fromJson(json);
fromMap(Map<String, dynamic> json) {
super.fromMap(json);
return this;
}
Map<String, dynamic> toJson() => super.toJson();
getTypeName() => "FindLocationRoundStats";
TypeContext? context = _ctx;
}
class Bet implements IConvertible
{
String? id;
int? ordinalOfAvailableRoundToAssignTo;
String? content;
double? stake;
Map<String,String?>? payload;
Bet({this.id,this.ordinalOfAvailableRoundToAssignTo,this.content,this.stake,this.payload});
Bet.fromJson(Map<String, dynamic> json) { fromMap(json); }
fromMap(Map<String, dynamic> json) {
id = json['id'];
ordinalOfAvailableRoundToAssignTo = json['ordinalOfAvailableRoundToAssignTo'];
content = json['content'];
stake = JsonConverters.toDouble(json['stake']);
payload = JsonConverters.toStringMap(json['payload']);
return this;
}
Map<String, dynamic> toJson() => {
'id': id,
'ordinalOfAvailableRoundToAssignTo': ordinalOfAvailableRoundToAssignTo,
'content': content,
'stake': stake,
'payload': payload
};
getTypeName() => "Bet";
TypeContext? context = _ctx;
}
class PaginatedResult<T> implements IPaginatedResult, IConvertible
{
List<Bet>? data = [];
int? currentPage;
int? pageSize;
int? totalItems;
int? totalPages;
PaginatedResult({this.data,this.currentPage,this.pageSize,this.totalItems,this.totalPages});
PaginatedResult.fromJson(Map<String, dynamic> json) { fromMap(json); }
fromMap(Map<String, dynamic> json) {
data = JsonConverters.fromJson(json['data'],'List<Bet>',context!);
currentPage = json['currentPage'];
pageSize = json['pageSize'];
totalItems = json['totalItems'];
totalPages = json['totalPages'];
return this;
}
Map<String, dynamic> toJson() => {
'data': JsonConverters.toJson(data,'List<Bet>',context!),
'currentPage': currentPage,
'pageSize': pageSize,
'totalItems': totalItems,
'totalPages': totalPages
};
getTypeName() => "PaginatedResult<$T>";
TypeContext? context = _ctx;
}
TypeContext _ctx = TypeContext(library: 's4w2.api.bettor.cc', types: <String, TypeInfo> {
'QueryRequest': TypeInfo(TypeOf.Class, create:() => QueryRequest()),
'PaginatedQueryRequest': TypeInfo(TypeOf.Class, create:() => PaginatedQueryRequest()),
'FindLocationRoundStats': TypeInfo(TypeOf.Class, create:() => FindLocationRoundStats()),
'Bet': TypeInfo(TypeOf.Class, create:() => Bet()),
'PaginatedResult<T>': TypeInfo(TypeOf.Class, create:() => PaginatedResult<T>()),
'List<Bet>': TypeInfo(TypeOf.Class, create:() => <Bet>[]),
});
Dart FindLocationRoundStats 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 /qry/locations/byRound HTTP/1.1
Host: s4w2.api.bettor.cc
Accept: application/xml
Content-Type: application/xml
Content-Length: length
<FindLocationRoundStats xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Six4Win.WebApi.ServiceModel">
<Qry xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays" xmlns="http://schemas.datacontract.org/2004/07/Starnet.Common">
<d2p1:KeyValueOfstringstring>
<d2p1:Key>String</d2p1:Key>
<d2p1:Value>String</d2p1:Value>
</d2p1:KeyValueOfstringstring>
</Qry>
<CurrentPage xmlns="http://schemas.datacontract.org/2004/07/Starnet.Common">0</CurrentPage>
<PageSize xmlns="http://schemas.datacontract.org/2004/07/Starnet.Common">0</PageSize>
</FindLocationRoundStats>
HTTP/1.1 200 OK
Content-Type: application/xml
Content-Length: length
<PaginatedResultOfLocationRoundStatscdb8QqRi xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Starnet.Common">
<CurrentPage>0</CurrentPage>
<Data xmlns:d2p1="http://schemas.datacontract.org/2004/07/Six4Win.ReadModel">
<d2p1:LocationRoundStats>
<d2p1:BetAmount>0</d2p1:BetAmount>
<d2p1:BetCount>0</d2p1:BetCount>
<d2p1:DailyRTP>0</d2p1:DailyRTP>
<d2p1:Location>String</d2p1:Location>
<d2p1:LocationId>String</d2p1:LocationId>
<d2p1:Pct>0</d2p1:Pct>
<d2p1:RoundId>String</d2p1:RoundId>
</d2p1:LocationRoundStats>
</Data>
<PageSize>0</PageSize>
<TotalItems>0</TotalItems>
<TotalPages>0</TotalPages>
</PaginatedResultOfLocationRoundStatscdb8QqRi>