PriceCreateInput
No description
input PriceCreateInput {
productId: Int!
per: Int
list: Float!
store: Float
cost: Float
suggested: Float
bulkDiscountType: PriceDiscountType
defaultTaxCode: Taxcode!
display: PriceDisplay!
}
Fields
PriceCreateInput.productId
● Int!
non-null scalar
Product id
PriceCreateInput.per
● Int
scalar
The quantity of items that the listed price will purchase
PriceCreateInput.list
● Float!
non-null scalar
The default sales price
PriceCreateInput.store
● Float
scalar
The price at which the product is sold in physical stores. This might differ from the standard price due to store-specific deals, overhead costs, or regional pricing strategies
PriceCreateInput.cost
● Float
scalar
The cost associated to acquire the product.
PriceCreateInput.suggested
● Float
scalar
The manufacturer's or supplier's recommended retail price (RRP) for the product.
PriceCreateInput.bulkDiscountType
● PriceDiscountType
enum
The method used to apply discounts for bulk prices / volume discounts. One of: [costpriceplus, listpricemin, netprice]
PriceCreateInput.defaultTaxCode
● Taxcode!
non-null enum
`Default tax code of this product One of: [H, L, N]
PriceCreateInput.display
● PriceDisplay!
non-null enum
Describes how the price should be displayed on the Front-End. Default value is 'DEFAULT'.
Member Of
priceCreate
mutation