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