Module Values.UpdateModelManifestRequestSource

Updates a vehicle model (model manifest). If created vehicles are associated with a vehicle model, it can't be updated.

Sourcetype nonrec t = {
  1. name : ResourceName.t;
    (*

    The name of the vehicle model to update.

    *)
  2. description : Description.t option;
    (*

    A brief description of the vehicle model.

    *)
  3. nodesToAdd : NodePaths.t option;
    (*

    A list of fullyQualifiedName of nodes, which are a general abstraction of signals, to add to the vehicle model.

    *)
  4. nodesToRemove : NodePaths.t option;
    (*

    A list of fullyQualifiedName of nodes, which are a general abstraction of signals, to remove from the vehicle model.

    *)
  5. status : ManifestStatus.t option;
    (*

    The state of the vehicle model. If the status is ACTIVE, the vehicle model can't be edited. If the status is DRAFT, you can edit the vehicle model.

    *)
}
Sourceval context_ : string
Sourceval make : ?description:??? -> ?nodesToAdd:??? -> ?nodesToRemove:??? -> ?status:??? -> name:ResourceName.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `List of [> `String of NodePath.t ] list | `String of ResourceName.t ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t