Module Values.MutationActionSetStateParameterSource

Represents the state configuration when an action modifies a property of another element within the same component.

Sourcetype nonrec t = {
  1. componentName : String_.t;
    (*

    The name of the component that is being modified.

    *)
  2. property : String_.t;
    (*

    The name of the component property to apply the state configuration to.

    *)
  3. set : ComponentProperty.t;
    (*

    The state configuration to assign to the property.

    *)
}
Sourceval context_ : string
Sourceval make : componentName:String_.t -> property:String_.t -> set:ComponentProperty.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * Awso.Botodata.value) 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