PricesheetCreateInput
Defines the input for creating a new pricesheet.
input PricesheetCreateInput {
code: String!
names: [LocalizedStringInput!]
descriptions: [LocalizedStringInput!]
priority: Int!
readonly: Boolean!
}
Fields
PricesheetCreateInput.code
● String!
non-null scalar
Pricesheet code.
PricesheetCreateInput.names
● [LocalizedStringInput!]
list input
The localized names for the pricesheet. Provide an array of objects, each with a locale
and value
.
PricesheetCreateInput.descriptions
● [LocalizedStringInput!]
list input
Pricesheet description.
PricesheetCreateInput.priority
● Int!
non-null scalar
Pricesheet priority.
PricesheetCreateInput.readonly
● Boolean!
non-null scalar
Pricesheet readonly.
Member Of
pricesheetCreate
mutation