OBJECT
Adjustment
Adjustments to a line item or invoice, e.g. promotion discounts, fees, etc.
link GraphQL Schema definition
- type Adjustment implements Node {
- AdjustmentTypeEnum :
- # The amount adjusted. Denominated in cents.
- Int @deprecated( reason: "Prices can be larger than is representable by a graphql integer. Use the string version instead. This field will be removed no earlier than July 1st, 2025.
" ) :
- # The amount adjusted. In string with currency symbol.
- #
- # Arguments
- # currency: Currency in which to display money fields. Defaults
- # to the currency of the marketplace's home country.
- String): String ( :
- # Denominated in cents.
- Int @deprecated( reason: "Prices can be larger than is representable by a graphql integer. Use the string version instead. This field will be removed no earlier than July 1st, 2025.
" ) :
- # In string with currency symbol.
- #
- # Arguments
- # currency: Currency in which to display money fields. Defaults
- # to the currency of the marketplace's home country.
- (
- String :
- ): String
- # The type of discount this adjustment applies to
- AdjustmentAppliesToEnum :
- # The description of the adjustment.
- String :
- ID! :
- }