Trendsic Platform Service

<back to all web services

SecuritiesListingSummaryRequest

Requires Authentication
Requires any of the roles:Agent, Administrator
The following routes are available for this service:
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 .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.

GET /v1/SecuritiesSummary/DateRange/{ParamStartDate}/{ParamEndDate}/{AgentID} HTTP/1.1 
Host: api.dev.dynamics.trendsic.com 
Accept: application/xml
HTTP/1.1 200 OK
Content-Type: application/xml
Content-Length: length

<ListingSummaryResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/CRM.AgencyPlatform.API.Internal">
  <ListingSummary>
    <ListingSummary>
      <AgentAdjustmentTotal>0</AgentAdjustmentTotal>
      <AgentBalanceForward>0</AgentBalanceForward>
      <AgentCommissionSubtotal>0</AgentCommissionSubtotal>
      <AgentCurrentRunningTotal>0</AgentCurrentRunningTotal>
      <AgentCurrentYTDTotal>0</AgentCurrentYTDTotal>
      <AgentLevel>0</AgentLevel>
      <AgentLevelCalculatedFromListingPart>0</AgentLevelCalculatedFromListingPart>
      <AgentNextLevelPrerequired>0</AgentNextLevelPrerequired>
      <AgentOverallTotal>0</AgentOverallTotal>
      <AgentPoints>String</AgentPoints>
      <AgentPolicyNumbers>String</AgentPolicyNumbers>
      <AgentRTotal>0</AgentRTotal>
      <AgentRequiredBeforeNextLevel>0</AgentRequiredBeforeNextLevel>
      <AgentYTDTotal>0</AgentYTDTotal>
    </ListingSummary>
  </ListingSummary>
  <ResponseStatus xmlns:d2p1="http://schemas.servicestack.net/types">
    <d2p1:ErrorCode>String</d2p1:ErrorCode>
    <d2p1:Message>String</d2p1:Message>
    <d2p1:StackTrace>String</d2p1:StackTrace>
    <d2p1:Errors>
      <d2p1:ResponseError>
        <d2p1:ErrorCode>String</d2p1:ErrorCode>
        <d2p1:FieldName>String</d2p1:FieldName>
        <d2p1:Message>String</d2p1:Message>
        <d2p1:Meta 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:Meta>
      </d2p1:ResponseError>
    </d2p1:Errors>
    <d2p1:Meta xmlns:d3p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
      <d3p1:KeyValueOfstringstring>
        <d3p1:Key>String</d3p1:Key>
        <d3p1:Value>String</d3p1:Value>
      </d3p1:KeyValueOfstringstring>
    </d2p1:Meta>
  </ResponseStatus>
</ListingSummaryResponse>