- input NoteDetails {
- # The ID of the floor the note is on.
- ID! :
- # The ID of the room the note is in.
- ID :
- # If this is set to false this note should not be shown
- # by players.
- # Defaults to true.
- Boolean :
- String :
- # The resolution status of the note. Resolved notes are typically hidden.
- # Defaults to open.
- ResolutionStatus :
- # An RGB hex string representing the highlight color for the note.
- String :
- # The position of the note anchor.
- IPoint3D :
- # Whether or not to show a line from the note anchor to the
- # note icon.
- # Default: true if stemNormal is specified, false otherwise.
- Boolean :
- # The normalized unit vector of the line from the anchor
- # to the note icon.
- IPoint3D :
- # The length of the line from the anchor
- # to the note icon.
- Float :
- # The root comment made on this note.
- # Default: an empty comment if none is provided here.
- CommentDetails :
- }