| All Verbs | /RemovePositionToFix |
|---|
import 'package:servicestack/servicestack.dart';
class RemovePositionToFix implements IConvertible
{
/**
* Led issue position key
*/
// @ApiMember(Description="Led issue position key", IsRequired=true)
String? PositionKey;
RemovePositionToFix({this.PositionKey});
RemovePositionToFix.fromJson(Map<String, dynamic> json) { fromMap(json); }
fromMap(Map<String, dynamic> json) {
PositionKey = json['PositionKey'];
return this;
}
Map<String, dynamic> toJson() => {
'PositionKey': PositionKey
};
getTypeName() => "RemovePositionToFix";
TypeContext? context = _ctx;
}
TypeContext _ctx = TypeContext(library: 'clouddemo.pickeos.com', types: <String, TypeInfo> {
'RemovePositionToFix': TypeInfo(TypeOf.Class, create:() => RemovePositionToFix()),
});
To override the Content-type in your clients, use the HTTP Accept Header, append the .json suffix or ?format=json
To embed the response in a jsonp callback, append ?callback=myCallback
The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.
POST /RemovePositionToFix HTTP/1.1
Host: clouddemo.pickeos.com
Accept: application/json
Content-Type: application/json
Content-Length: length
{"PositionKey":"String"}