This method returns result of type 'SAOP.API.Models.Currency.Currency'.
/// Currency details. public class Currency { // Currency id. public long CurrencyId { get; set; } // Currency code. public string Code { get; set; } // Currency name. public string Name { get; set; }
}
This method returns result of type 'SAOP.API.Models.Currency.Currency'.
/// Currency details. class Currency { // Currency id. public $CurrencyId; // Currency code. public $Code; // Currency name. public $Name;
}
This method returns result of type 'SAOP.API.Models.Currency.Currency'.
/// Currency details. public class Currency { // Currency id. public Long CurrencyId; // Currency code. public String Code; // Currency name. public String Name;