| Requires any of the roles: | Client, Admin, Partner |
| GET | /currency_rates |
|---|
import 'package:servicestack/servicestack.dart';
import 'dart:collection';
// @DataContract
class CurrencyRatesLookup implements IConvertible
{
// @DataMember(Order=2)
int? TenantsId;
// @DataMember(Order=3)
int? FromCurrenciesId;
// @DataMember(Order=4)
int? ToCurrenciesId;
// @DataMember(Order=5)
double? ExchangeRate;
// @DataMember(Order=6)
DateTime? EffectiveDate;
CurrencyRatesLookup({this.TenantsId,this.FromCurrenciesId,this.ToCurrenciesId,this.ExchangeRate,this.EffectiveDate});
CurrencyRatesLookup.fromJson(Map<String, dynamic> json) { fromMap(json); }
fromMap(Map<String, dynamic> json) {
TenantsId = json['TenantsId'];
FromCurrenciesId = json['FromCurrenciesId'];
ToCurrenciesId = json['ToCurrenciesId'];
ExchangeRate = JsonConverters.toDouble(json['ExchangeRate']);
EffectiveDate = JsonConverters.fromJson(json['EffectiveDate'],'DateTime',context!);
return this;
}
Map<String, dynamic> toJson() => {
'TenantsId': TenantsId,
'FromCurrenciesId': FromCurrenciesId,
'ToCurrenciesId': ToCurrenciesId,
'ExchangeRate': ExchangeRate,
'EffectiveDate': JsonConverters.toJson(EffectiveDate,'DateTime',context!)
};
getTypeName() => "CurrencyRatesLookup";
TypeContext? context = _ctx;
}
TypeContext _ctx = TypeContext(library: 'duengageapi.uat.scadsoftware.com', types: <String, TypeInfo> {
'CurrencyRatesLookup': TypeInfo(TypeOf.Class, create:() => CurrencyRatesLookup()),
});
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 /currency_rates HTTP/1.1 Host: duengageapi.uat.scadsoftware.com Accept: text/jsv
HTTP/1.1 200 OK
Content-Type: text/jsv
Content-Length: length
[
{
TenantsId: 0,
FromCurrenciesId: 0,
ToCurrenciesId: 0,
ExchangeRate: 0,
EffectiveDate: 0001-01-01,
ResponseStatus:
{
ErrorCode: String,
Message: String,
StackTrace: String,
Errors:
[
{
ErrorCode: String,
FieldName: String,
Message: String,
Meta:
{
String: String
}
}
],
Meta:
{
String: String
}
}
}
]