1
0
Files
PayPal-PHP-Server-SDK/doc/models/incentive-information.md
Patrick Powers 1fc2cf1e07 2.0.0 Release (#58)
* Automated commit message

* Automated commit message

* add changelog

---------

Co-authored-by: PayPalServerSDKs <server-sdks@paypal.com>
2025-11-13 16:32:53 -06:00

52 lines
1.3 KiB
Markdown

# Incentive Information
The incentive details.
## Structure
`IncentiveInformation`
## Fields
| Name | Type | Tags | Description | Getter | Setter |
| --- | --- | --- | --- | --- | --- |
| `incentiveDetails` | [`?(IncentiveDetails[])`](../../doc/models/incentive-details.md) | Optional | An array of incentive details.<br><br>**Constraints**: *Minimum Items*: `1`, *Maximum Items*: `32767` | getIncentiveDetails(): ?array | setIncentiveDetails(?array incentiveDetails): void |
## Example (as JSON)
```json
{
"incentive_details": [
{
"incentive_type": "incentive_type4",
"incentive_code": "incentive_code0",
"incentive_amount": {
"currency_code": "currency_code4",
"value": "value0"
},
"incentive_program_code": "incentive_program_code4"
},
{
"incentive_type": "incentive_type4",
"incentive_code": "incentive_code0",
"incentive_amount": {
"currency_code": "currency_code4",
"value": "value0"
},
"incentive_program_code": "incentive_program_code4"
},
{
"incentive_type": "incentive_type4",
"incentive_code": "incentive_code0",
"incentive_amount": {
"currency_code": "currency_code4",
"value": "value0"
},
"incentive_program_code": "incentive_program_code4"
}
]
}
```