Trendsic Platform Service

<back to all web services

AgentPromotionRequest

Requires Authentication
Requires any of the roles:Agent, Administrator
The following routes are available for this service:
GET,OPTIONS/v1/AgentPromotion/{StartDate}
GET,OPTIONS/v1/AgentPromotion/{StartDate}/{EndDate}
import 'package:servicestack/servicestack.dart';
import 'dart:typed_data';

class AgentPromotion implements IConvertible
{
    int? AgentPromotionId;
    int? AgentId;
    String? FirstName;
    String? LastName;
    String? FullName;
    double? PreviousLevel;
    String? PreviousRank;
    double? NewLevel;
    String? NewRank;
    double? CashFlow;
    int? AppCount;
    DateTime? DateCreated;

    AgentPromotion({this.AgentPromotionId,this.AgentId,this.FirstName,this.LastName,this.FullName,this.PreviousLevel,this.PreviousRank,this.NewLevel,this.NewRank,this.CashFlow,this.AppCount,this.DateCreated});
    AgentPromotion.fromJson(Map<String, dynamic> json) { fromMap(json); }

    fromMap(Map<String, dynamic> json) {
        AgentPromotionId = json['AgentPromotionId'];
        AgentId = json['AgentId'];
        FirstName = json['FirstName'];
        LastName = json['LastName'];
        FullName = json['FullName'];
        PreviousLevel = JsonConverters.toDouble(json['PreviousLevel']);
        PreviousRank = json['PreviousRank'];
        NewLevel = JsonConverters.toDouble(json['NewLevel']);
        NewRank = json['NewRank'];
        CashFlow = JsonConverters.toDouble(json['CashFlow']);
        AppCount = json['AppCount'];
        DateCreated = JsonConverters.fromJson(json['DateCreated'],'DateTime',context!);
        return this;
    }

    Map<String, dynamic> toJson() => {
        'AgentPromotionId': AgentPromotionId,
        'AgentId': AgentId,
        'FirstName': FirstName,
        'LastName': LastName,
        'FullName': FullName,
        'PreviousLevel': PreviousLevel,
        'PreviousRank': PreviousRank,
        'NewLevel': NewLevel,
        'NewRank': NewRank,
        'CashFlow': CashFlow,
        'AppCount': AppCount,
        'DateCreated': JsonConverters.toJson(DateCreated,'DateTime',context!)
    };

    getTypeName() => "AgentPromotion";
    TypeContext? context = _ctx;
}

class AgentPromotionResponse implements IConvertible
{
    ResponseStatus? ResponseStatus;
    List<AgentPromotion>? AgentPromotion = [];

    AgentPromotionResponse({this.ResponseStatus,this.AgentPromotion});
    AgentPromotionResponse.fromJson(Map<String, dynamic> json) { fromMap(json); }

    fromMap(Map<String, dynamic> json) {
        ResponseStatus = JsonConverters.fromJson(json['ResponseStatus'],'ResponseStatus',context!);
        AgentPromotion = JsonConverters.fromJson(json['AgentPromotion'],'List<AgentPromotion>',context!);
        return this;
    }

    Map<String, dynamic> toJson() => {
        'ResponseStatus': JsonConverters.toJson(ResponseStatus,'ResponseStatus',context!),
        'AgentPromotion': JsonConverters.toJson(AgentPromotion,'List<AgentPromotion>',context!)
    };

    getTypeName() => "AgentPromotionResponse";
    TypeContext? context = _ctx;
}

class AgentPromotionRequest implements IConvertible
{
    DateTime? StartDate;
    DateTime? EndDate;

    AgentPromotionRequest({this.StartDate,this.EndDate});
    AgentPromotionRequest.fromJson(Map<String, dynamic> json) { fromMap(json); }

    fromMap(Map<String, dynamic> json) {
        StartDate = JsonConverters.fromJson(json['StartDate'],'DateTime',context!);
        EndDate = JsonConverters.fromJson(json['EndDate'],'DateTime',context!);
        return this;
    }

    Map<String, dynamic> toJson() => {
        'StartDate': JsonConverters.toJson(StartDate,'DateTime',context!),
        'EndDate': JsonConverters.toJson(EndDate,'DateTime',context!)
    };

    getTypeName() => "AgentPromotionRequest";
    TypeContext? context = _ctx;
}

TypeContext _ctx = TypeContext(library: 'api.dev.dynamics.trendsic.com', types: <String, TypeInfo> {
    'AgentPromotion': TypeInfo(TypeOf.Class, create:() => AgentPromotion()),
    'AgentPromotionResponse': TypeInfo(TypeOf.Class, create:() => AgentPromotionResponse()),
    'List<AgentPromotion>': TypeInfo(TypeOf.Class, create:() => <AgentPromotion>[]),
    'AgentPromotionRequest': TypeInfo(TypeOf.Class, create:() => AgentPromotionRequest()),
});

Dart AgentPromotionRequest 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.

GET /v1/AgentPromotion/{StartDate} HTTP/1.1 
Host: api.dev.dynamics.trendsic.com 
Accept: text/jsv
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
		}
	},
	AgentPromotion: 
	[
		{
			AgentPromotionId: 0,
			AgentId: 0,
			FirstName: String,
			LastName: String,
			FullName: String String,
			PreviousLevel: 0,
			PreviousRank: String,
			NewLevel: 0,
			NewRank: String,
			CashFlow: 0,
			AppCount: 0,
			DateCreated: 0001-01-01
		}
	]
}