PaymentHistory
Payment history response
Properties
| Property | Type | Required | Description |
|---|---|---|---|
payments |
Array<PaymentRecord> | Yes |
View JSON Schema
{
"type": "object",
"description": "Payment history response",
"required": [
"payments"
],
"properties": {
"payments": {
"type": "array",
"items": {
"$ref": "#/components/schemas/PaymentRecord"
}
}
}
}