Trendsic Platform Service

<back to all web services

RfpListRequest

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

Dart RfpListRequest DTOs

To override the Content-type in your clients, use the HTTP Accept Header, append the .other suffix or ?format=other

HTTP + 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"}]}