classAccountDataPayload
public class AccountDataPayload
{
public IEnumerable<CurrencyOption> Currencies { get; set; }
public IEnumerable<AccountSummary> Accounts { get; set; }
public int CurrentAccountId { get; set; }
}| AccountDataPayload | Type | Description | Example value |
|---|---|---|---|
| Currencies | IEnumerable<CurrencyOption> | [object Object] | |
| Accounts | IEnumerable<AccountSummary> | [object Object] | |
| CurrentAccountId | int | 0 |
Example JSON
{
"currencies": {},
"accounts": {},
"currentAccountId": 0
}