A record representing a user's tipping/subscription settings
Record Key
literal:self
Fixed literal value
Properties
acceptsItems
boolean
Optional
Whether user accepts items (default: true)
acceptsSubscriptions
boolean
Optional
Whether user accepts subscriptions (default: true)
createdAt
string
datetime
Required
Creation timestamp
disableReceiptNotifications
boolean
Optional
Opt out of payment receipt DMs (default: false)
updatedAt
string
datetime
Optional
Last update timestamp
View raw schema
{
"key": "literal:self",
"type": "record",
"record": {
"type": "object",
"required": [
"createdAt"
],
"properties": {
"createdAt": {
"type": "string",
"format": "datetime",
"description": "Creation timestamp"
},
"updatedAt": {
"type": "string",
"format": "datetime",
"description": "Last update timestamp"
},
"acceptsItems": {
"type": "boolean",
"description": "Whether user accepts items (default: true)"
},
"acceptsSubscriptions": {
"type": "boolean",
"description": "Whether user accepts subscriptions (default: true)"
},
"disableReceiptNotifications": {
"type": "boolean",
"description": "Opt out of payment receipt DMs (default: false)"
}
}
},
"description": "A record representing a user's tipping/subscription settings"
}