1
0

Automated commit message

This commit is contained in:
PayPalServerSDKs
2025-11-06 20:07:39 +00:00
parent 6da8b9b5b8
commit f774d5557c
488 changed files with 32098 additions and 4166 deletions

View File

@@ -0,0 +1,25 @@
# Taxes Override
The tax details.
## Structure
`TaxesOverride`
## Fields
| Name | Type | Tags | Description | Getter | Setter |
| --- | --- | --- | --- | --- | --- |
| `percentage` | `?string` | Optional | The percentage, as a fixed-point, signed decimal number. For example, define a 19.99% interest rate as `19.99`.<br><br>**Constraints**: *Pattern*: `^((-?[0-9]+)\|(-?([0-9]+)?[.][0-9]+))$` | getPercentage(): ?string | setPercentage(?string percentage): void |
| `inclusive` | `?bool` | Optional | Indicates whether the tax was already included in the billing amount. | getInclusive(): ?bool | setInclusive(?bool inclusive): void |
## Example (as JSON)
```json
{
"percentage": "percentage8",
"inclusive": false
}
```