OBJECT
ProductPriceListPriceEntity
link GraphQL Schema definition
- type ProductPriceListPriceEntity {
- # Tells if the entity instance is protected against delete (Entities that need to
- # be present in the system at any time). Delete action still may fail if entity is
- # deletable, due some other additional validations.
- : Boolean!
- # Unique identifier of entity.
- : ID!
- # Specifies if the entity is considered deleted.
- : Boolean
- # Last modification time.
- : DateTime
- # Creation time.
- : DateTime
- # Currency the price value is denominated in.
- : CurrencyEntity
- # Product the price applies to.
- : ProductEntity
- # Price list the price belongs to.
- : ProductPriceListEntity
- # Id of the currency.
- : ID!
- # Price amount stored at 6-decimal precision; values set via the API are rounded.
- : Float
- # Id of the product.
- : ID!
- # Id of the price list.
- : ID!
- # Per-price access controls (e.g. which user roles can override this price).
- # Stored as a JSON object.
- : ProductPriceListPriceSettings!
- # Revision when entity was lastly changed.
- : Int
- # Checks which permissions current user has on concrete entity instance.
- #
- # Arguments
- # permissions: [Not documented]
- (: [EntityPermsEnum!]!): [EntityPermsEnum!]!
- }