Module Values.PutMetadataFlagRequestSource

Stores the metadata information about a feature on a form.

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

    The unique ID for the Amplify app.

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

    The name of the backend environment that is part of the Amplify app.

    *)
  3. featureName : String_.t;
    (*

    The name of the feature associated with the metadata.

    *)
  4. body : PutMetadataFlagBody.t;
    (*

    The metadata information to store.

    *)
}
Sourceval context_ : string
Sourceval make : appId:String_.t -> environmentName:String_.t -> featureName:String_.t -> body:PutMetadataFlagBody.t -> unit -> t
Sourceval of_header_and_body : ((string, String_.t) Awso.Import.List.Assoc.t * PutMetadataFlagBody.t) -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of String_.t | `Structure of (string * [> `String of String_.t ]) list ]) 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