A base interface of common fields found on the model returned from a full get or from the search results.
- interface ModelSummary {
- # 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 :
- # The ID of the organization this model belongs to.
- ID :
- DateTime :
- DateTime :
- # A display name for this model.
- String :
- # Additional description of the model.
- String :
- # Who is allowed to see this model.
- ModelVisibility :
- # Whether the model is a demo model. Demo models are the only models accessible in
- # sandbox mode.
- Boolean :
- # The street address associated with this model, if available.
- Address :
- # The latitude / longitude of the model, if available.
- GeoLocation :
- # Real-estate information associated with the model.
- ModelMlsDetails :
- }