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 .jsv suffix or ?format=jsv

HTTP + JSV

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: text/jsv
Content-Type: text/jsv
Content-Length: length

{
	currentPage: 0,
	pageSize: 0,
	qry: 
	{
		String: String
	}
}
HTTP/1.1 200 OK
Content-Type: text/jsv
Content-Length: length

{
	data: 
	[
		{
			id: String,
			scheduledAt: 0001-01-01,
			scheduledBy: String,
			target: 
			{
				id: String,
				val: String
			},
			pool: 
			{
				id: 0,
				name: String
			},
			cancellationInfo: 
			{
				canceledBy: String,
				canceledAt: 0001-01-01
			},
			confirmationInfo: 
			{
				confirmedAt: 0001-01-01,
				slipId: String,
				betId: String,
				amountAwarded: 0
			},
			status: 0,
			failInfo: 
			{
				failures: 
				{
					String: String
				},
				lastFailAt: 0001-01-01,
				failureCount: 0
			}
		}
	],
	currentPage: 0,
	pageSize: 0,
	totalItems: 0,
	totalPages: 0
}