A base interface of common fields found on the model returned from a full get or from the search results.
- interface ModelSummary {
- # The street address associated with this model, if available.
- : Address
- : DateTime
- # Whether the model is a demo model. Demo models are the only models accessible in
- # sandbox mode.
- : Boolean
- # Additional description of the model.
- : String
- # The latitude / longitude of the model, if available.
- : GeoLocation
- # The unique identifier for this model.
- : ID!
- # An additional identifier that may be changed.
- # If this ID is unique within the organization it may be used to directly lookup
- # the model for editing and retrieval.
- : ID
- # Real-estate information associated with the model.
- : ModelMlsDetails
- : DateTime
- # A display name for this model.
- : String
- # The ID of the organization this model belongs to.
- : ID
- # Who is allowed to see this model.
- #
- # @deprecated 24.05.29
- : ModelVisibility
- }