| Requires any of the roles: | Client, Admin, Partner |
| GET | /currencies |
|---|
import 'package:servicestack/servicestack.dart';
// @DataContract
class CurrenciesLookup implements IConvertible
{
// @DataMember(Order=2)
String? IsoCode;
// @DataMember(Order=3)
String? Name;
// @DataMember(Order=4)
String? Symbol;
// @DataMember(Order=5)
int? DecimalPaces;
CurrenciesLookup({this.IsoCode,this.Name,this.Symbol,this.DecimalPaces});
CurrenciesLookup.fromJson(Map<String, dynamic> json) { fromMap(json); }
fromMap(Map<String, dynamic> json) {
IsoCode = json['IsoCode'];
Name = json['Name'];
Symbol = json['Symbol'];
DecimalPaces = json['DecimalPaces'];
return this;
}
Map<String, dynamic> toJson() => {
'IsoCode': IsoCode,
'Name': Name,
'Symbol': Symbol,
'DecimalPaces': DecimalPaces
};
getTypeName() => "CurrenciesLookup";
TypeContext? context = _ctx;
}
TypeContext _ctx = TypeContext(library: 'duengageapi.uat.scadsoftware.com', types: <String, TypeInfo> {
'CurrenciesLookup': TypeInfo(TypeOf.Class, create:() => CurrenciesLookup()),
});
To override the Content-type in your clients, use the HTTP Accept Header, append the .jsv suffix or ?format=jsv
The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.
GET /currencies HTTP/1.1 Host: duengageapi.uat.scadsoftware.com Accept: text/jsv
HTTP/1.1 200 OK
Content-Type: text/jsv
Content-Length: length
[
{
IsoCode: String,
Name: String,
Symbol: String,
DecimalPaces: 0,
ResponseStatus:
{
ErrorCode: String,
Message: String,
StackTrace: String,
Errors:
[
{
ErrorCode: String,
FieldName: String,
Message: String,
Meta:
{
String: String
}
}
],
Meta:
{
String: String
}
}
}
]