| Requires any of the roles: | Agent, Administrator |
| GET,OPTIONS | /v1/Rfp |
|---|
import 'package:servicestack/servicestack.dart';
class RfpDocument implements IConvertible
{
int? RfpDocumentID;
String? RfpDocumentUID;
String? FileName;
String? ContentType;
int? ContentLength;
String? S3Key;
String? Status;
String? ErrorMessage;
String? CreatedBy;
DateTime? CreatedAt;
DateTime? UpdatedAt;
RfpDocument({this.RfpDocumentID,this.RfpDocumentUID,this.FileName,this.ContentType,this.ContentLength,this.S3Key,this.Status,this.ErrorMessage,this.CreatedBy,this.CreatedAt,this.UpdatedAt});
RfpDocument.fromJson(Map<String, dynamic> json) { fromMap(json); }
fromMap(Map<String, dynamic> json) {
RfpDocumentID = json['RfpDocumentID'];
RfpDocumentUID = json['RfpDocumentUID'];
FileName = json['FileName'];
ContentType = json['ContentType'];
ContentLength = json['ContentLength'];
S3Key = json['S3Key'];
Status = json['Status'];
ErrorMessage = json['ErrorMessage'];
CreatedBy = json['CreatedBy'];
CreatedAt = JsonConverters.fromJson(json['CreatedAt'],'DateTime',context!);
UpdatedAt = JsonConverters.fromJson(json['UpdatedAt'],'DateTime',context!);
return this;
}
Map<String, dynamic> toJson() => {
'RfpDocumentID': RfpDocumentID,
'RfpDocumentUID': RfpDocumentUID,
'FileName': FileName,
'ContentType': ContentType,
'ContentLength': ContentLength,
'S3Key': S3Key,
'Status': Status,
'ErrorMessage': ErrorMessage,
'CreatedBy': CreatedBy,
'CreatedAt': JsonConverters.toJson(CreatedAt,'DateTime',context!),
'UpdatedAt': JsonConverters.toJson(UpdatedAt,'DateTime',context!)
};
getTypeName() => "RfpDocument";
TypeContext? context = _ctx;
}
class RfpListResponse implements IConvertible
{
ResponseStatus? ResponseStatus;
List<RfpDocument>? Documents = [];
RfpListResponse({this.ResponseStatus,this.Documents});
RfpListResponse.fromJson(Map<String, dynamic> json) { fromMap(json); }
fromMap(Map<String, dynamic> json) {
ResponseStatus = JsonConverters.fromJson(json['ResponseStatus'],'ResponseStatus',context!);
Documents = JsonConverters.fromJson(json['Documents'],'List<RfpDocument>',context!);
return this;
}
Map<String, dynamic> toJson() => {
'ResponseStatus': JsonConverters.toJson(ResponseStatus,'ResponseStatus',context!),
'Documents': JsonConverters.toJson(Documents,'List<RfpDocument>',context!)
};
getTypeName() => "RfpListResponse";
TypeContext? context = _ctx;
}
class RfpListRequest implements IConvertible
{
RfpListRequest();
RfpListRequest.fromJson(Map<String, dynamic> json) : super();
fromMap(Map<String, dynamic> json) {
return this;
}
Map<String, dynamic> toJson() => {};
getTypeName() => "RfpListRequest";
TypeContext? context = _ctx;
}
TypeContext _ctx = TypeContext(library: 'api.dev.dynamics.trendsic.com', types: <String, TypeInfo> {
'RfpDocument': TypeInfo(TypeOf.Class, create:() => RfpDocument()),
'RfpListResponse': TypeInfo(TypeOf.Class, create:() => RfpListResponse()),
'List<RfpDocument>': TypeInfo(TypeOf.Class, create:() => <RfpDocument>[]),
'RfpListRequest': TypeInfo(TypeOf.Class, create:() => RfpListRequest()),
});
To override the Content-type in your clients, use the HTTP Accept Header, append the .jsv suffix or ?format=jsv
The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.
GET /v1/Rfp 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
}
},
Documents:
[
{
RfpDocumentID: 0,
RfpDocumentUID: 00000000000000000000000000000000,
FileName: String,
ContentType: String,
ContentLength: 0,
S3Key: String,
Status: String,
ErrorMessage: String,
CreatedBy: String,
CreatedAt: 0001-01-01,
UpdatedAt: 0001-01-01
}
]
}