Studio credit card information.
| Property | Description |
|---|---|
| creditCard |
Credit card information on file for the studio, or |
| securityToken |
The security token for the studio credit card. |
| type |
The type of object represented. |
The following schema is based on OpenAPI 3.0 and is provided in our downloadable OpenAPI document.
{
"description": "Studio credit card information.",
"properties": {
"creditCard": {
"description": "Credit card information on file for the studio, or `false` if there\nis no credit card on file.",
"oneOf": [
{
"enum": [
false
],
"type": "boolean"
},
{
"properties": {
"maskedNumber": {
"description": "The masked credit card number for the studio.",
"type": "string"
}
},
"type": "object"
}
]
},
"securityToken": {
"description": "The security token for the studio credit card.",
"type": "string"
},
"type": {
"description": "The type of object represented.",
"enum": [
"studio-credit-card"
],
"type": "string"
}
},
"title": "Studio Credit Card",
"type": "object"
}