Module Values.GetModelsRequestSource

Gets the Models for an API.

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

    The API identifier.

    *)
  2. maxResults : string option;
    (*

    The maximum number of elements to be returned for this resource.

    *)
  3. nextToken : string option;
    (*

    The next page of elements from this collection. Not valid for the last element of the collection.

    *)
}
Sourceval context_ : string
Sourceval make : ?maxResults:??? -> ?nextToken:??? -> apiId: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