A studio-viewable ShootProof subscription or marketplace bill.
| Property | Description |
|---|---|
| amount |
The public total for the bill. |
| currencyCode |
The ISO currency code for |
| date |
The bill date, formatted for display. |
| description |
The bill type name (e.g. Photo Plan, Marketplace). |
| id |
The bill identifier used for receipt printing. |
| status |
The human-readable bill status name. |
| type |
The type of object represented. |
The following schema is based on OpenAPI 3.0 and is provided in our downloadable OpenAPI document.
{
"description": "A studio-viewable ShootProof subscription or marketplace bill.",
"properties": {
"amount": {
"description": "The public total for the bill.",
"type": "number"
},
"currencyCode": {
"description": "The ISO currency code for `amount`.",
"type": "string"
},
"date": {
"description": "The bill date, formatted for display.",
"type": "string"
},
"description": {
"description": "The bill type name (e.g. Photo Plan, Marketplace).",
"type": "string"
},
"id": {
"description": "The bill identifier used for receipt printing.",
"type": "integer"
},
"status": {
"description": "The human-readable bill status name.",
"type": "string"
},
"type": {
"description": "The type of object represented.",
"enum": [
"bill"
],
"type": "string"
}
},
"required": [
"type",
"id",
"date",
"description",
"amount",
"currencyCode",
"status"
],
"title": "Bill",
"type": "object"
}