BulkPrice
No description
type BulkPrice implements IDiscount {
id: String!
createdAt: DateTime!
lastModifiedAt: DateTime!
value: Float!
quantityFrom: Int!
validFrom: DateTime
validTo: DateTime
priceId: String!
}
Fields
BulkPrice.id
● String!
non-null scalar
Primary identifier
BulkPrice.createdAt
● DateTime!
non-null scalar
Creation date
BulkPrice.lastModifiedAt
● DateTime!
non-null scalar
Last modified date
BulkPrice.value
● Float!
non-null scalar
Discount on bulk purchases, expressed either as a percentage of the standard price or as a specific reduced price per unit, depending on the bulk price discount type
BulkPrice.quantityFrom
● Int!
non-null scalar
Indicates the minimum quantity threshold needed to qualify for the bulk price.
BulkPrice.validFrom
● DateTime
scalar
Start date from which the bulk pricing is effective. Must be a valid ISO 8601 date string
BulkPrice.validTo
● DateTime
scalar
Start date from which the bulk pricing is effective. Must be a valid ISO 8601 date string
BulkPrice.priceId
● String!
non-null scalar
Price foreign identifier
Interfaces
IDiscount
interface
Returned By
bulkPriceCreate
mutation ● bulkPriceUpdate
mutation
Member Of
BulkPriceResponse
object