Six4Win.WebApi

<back to all web services

FindStimulations

The following routes are available for this service:
All Verbs/qry/stimulations
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 FindStimulations extends PaginatedQueryRequest implements IConvertible
{
    FindStimulations();
    FindStimulations.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() => "FindStimulations";
    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()),
    'FindStimulations': TypeInfo(TypeOf.Class, create:() => FindStimulations()),
    'Bet': TypeInfo(TypeOf.Class, create:() => Bet()),
    'PaginatedResult<T>': TypeInfo(TypeOf.Class, create:() => PaginatedResult<T>()),
    'List<Bet>': TypeInfo(TypeOf.Class, create:() => <Bet>[]),
});

Dart FindStimulations DTOs

To override the Content-type in your clients, use the HTTP Accept Header, append the .xml suffix or ?format=xml

HTTP + XML

The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.

POST /qry/stimulations HTTP/1.1 
Host: s4w2.api.bettor.cc 
Accept: application/xml
Content-Type: application/xml
Content-Length: length

<FindStimulations 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>
</FindStimulations>
HTTP/1.1 200 OK
Content-Type: application/xml
Content-Length: length

<PaginatedResultOfStimulationcdb8QqRi 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:Stimulation>
      <d2p1:CancellationInfo>
        <d2p1:CanceledAt>0001-01-01T00:00:00</d2p1:CanceledAt>
        <d2p1:CanceledBy>String</d2p1:CanceledBy>
      </d2p1:CancellationInfo>
      <d2p1:ConfirmationInfo>
        <d2p1:AmountAwarded>0</d2p1:AmountAwarded>
        <d2p1:BetId>String</d2p1:BetId>
        <d2p1:ConfirmedAt>0001-01-01T00:00:00</d2p1:ConfirmedAt>
        <d2p1:SlipId>String</d2p1:SlipId>
      </d2p1:ConfirmationInfo>
      <d2p1:FailInfo>
        <d2p1:FailureCount>0</d2p1:FailureCount>
        <d2p1:Failures 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:Failures>
        <d2p1:LastFailAt>0001-01-01T00:00:00</d2p1:LastFailAt>
      </d2p1:FailInfo>
      <d2p1:Id>String</d2p1:Id>
      <d2p1:Pool>
        <d2p1:Id>0</d2p1:Id>
        <d2p1:Name>String</d2p1:Name>
      </d2p1:Pool>
      <d2p1:ScheduledAt>0001-01-01T00:00:00</d2p1:ScheduledAt>
      <d2p1:ScheduledBy>String</d2p1:ScheduledBy>
      <d2p1:Status>Pending</d2p1:Status>
      <d2p1:Target>
        <Id>String</Id>
        <Val>String</Val>
      </d2p1:Target>
    </d2p1:Stimulation>
  </Data>
  <PageSize>0</PageSize>
  <TotalItems>0</TotalItems>
  <TotalPages>0</TotalPages>
</PaginatedResultOfStimulationcdb8QqRi>