INPUT_OBJECT

CreateOrUpdateProductPriceListInput

link GraphQL Schema definition

  • input CreateOrUpdateProductPriceListInput {
  • # 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
  • # Free-form description of the price list.
  • description: String
  • # Date when the price list expires. Empty means open-ended.
  • endDate: Date
  • # Master switch for the price list. Inactive price lists are not applied to
  • # opportunities or quotes regardless of dates.
  • isActive: Boolean
  • # Name of the entity and its default text representation.
  • name: String
  • # Filter expression — a FieldFilter JSON object — deciding which records (e.g.
  • # accounts, opportunities) the price list applies to. Empty when it applies to all
  • # records. Validated on write. Full structure:
  • # https://graphql.api-doc.pipelinersales.com/latest/graphql/space/fieldfilter.doc.html
  • rules: JSONString
  • # Date when the price list becomes active. Empty means immediately.
  • startDate: Date
  • # Distribution model of the price list (e.g. List, Promotion, Discount).
  • type: ProductPriceListTypeEnum
  • # Revision when entity was lastly changed.
  • revision: Int
  • # Per-product, per-currency prices configured in the price list.
  • productPriceListPrices: [CreateProductPriceListPriceNoProductPriceListBackrefInput!]
  • }

link Require by