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