ModelBundle

open_in_new

A set of assets or features associated with a model that may be unlocked.

GraphQL Schema definition

  • type ModelBundle implements Lockable {
  • # The unique identifier for the bundle.
  • id: ID!
  • # Information about whether the bundle has been unlocked or may be unlocked.
  • availability: Availability!
  • # A user friendly name for the bundle.
  • name: String!
  • # An optional description of the contents of the bundle.
  • description: String
  • # The asset(s) unlocked by this
  • # bundle if there are any.
  • assets: [Asset!]
  • # The options which may be used in conjunction with
  • # unlocking this object.
  • supportedOptions: BundleOptions
  • # If the bundle has been unlocked this will return any processing information
  • # related to that bundle.
  • processing: BundleProcessingInformation
  • }