OBJECT
ModelOptions
Settings for what options are enabled on a given model. Most of these options are set at the account level but may be overridden for specific models.
link GraphQL Schema definition
- type ModelOptions {
- # Whether or not social sharing is enabled for this model.
- # This may be explicit via socialSharingOverride or inherited from the
- # organization.
- Boolean! :
- SettingOverride! :
- # Whether or not vr is enabled for this model.
- # This may be explicit via vrOverride or inherited from the organization.
- # If vrSupported is false this will always be false.
- Boolean! :
- SettingOverride! :
- # Whether or not this model supports VR views.
- # If this is `false` then `vrEnabled` will also be false regardless of the
- # `vrOverride` setting.
- Boolean! :
- }