Properties
| Name | Type | Description |
|---|---|---|
| id | integer | The ID of the whitelist entry. |
| requestResponse | object | The RequestResponse object |
| draftPayment | object | The DraftPayment object |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/WhitelistResultViewAnchoredObject",
"title": "WhitelistResultViewAnchoredObject",
"type": "object",
"properties": {
"id": {
"type": "integer",
"description": "The ID of the whitelist entry.",
"readOnly": true,
"writeOnly": false
},
"requestResponse": {
"type": "object",
"description": "The RequestResponse object",
"readOnly": true,
"writeOnly": false,
"$ref": "#/components/schemas/RequestResponse"
},
"draftPayment": {
"type": "object",
"description": "The DraftPayment object",
"readOnly": true,
"writeOnly": false,
"$ref": "#/components/schemas/DraftPayment"
}
}
}