Bill overview
Bill represents an installment which the customer must pay. If an order was purchased in 12 installments, this customer will have 12 bills to pay.
Bill schema
| Field | Description | Type |
|---|---|---|
| id | Unique identifier (UUID) | String |
| amount_cents | Bill amount in cents | Integer |
| due_date | Due date from that bill | Integer |
| installments | Total of bills that will be created | Integer |
| status | Bill status, pending, paid, canceled | String |
| bill_type | Which type is the bill, down_payment, installment | String |
| payments | Payments associated with that bill | Array |
| created_at | Indicates when the record was created in iso8601 | String |
| updated_at | Indicates when the record was last updated in iso8601 | String |