| GET | /v1/BusinessCard/{CardId}/{UID} |
|---|
import 'package:servicestack/servicestack.dart';
import 'dart:typed_data';
class BusinessCardOrderedRequest implements IConvertible
{
int? CardId;
String? UID;
BusinessCardOrderedRequest({this.CardId,this.UID});
BusinessCardOrderedRequest.fromJson(Map<String, dynamic> json) { fromMap(json); }
fromMap(Map<String, dynamic> json) {
CardId = json['CardId'];
UID = json['UID'];
return this;
}
Map<String, dynamic> toJson() => {
'CardId': CardId,
'UID': UID
};
getTypeName() => "BusinessCardOrderedRequest";
TypeContext? context = _ctx;
}
TypeContext _ctx = TypeContext(library: 'api.dev.dynamics.trendsic.com', types: <String, TypeInfo> {
'BusinessCardOrderedRequest': TypeInfo(TypeOf.Class, create:() => BusinessCardOrderedRequest()),
});
Dart BusinessCardOrderedRequest DTOs
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/BusinessCard/{CardId}/{UID} HTTP/1.1
Host: api.dev.dynamics.trendsic.com
Accept: text/jsonl