| Requires any of the roles: | Worker, Agent, Administrator |
| GET,POST,PUT,DELETE,OPTIONS | /v1/AgentHistory |
|---|
import 'package:servicestack/servicestack.dart';
import 'dart:typed_data';
class AgentHistory implements IConvertible
{
int? AgentHistoryId;
int? SubAgentId;
int? EventId;
int? AgentId;
DateTime? EventDate;
DateTime? DateCreated;
String? Note;
AgentHistory({this.AgentHistoryId,this.SubAgentId,this.EventId,this.AgentId,this.EventDate,this.DateCreated,this.Note});
AgentHistory.fromJson(Map<String, dynamic> json) { fromMap(json); }
fromMap(Map<String, dynamic> json) {
AgentHistoryId = json['AgentHistoryId'];
SubAgentId = json['SubAgentId'];
EventId = json['EventId'];
AgentId = json['AgentId'];
EventDate = JsonConverters.fromJson(json['EventDate'],'DateTime',context!);
DateCreated = JsonConverters.fromJson(json['DateCreated'],'DateTime',context!);
Note = json['Note'];
return this;
}
Map<String, dynamic> toJson() => {
'AgentHistoryId': AgentHistoryId,
'SubAgentId': SubAgentId,
'EventId': EventId,
'AgentId': AgentId,
'EventDate': JsonConverters.toJson(EventDate,'DateTime',context!),
'DateCreated': JsonConverters.toJson(DateCreated,'DateTime',context!),
'Note': Note
};
getTypeName() => "AgentHistory";
TypeContext? context = _ctx;
}
class AgentHistoryResponse implements IConvertible
{
ResponseStatus? ResponseStatus;
List<AgentHistory>? AgentHistory = [];
AgentHistoryResponse({this.ResponseStatus,this.AgentHistory});
AgentHistoryResponse.fromJson(Map<String, dynamic> json) { fromMap(json); }
fromMap(Map<String, dynamic> json) {
ResponseStatus = JsonConverters.fromJson(json['ResponseStatus'],'ResponseStatus',context!);
AgentHistory = JsonConverters.fromJson(json['AgentHistory'],'List<AgentHistory>',context!);
return this;
}
Map<String, dynamic> toJson() => {
'ResponseStatus': JsonConverters.toJson(ResponseStatus,'ResponseStatus',context!),
'AgentHistory': JsonConverters.toJson(AgentHistory,'List<AgentHistory>',context!)
};
getTypeName() => "AgentHistoryResponse";
TypeContext? context = _ctx;
}
class AgentHistoryRequest implements IConvertible
{
List<AgentHistory>? AgentHistory = [];
AgentHistoryRequest({this.AgentHistory});
AgentHistoryRequest.fromJson(Map<String, dynamic> json) { fromMap(json); }
fromMap(Map<String, dynamic> json) {
AgentHistory = JsonConverters.fromJson(json['AgentHistory'],'List<AgentHistory>',context!);
return this;
}
Map<String, dynamic> toJson() => {
'AgentHistory': JsonConverters.toJson(AgentHistory,'List<AgentHistory>',context!)
};
getTypeName() => "AgentHistoryRequest";
TypeContext? context = _ctx;
}
TypeContext _ctx = TypeContext(library: 'api.dev.dynamics.trendsic.com', types: <String, TypeInfo> {
'AgentHistory': TypeInfo(TypeOf.Class, create:() => AgentHistory()),
'AgentHistoryResponse': TypeInfo(TypeOf.Class, create:() => AgentHistoryResponse()),
'List<AgentHistory>': TypeInfo(TypeOf.Class, create:() => <AgentHistory>[]),
'AgentHistoryRequest': TypeInfo(TypeOf.Class, create:() => AgentHistoryRequest()),
});
To override the Content-type in your clients, use the HTTP Accept Header, append the .json suffix or ?format=json
To embed the response in a jsonp callback, append ?callback=myCallback
The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.
POST /v1/AgentHistory HTTP/1.1
Host: api.dev.dynamics.trendsic.com
Accept: application/json
Content-Type: application/json
Content-Length: length
{"AgentHistory":[{"AgentHistoryId":0,"SubAgentId":0,"EventId":0,"AgentId":0,"EventDate":"0001-01-01T00:00:00.0000000","DateCreated":"0001-01-01T00:00:00.0000000","Note":"String"}]}
HTTP/1.1 200 OK
Content-Type: application/json
Content-Length: length
{"ResponseStatus":{"ErrorCode":"String","Message":"String","StackTrace":"String","Errors":[{"ErrorCode":"String","FieldName":"String","Message":"String","Meta":{"String":"String"}}],"Meta":{"String":"String"}},"AgentHistory":[{"AgentHistoryId":0,"SubAgentId":0,"EventId":0,"AgentId":0,"EventDate":"0001-01-01T00:00:00.0000000","DateCreated":"0001-01-01T00:00:00.0000000","Note":"String"}]}