Represents the hierarchical relationship between a customer (given by customer_id
) and other customers who are its parent and child/children.
[{
"children_ids": [
"b_001",
{..}
],
"customer_id": "a_001",
"invoice_owner_id": "c_001",
"payment_owner_id": "a_001"
}]
id
of the customer who pays the invoices for this customer. Can be the customer itself or the invoice_owner_id
id
of the customer who is invoiced for charges incurred. Can be the customer itself or any parent in its hierarchy.