| Requires any of the roles: | Agent, Administrator |
| GET,OPTIONS | /v1/Rfp |
|---|
import 'package:servicestack/servicestack.dart';
import 'dart:typed_data';
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;
int? ParentRfpDocumentID;
String? DocumentType;
bool? IsActive;
RfpDocument({this.RfpDocumentID,this.RfpDocumentUID,this.FileName,this.ContentType,this.ContentLength,this.S3Key,this.Status,this.ErrorMessage,this.CreatedBy,this.CreatedAt,this.UpdatedAt,this.ParentRfpDocumentID,this.DocumentType,this.IsActive});
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!);
ParentRfpDocumentID = json['ParentRfpDocumentID'];
DocumentType = json['DocumentType'];
IsActive = json['IsActive'];
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!),
'ParentRfpDocumentID': ParentRfpDocumentID,
'DocumentType': DocumentType,
'IsActive': IsActive
};
getTypeName() => "RfpDocument";
TypeContext? context = _ctx;
}
class RfpDocStageView implements IConvertible
{
int? RfpDocumentID;
String? Stage;
String? StageLabel;
int? StagePct;
int? ElapsedSeconds;
RfpDocStageView({this.RfpDocumentID,this.Stage,this.StageLabel,this.StagePct,this.ElapsedSeconds});
RfpDocStageView.fromJson(Map<String, dynamic> json) { fromMap(json); }
fromMap(Map<String, dynamic> json) {
RfpDocumentID = json['RfpDocumentID'];
Stage = json['Stage'];
StageLabel = json['StageLabel'];
StagePct = json['StagePct'];
ElapsedSeconds = json['ElapsedSeconds'];
return this;
}
Map<String, dynamic> toJson() => {
'RfpDocumentID': RfpDocumentID,
'Stage': Stage,
'StageLabel': StageLabel,
'StagePct': StagePct,
'ElapsedSeconds': ElapsedSeconds
};
getTypeName() => "RfpDocStageView";
TypeContext? context = _ctx;
}
class RfpListResponse implements IConvertible
{
ResponseStatus? ResponseStatus;
List<RfpDocument>? Documents = [];
List<RfpDocStageView>? Stages = [];
RfpListResponse({this.ResponseStatus,this.Documents,this.Stages});
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!);
Stages = JsonConverters.fromJson(json['Stages'],'List<RfpDocStageView>',context!);
return this;
}
Map<String, dynamic> toJson() => {
'ResponseStatus': JsonConverters.toJson(ResponseStatus,'ResponseStatus',context!),
'Documents': JsonConverters.toJson(Documents,'List<RfpDocument>',context!),
'Stages': JsonConverters.toJson(Stages,'List<RfpDocStageView>',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()),
'RfpDocStageView': TypeInfo(TypeOf.Class, create:() => RfpDocStageView()),
'RfpListResponse': TypeInfo(TypeOf.Class, create:() => RfpListResponse()),
'List<RfpDocument>': TypeInfo(TypeOf.Class, create:() => <RfpDocument>[]),
'List<RfpDocStageView>': TypeInfo(TypeOf.Class, create:() => <RfpDocStageView>[]),
'RfpListRequest': TypeInfo(TypeOf.Class, create:() => RfpListRequest()),
});
To override the Content-type in your clients, use the HTTP Accept Header, append the .other suffix or ?format=other
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/jsonl
HTTP/1.1 200 OK
Content-Type: text/jsonl
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-01T00:00:00.0000000","UpdatedAt":"0001-01-01T00:00:00.0000000","ParentRfpDocumentID":0,"DocumentType":"String","IsActive":false}],"Stages":[{"RfpDocumentID":0,"Stage":"String","StageLabel":"String","StagePct":0,"ElapsedSeconds":0}]}