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).
- : String
- # Unique identifier of entity.
- : ID
- # Last modification time.
- : DateTime
- # Creation time.
- : DateTime
- # Free-form description of the price list.
- : String
- # Date when the price list expires. Empty means open-ended.
- : Date
- # Master switch for the price list. Inactive price lists are not applied to
- # opportunities or quotes regardless of dates.
- : Boolean
- # Name of the entity and its default text representation.
- : 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
- : JSONString
- # Date when the price list becomes active. Empty means immediately.
- : Date
- # Distribution model of the price list (e.g. List, Promotion, Discount).
- : ProductPriceListTypeEnum
- # Revision when entity was lastly changed.
- : Int
- # Per-product, per-currency prices configured in the price list.
- : [CreateProductPriceListPriceNoProductPriceListBackrefInput!]
- }