INPUT_OBJECT
MattertagDetails
link GraphQL Schema definition
- input MattertagDetails {
 - #   The ID of the floor the Mattertag is on
 - : ID!
 - #   If this is set to false this Mattertag should not be shown
 - #   by players.  See Model.mattertags(enabled)
 - : Boolean!
 - #   An RGB hex string representing the highlight color for the Mattertag.
 - : String
 - #   A short label for the Mattertag, 60 character limit.
 - : String
 - #   A longer description of the Mattertag, 1,000 character limit.
 - : String
 - #   The position of the Mattertag anchor.
 - : IPoint3D
 - #   The type of media available at the given url.
 - #   If this is specified, then mediaUrl must also be specified.
 - : MattertagMediaType
 - #   An optional media url to associate with the mattertag
 - #   when creating it.
 - : String
 - #   Whether or not to show a line from the Mattertag anchor to the
 - #   Mattertag disc.
 - #   Default: true if stemNormal is specified, false otherwise.
 - : Boolean
 - #   The normalized unit vector of the line from the anchor
 - #   to the Mattertag disc.
 - : IPoint3D
 - #   The length of the line from the Mattertag anchor
 - #   to the Mattertag disc.
 - : Float
 - #   @deprecated Deprecated after v2020.05.04, renamed to anchorPosition for clarity.
 - : IPoint3D
 - #   @deprecated Deprecated after v2020.05.04, split into stemNormal and stemLength 
 - #   for clarity.
 - : IPoint3D
 - }