forked from LiveCarta/PayPal-PHP-Server-SDK
60 lines
1.6 KiB
Markdown
60 lines
1.6 KiB
Markdown
|
|
# Update Pricing Scheme
|
|
|
|
The update pricing scheme request details.
|
|
|
|
## Structure
|
|
|
|
`UpdatePricingScheme`
|
|
|
|
## Fields
|
|
|
|
| Name | Type | Tags | Description | Getter | Setter |
|
|
| --- | --- | --- | --- | --- | --- |
|
|
| `billingCycleSequence` | `int` | Required | The billing cycle sequence.<br><br>**Constraints**: `>= 1`, `<= 99` | getBillingCycleSequence(): int | setBillingCycleSequence(int billingCycleSequence): void |
|
|
| `pricingScheme` | [`SubscriptionPricingScheme`](../../doc/models/subscription-pricing-scheme.md) | Required | The pricing scheme details. | getPricingScheme(): SubscriptionPricingScheme | setPricingScheme(SubscriptionPricingScheme pricingScheme): void |
|
|
|
|
## Example (as JSON)
|
|
|
|
```json
|
|
{
|
|
"billing_cycle_sequence": 99,
|
|
"pricing_scheme": {
|
|
"version": 10,
|
|
"fixed_price": {
|
|
"currency_code": "currency_code4",
|
|
"value": "value0"
|
|
},
|
|
"pricing_model": "VOLUME",
|
|
"tiers": [
|
|
{
|
|
"starting_quantity": "starting_quantity8",
|
|
"ending_quantity": "ending_quantity6",
|
|
"amount": {
|
|
"currency_code": "currency_code6",
|
|
"value": "value0"
|
|
}
|
|
},
|
|
{
|
|
"starting_quantity": "starting_quantity8",
|
|
"ending_quantity": "ending_quantity6",
|
|
"amount": {
|
|
"currency_code": "currency_code6",
|
|
"value": "value0"
|
|
}
|
|
},
|
|
{
|
|
"starting_quantity": "starting_quantity8",
|
|
"ending_quantity": "ending_quantity6",
|
|
"amount": {
|
|
"currency_code": "currency_code6",
|
|
"value": "value0"
|
|
}
|
|
}
|
|
],
|
|
"create_time": "create_time4"
|
|
}
|
|
}
|
|
```
|
|
|