ModelPublicationDetails

open_in_new

Information related to displaying public model information.

GraphQL Schema definition

  • type ModelPublicationDetails {
  • # If this is true then the information contained in this section
  • # is available in the Matterport viewer and to anyone who has a
  • # link to the model.
  • # This must be true to link to the viewer, embed the viewer or
  • # share the model with certain 3rd parties for unlocking additional
  • # assets.
  • published: Boolean!
  • # A link to the model showcase.
  • #
  • # Arguments
  • # branding: Controls what information should be shown on the
  • # viewer
  • # Default: default
  • # view: The type of player.
  • # Default: default
  • url(branding: ModelBranding, view: ModelPlayerView): String!
  • # An embeddable html fragment for showing the model.
  • #
  • # Arguments
  • # branding: Controls what information should be shown on the
  • # viewer
  • # Default: default
  • embed(branding: ModelBranding): String!
  • # An external url to access this model at.
  • externalUrl: String
  • # Public contact information for the model.
  • contact: ModelContact
  • # Public attribution
  • presentedBy: String
  • # Public summary of the space
  • summary: String
  • # The public street address of the space.
  • address: String
  • # The geolocation of the space based on published address
  • geolocation: GeoPoint
  • }