API documentación
AccountDataPayload
Campos
| AccountDataPayload | Tipo | Descripción | Valor de ejemplo |
|---|---|---|---|
| Currencies | IEnumerable<CurrencyOption> | [object Object] | |
| Accounts | IEnumerable<AccountSummary> | [object Object] | |
| CurrentAccountId | int | 0 |
Ejemplo JSON
{
"currencies": {},
"accounts": {},
"currentAccountId": 0
}public class AccountDataPayload
{
public IEnumerable<CurrencyOption> Currencies { get; set; }
public IEnumerable<AccountSummary> Accounts { get; set; }
public int CurrentAccountId { get; set; }
}