| POST | /locations/open |
|---|
import 'package:servicestack/servicestack.dart';
class Reference implements IConvertible
{
String? id;
String? value;
Reference({this.id,this.value});
Reference.fromJson(Map<String, dynamic> json) { fromMap(json); }
fromMap(Map<String, dynamic> json) {
id = json['id'];
value = json['value'];
return this;
}
Map<String, dynamic> toJson() => {
'id': id,
'value': value
};
getTypeName() => "Reference";
TypeContext? context = _ctx;
}
class Address implements IConvertible
{
String? street;
Reference? city;
String? postalCode;
Address({this.street,this.city,this.postalCode});
Address.fromJson(Map<String, dynamic> json) { fromMap(json); }
fromMap(Map<String, dynamic> json) {
street = json['street'];
city = JsonConverters.fromJson(json['city'],'Reference',context!);
postalCode = json['postalCode'];
return this;
}
Map<String, dynamic> toJson() => {
'street': street,
'city': JsonConverters.toJson(city,'Reference',context!),
'postalCode': postalCode
};
getTypeName() => "Address";
TypeContext? context = _ctx;
}
class OpenLocation implements IConvertible
{
String? id;
String? name;
String? taxAuthorityId;
Address? address;
OpenLocation({this.id,this.name,this.taxAuthorityId,this.address});
OpenLocation.fromJson(Map<String, dynamic> json) { fromMap(json); }
fromMap(Map<String, dynamic> json) {
id = json['id'];
name = json['name'];
taxAuthorityId = json['taxAuthorityId'];
address = JsonConverters.fromJson(json['address'],'Address',context!);
return this;
}
Map<String, dynamic> toJson() => {
'id': id,
'name': name,
'taxAuthorityId': taxAuthorityId,
'address': JsonConverters.toJson(address,'Address',context!)
};
getTypeName() => "OpenLocation";
TypeContext? context = _ctx;
}
TypeContext _ctx = TypeContext(library: 'fbihtaapi.bettor.webhop.biz', types: <String, TypeInfo> {
'Reference': TypeInfo(TypeOf.Class, create:() => Reference()),
'Address': TypeInfo(TypeOf.Class, create:() => Address()),
'OpenLocation': TypeInfo(TypeOf.Class, create:() => OpenLocation()),
});
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 /locations/open HTTP/1.1
Host: fbihtaapi.bettor.webhop.biz
Accept: application/json
Content-Type: application/json
Content-Length: length
{"id":"String","name":"String","taxAuthorityId":"String","address":{"street":"String","city":{"id":"String","value":"String"},"postalCode":"String"}}
HTTP/1.1 200 OK
Content-Type: application/json
Content-Length: length
{"errorCode":"String","message":"String","stackTrace":"String","errors":[{"errorCode":"String","fieldName":"String","message":"String","meta":{"String":"String"}}],"meta":{"String":"String"}}