forked from LiveCarta/PayPal-PHP-Server-SDK
24 lines
447 B
Markdown
24 lines
447 B
Markdown
|
|
# Shipping Name
|
|
|
|
The name of the party.
|
|
|
|
## Structure
|
|
|
|
`ShippingName`
|
|
|
|
## Fields
|
|
|
|
| Name | Type | Tags | Description | Getter | Setter |
|
|
| --- | --- | --- | --- | --- | --- |
|
|
| `fullName` | `?string` | Optional | When the party is a person, the party's full name.<br><br>**Constraints**: *Maximum Length*: `300` | getFullName(): ?string | setFullName(?string fullName): void |
|
|
|
|
## Example (as JSON)
|
|
|
|
```json
|
|
{
|
|
"full_name": "full_name6"
|
|
}
|
|
```
|
|
|