Properties
| Name | Type | Description |
|---|---|---|
| rebillable | boolean | Whether this line item is eligible for rebilling. |
| rebill_status | string | Status of the rebilling process for this line item. |
| linked_transaction_id | string | The ID of the transaction this line item was rebilled to. |
| linked_transaction_line_id | string | The ID of the line item in the rebilled transaction. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/Rebilling",
"title": "Rebilling",
"type": "object",
"x-apideck-schema-id": "Rebilling",
"description": "Rebilling metadata for this line item.",
"nullable": true,
"x-apideck-weights": {
"rebillable": "high",
"rebill_status": "medium",
"linked_transaction_id": "high",
"linked_transaction_line_id": "high"
},
"properties": {
"rebillable": {
"type": "boolean",
"title": "Rebillable",
"description": "Whether this line item is eligible for rebilling.",
"example": true
},
"rebill_status": {
"type": "string",
"title": "Rebill Status",
"x-apideck-enum-id": "rebill-status",
"description": "Status of the rebilling process for this line item.",
"enum": [
"pending",
"billed",
"voided"
],
"example": "billed",
"nullable": true
},
"linked_transaction_id": {
"type": "string",
"title": "Linked Transaction ID",
"description": "The ID of the transaction this line item was rebilled to.",
"example": "txn_abc123",
"nullable": true
},
"linked_transaction_line_id": {
"type": "string",
"title": "Linked Transaction Line ID",
"description": "The ID of the line item in the rebilled transaction.",
"example": "line_xyz789",
"nullable": true
}
}
}