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! 
 - #   How much of the address information should be available
 - #   if the model is public.
 - : AddressVisibility! 
 - #   Whether or not visitors to this model can playback the tour in the showcase 
 - #   player.
 - : Boolean! 
 - : SettingOverride! 
 - #   Whether or not visitors to this model can see the dollhouse mode in the showcase 
 - #   player.
 - : Boolean! 
 - : SettingOverride! 
 - #   Whether or not visitors to this model can see floorplan mode in the showcase 
 - #   player.
 - : Boolean! 
 - : SettingOverride! 
 - #   Whether or not visitors to this model can see labels in the showcase player.
 - : Boolean! 
 - : SettingOverride! 
 - #   Whether or not visitors to this model can see labels in dollhouse mode of the 
 - #   showcase player.
 - : Boolean! 
 - : SettingOverride! 
 - #   Whether or not visitor to this model can see the highlight reel.
 - : Boolean! 
 - : SettingOverride! 
 - #   Whether or not the tour will auto play for visitors.
 - : Boolean! 
 - : SettingOverride! 
 - #   The background color for presentation.
 - : ModelBackgroundColor! 
 - #   The units visitors will see measurements in.
 - : Units! 
 - #   The mode of interaction visitors will have with measurements.
 - : MeasurementsMode! 
 - }