WalletTransferRequest
Properties
| Property | Type | Required | Description |
|---|---|---|---|
amount_cents |
integer | Yes | |
memo |
string,null | No | |
recipient_email |
string | Yes |
View JSON Schema
{
"type": "object",
"required": [
"recipient_email",
"amount_cents"
],
"properties": {
"amount_cents": {
"type": "integer",
"format": "int64"
},
"memo": {
"type": [
"string",
"null"
]
},
"recipient_email": {
"type": "string"
}
}
}