El objeto de balance representa el saldo pendiente, retenido y disponible dentro de una compañía.
Objeto Balance
Atributos
Tipo | Descripción | |
---|---|---|
available | Array | Balance Disponible |
pending | Array | Balance Pendiente |
retention_amount | Array | Balance Retenido |
Balance
{
"available": [
{
"amount": 8836547, // Integer: amount available
"currency": "MXN" // String: currency of the amount available
}
],
"pending": [
{
"amount": 5299, // Integer: amount pending
"currency": "MXN" // String: currency of the amount pending
}
],
"retention_amount": [
{
"amount": 100000, // Integer: retention amount
"currency": "MXN" // String: currency of the retention amount
}
],
}