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.
  • isDeleteProtected: Boolean!
  • # Unique identifier of entity.
  • id: ID!
  • # Specifies if the entity is considered deleted.
  • isDeleted: Boolean
  • # Last modification time.
  • modified: DateTime
  • # Creation time.
  • created: DateTime
  • # Currency the price value is denominated in.
  • currency: CurrencyEntity
  • # Product the price applies to.
  • product: ProductEntity
  • # Price list the price belongs to.
  • productPriceList: ProductPriceListEntity
  • # Id of the currency.
  • currencyId: ID!
  • # Price amount stored at 6-decimal precision; values set via the API are rounded.
  • price: Float
  • # Id of the product.
  • productId: ID!
  • # Id of the price list.
  • productPriceListId: ID!
  • # Per-price access controls (e.g. which user roles can override this price).
  • # Stored as a JSON object.
  • settings: ProductPriceListPriceSettings!
  • # Revision when entity was lastly changed.
  • revision: Int
  • # Checks which permissions current user has on concrete entity instance.
  • #
  • # Arguments
  • # permissions: [Not documented]
  • instancePermissions(permissions: [EntityPermsEnum!]!): [EntityPermsEnum!]!
  • }