| Name | Type | Description | Notes |
|---|---|---|---|
| id | UUID | Item ID to update. Invalid (or missing) ID causes creating a new item. | [optional] |
| sku | String | Product SKU. If you create an item without providing a value, it will have the default value. | [optional] |
| name | String | Item name. If you create an item without providing a value, it will have the default value. | [optional] |
| description | String | Item description. If you create an item without providing a value, it will have the default value. | [optional] |
| qty | Integer | Item QTY. If you create an item without providing a value, it will have the default value. | [optional] |
| price | BigDecimal | Item price. If you create an item without providing a value, it will have the default value. If `price_settings` is passed, this value may change after the quote is updated. | [optional] |
| priceSettings | QuoteUpdateRequestPriceSettings | [optional] | |
| cost | BigDecimal | Item cost. If you create an item without providing a value, it will have the default value. | [optional] |
| billingFrequency | BillingFrequencyEnum | [optional] | |
| contractTerm | Integer | Contract term. Measured in units set in the `billing_frequency` parameter. | [optional] |
| referenceId | String | Use this field to pass an id that references this item in external systems. | [optional] |
| options | QuoteUpdateRequestOptions | [optional] | |
| customColumns | Map<String, String> | [optional] | |
| discounts | Map<String, QuoteUpdateRequestDiscounts> | Item discounts. | [optional] |
| taxes | Map<String, QuoteUpdateRequestDiscounts> | Item taxes. | [optional] |
| fees | Map<String, QuoteUpdateRequestDiscounts> | Item fees. | [optional] |
| multipliers | Map<String, BigDecimal> | Item multipliers. | [optional] |
| Name | Value |
|---|---|
| WEEKLY | "weekly" |
| MONTHLY | "monthly" |
| ANNUALLY | "annually" |
| QUARTERLY | "quarterly" |
| SEMIANNUALY | "semiannualy" |