1
0
Files
PayPal-PHP-Server-SDK/doc/models/venmo-wallet-additional-attributes.md
Patrick Powers 6da8b9b5b8 1.1.0 Release (#44)
* Automated commit message

* add changelog

---------

Co-authored-by: PayPalServerSDKs <server-sdks@paypal.com>
Co-authored-by: Patrick Powers <patickpowers@hey.com>
2025-05-27 13:31:17 -05:00

46 lines
1.4 KiB
Markdown

# Venmo Wallet Additional Attributes
Additional attributes associated with the use of this Venmo Wallet.
## Structure
`VenmoWalletAdditionalAttributes`
## Fields
| Name | Type | Tags | Description | Getter | Setter |
| --- | --- | --- | --- | --- | --- |
| `customer` | [`?VenmoWalletCustomerInformation`](../../doc/models/venmo-wallet-customer-information.md) | Optional | The details about a customer in PayPal's system of record. | getCustomer(): ?VenmoWalletCustomerInformation | setCustomer(?VenmoWalletCustomerInformation customer): void |
| `vault` | [`?VenmoWalletVaultAttributes`](../../doc/models/venmo-wallet-vault-attributes.md) | Optional | Resource consolidating common request and response attirbutes for vaulting Venmo Wallet. | getVault(): ?VenmoWalletVaultAttributes | setVault(?VenmoWalletVaultAttributes vault): void |
## Example (as JSON)
```json
{
"customer": {
"id": "id0",
"email_address": "email_address2",
"phone": {
"phone_type": "OTHER",
"phone_number": {
"national_number": "national_number6"
}
},
"name": {
"given_name": "given_name2",
"surname": "surname8"
}
},
"vault": {
"store_in_vault": "ON_SUCCESS",
"description": "description6",
"usage_pattern": "THRESHOLD_PREPAID",
"usage_type": "MERCHANT",
"customer_type": "CONSUMER",
"permit_multiple_payment_tokens": false
}
}
```