Trendsic Platform Service

<back to all web services

ListingSummaryRequest

Requires Authentication
Requires any of the roles:Agent, Administrator
The following routes are available for this service:
GET,POST,PUT,DELETE,OPTIONS/v1/ListingSummary/{ID}
GET,POST,PUT,DELETE,OPTIONS/v1/ListingSummary
GET,POST,PUT,DELETE,OPTIONS/v1/ListingSummary/DateRange/{ParamStartDate}/{ParamEndDate}/{AgentID}
GET,POST,PUT,DELETE,OPTIONS/v1/ListingSummary/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 ListingSummaryRequest implements IConvertible
{
    List<ListingSummary>? ListingSummary = [];
    int? AgentID;
    DateTime? ParamStartDate;
    DateTime? ParamEndDate;

    ListingSummaryRequest({this.ListingSummary,this.AgentID,this.ParamStartDate,this.ParamEndDate});
    ListingSummaryRequest.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() => "ListingSummaryRequest";
    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>[]),
    'ListingSummaryRequest': TypeInfo(TypeOf.Class, create:() => ListingSummaryRequest()),
});

Dart ListingSummaryRequest 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 /v1/ListingSummary/{ID} HTTP/1.1 
Host: api.dev.dynamics.trendsic.com 
Accept: text/jsv
Content-Type: text/jsv
Content-Length: length

{
	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
		}
	],
	AgentID: 0,
	ParamStartDate: 0001-01-01,
	ParamEndDate: 0001-01-01
}
HTTP/1.1 200 OK
Content-Type: text/jsv
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
		}
	]
}