| Requires any of the roles: | Agent, Administrator |
| GET,OPTIONS | /v1/SecuritiesSummary/DateRange/{ParamStartDate}/{ParamEndDate}/{AgentID} | ||
|---|---|---|---|
| GET,OPTIONS | /v1/SecuritiesSummary/DateRange/{ParamStartDate}/{ParamEndDate} |
import 'package:servicestack/servicestack.dart';
import 'dart:typed_data';
class ListingSummary implements IConvertible
{
double? AgentLevel;
String? AgentPoints;
String? AgentPolicyNumbers;
double? AgentYTDTotal;
double? AgentRTotal;
double? AgentOverallTotal;
double? AgentNextLevelPrerequired;
double? AgentCurrentYTDTotal;
double? AgentCurrentRunningTotal;
double? AgentLevelCalculatedFromListingPart;
double? AgentRequiredBeforeNextLevel;
double? AgentAdjustmentTotal;
double? AgentCommissionSubtotal;
double? AgentBalanceForward;
ListingSummary({this.AgentLevel,this.AgentPoints,this.AgentPolicyNumbers,this.AgentYTDTotal,this.AgentRTotal,this.AgentOverallTotal,this.AgentNextLevelPrerequired,this.AgentCurrentYTDTotal,this.AgentCurrentRunningTotal,this.AgentLevelCalculatedFromListingPart,this.AgentRequiredBeforeNextLevel,this.AgentAdjustmentTotal,this.AgentCommissionSubtotal,this.AgentBalanceForward});
ListingSummary.fromJson(Map<String, dynamic> json) { fromMap(json); }
fromMap(Map<String, dynamic> json) {
AgentLevel = JsonConverters.toDouble(json['AgentLevel']);
AgentPoints = json['AgentPoints'];
AgentPolicyNumbers = json['AgentPolicyNumbers'];
AgentYTDTotal = JsonConverters.toDouble(json['AgentYTDTotal']);
AgentRTotal = JsonConverters.toDouble(json['AgentRTotal']);
AgentOverallTotal = JsonConverters.toDouble(json['AgentOverallTotal']);
AgentNextLevelPrerequired = JsonConverters.toDouble(json['AgentNextLevelPrerequired']);
AgentCurrentYTDTotal = JsonConverters.toDouble(json['AgentCurrentYTDTotal']);
AgentCurrentRunningTotal = JsonConverters.toDouble(json['AgentCurrentRunningTotal']);
AgentLevelCalculatedFromListingPart = JsonConverters.toDouble(json['AgentLevelCalculatedFromListingPart']);
AgentRequiredBeforeNextLevel = JsonConverters.toDouble(json['AgentRequiredBeforeNextLevel']);
AgentAdjustmentTotal = JsonConverters.toDouble(json['AgentAdjustmentTotal']);
AgentCommissionSubtotal = JsonConverters.toDouble(json['AgentCommissionSubtotal']);
AgentBalanceForward = JsonConverters.toDouble(json['AgentBalanceForward']);
return this;
}
Map<String, dynamic> toJson() => {
'AgentLevel': AgentLevel,
'AgentPoints': AgentPoints,
'AgentPolicyNumbers': AgentPolicyNumbers,
'AgentYTDTotal': AgentYTDTotal,
'AgentRTotal': AgentRTotal,
'AgentOverallTotal': AgentOverallTotal,
'AgentNextLevelPrerequired': AgentNextLevelPrerequired,
'AgentCurrentYTDTotal': AgentCurrentYTDTotal,
'AgentCurrentRunningTotal': AgentCurrentRunningTotal,
'AgentLevelCalculatedFromListingPart': AgentLevelCalculatedFromListingPart,
'AgentRequiredBeforeNextLevel': AgentRequiredBeforeNextLevel,
'AgentAdjustmentTotal': AgentAdjustmentTotal,
'AgentCommissionSubtotal': AgentCommissionSubtotal,
'AgentBalanceForward': AgentBalanceForward
};
getTypeName() => "ListingSummary";
TypeContext? context = _ctx;
}
class ListingSummaryResponse implements IConvertible
{
ResponseStatus? ResponseStatus;
List<ListingSummary>? ListingSummary = [];
ListingSummaryResponse({this.ResponseStatus,this.ListingSummary});
ListingSummaryResponse.fromJson(Map<String, dynamic> json) { fromMap(json); }
fromMap(Map<String, dynamic> json) {
ResponseStatus = JsonConverters.fromJson(json['ResponseStatus'],'ResponseStatus',context!);
ListingSummary = JsonConverters.fromJson(json['ListingSummary'],'List<ListingSummary>',context!);
return this;
}
Map<String, dynamic> toJson() => {
'ResponseStatus': JsonConverters.toJson(ResponseStatus,'ResponseStatus',context!),
'ListingSummary': JsonConverters.toJson(ListingSummary,'List<ListingSummary>',context!)
};
getTypeName() => "ListingSummaryResponse";
TypeContext? context = _ctx;
}
class SecuritiesListingSummaryRequest implements IConvertible
{
List<ListingSummary>? ListingSummary = [];
int? AgentID;
DateTime? ParamStartDate;
DateTime? ParamEndDate;
SecuritiesListingSummaryRequest({this.ListingSummary,this.AgentID,this.ParamStartDate,this.ParamEndDate});
SecuritiesListingSummaryRequest.fromJson(Map<String, dynamic> json) { fromMap(json); }
fromMap(Map<String, dynamic> json) {
ListingSummary = JsonConverters.fromJson(json['ListingSummary'],'List<ListingSummary>',context!);
AgentID = json['AgentID'];
ParamStartDate = JsonConverters.fromJson(json['ParamStartDate'],'DateTime',context!);
ParamEndDate = JsonConverters.fromJson(json['ParamEndDate'],'DateTime',context!);
return this;
}
Map<String, dynamic> toJson() => {
'ListingSummary': JsonConverters.toJson(ListingSummary,'List<ListingSummary>',context!),
'AgentID': AgentID,
'ParamStartDate': JsonConverters.toJson(ParamStartDate,'DateTime',context!),
'ParamEndDate': JsonConverters.toJson(ParamEndDate,'DateTime',context!)
};
getTypeName() => "SecuritiesListingSummaryRequest";
TypeContext? context = _ctx;
}
TypeContext _ctx = TypeContext(library: 'api.dev.dynamics.trendsic.com', types: <String, TypeInfo> {
'ListingSummary': TypeInfo(TypeOf.Class, create:() => ListingSummary()),
'ListingSummaryResponse': TypeInfo(TypeOf.Class, create:() => ListingSummaryResponse()),
'List<ListingSummary>': TypeInfo(TypeOf.Class, create:() => <ListingSummary>[]),
'SecuritiesListingSummaryRequest': TypeInfo(TypeOf.Class, create:() => SecuritiesListingSummaryRequest()),
});
Dart SecuritiesListingSummaryRequest DTOs
To override the Content-type in your clients, use the HTTP Accept Header, append the .other suffix or ?format=other
The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.
GET /v1/SecuritiesSummary/DateRange/{ParamStartDate}/{ParamEndDate}/{AgentID} HTTP/1.1
Host: api.dev.dynamics.trendsic.com
Accept: text/jsonl
HTTP/1.1 200 OK
Content-Type: text/jsonl
Content-Length: length
{"ResponseStatus":{"ErrorCode":"String","Message":"String","StackTrace":"String","Errors":[{"ErrorCode":"String","FieldName":"String","Message":"String","Meta":{"String":"String"}}],"Meta":{"String":"String"}},"ListingSummary":[{"AgentLevel":0,"AgentPoints":"String","AgentPolicyNumbers":"String","AgentYTDTotal":0,"AgentRTotal":0,"AgentOverallTotal":0,"AgentNextLevelPrerequired":0,"AgentCurrentYTDTotal":0,"AgentCurrentRunningTotal":0,"AgentLevelCalculatedFromListingPart":0,"AgentRequiredBeforeNextLevel":0,"AgentAdjustmentTotal":0,"AgentCommissionSubtotal":0,"AgentBalanceForward":0}]}