INPUT_OBJECT
ModelPatch
A patch operation on a model, updates the specified fields, leaving the others unchanged. To clear a String field, use the empty string ("").
link GraphQL Schema definition
- input ModelPatch {
 - #   Optionally update the internalId of the model.
 - #   Use the empty string ("") to clear this value.
 - : String
 - #   Optionally update the display name of the model.
 - : String
 - #   Optionally update the description of the model.
 - : String
 - #   Optionally update the image associated with the model.
 - #   This ID should be a reference to one of the values in assets/photos
 - : ID
 - #   Optionally update real estate listing information about the model.
 - : MlsDetailsPatch
 - #   Optionally update settings associated with the model.
 - : ModelOptionsPatch
 - #   Optionally update publication details about the model.
 - #   Note that `updateVisibilty` must be used to change whether the model
 - #   is public or private
 - : PublicationDetailsPatch
 - }