Module Values.IdentifierPartsSource

The identifier parts of a product REST endpoint.

Sourcetype nonrec t = {
  1. method_ : string;
    (*

    The method of the product REST endpoint.

    *)
  2. path : string;
    (*

    The path of the product REST endpoint.

    *)
  3. restApiId : string;
    (*

    The REST API ID of the product REST endpoint.

    *)
  4. stage : string;
    (*

    The stage of the product REST endpoint.

    *)
}
Sourceval context_ : string
Sourceval make : method_:string -> path:string -> restApiId:string -> stage:string -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of string ]) 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