INPUT_OBJECT

CreateOrUpdateProductPriceListPriceInput

link GraphQL Schema definition

  • input CreateOrUpdateProductPriceListPriceInput {
  • # Optional client-supplied identifier passed on a mutation input and echoed back
  • # unchanged on its payload, so a client can correlate the response with its
  • # request (Relay convention).
  • clientMutationId: String
  • # Unique identifier of entity.
  • id: ID
  • # Last modification time.
  • modified: DateTime
  • # Creation time.
  • created: DateTime
  • # Id of the currency.
  • currencyId: ID
  • # Price amount stored at 6-decimal precision; values set via the API are rounded.
  • price: Float
  • # Id of the product.
  • productId: ID
  • # Id of the price list.
  • productPriceListId: ID
  • # Per-price access controls (e.g. which user roles can override this price).
  • # Stored as a JSON object.
  • settings: ProductPriceListPriceSettingsJSONString
  • # Revision when entity was lastly changed.
  • revision: Int
  • }

link Require by