Module Values.CreateDocumentationPartRequestSource

Creates a new documentation part of a given API.

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

    The string identifier of the associated RestApi.

    *)
  2. location : DocumentationPartLocation.t;
    (*

    The location of the targeted API entity of the to-be-created documentation part.

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

    The new documentation content map of the targeted API entity. Enclosed key-value pairs are API-specific, but only OpenAPI-compliant key-value pairs can be exported and, hence, published.

    *)
}
Sourceval context_ : string
Sourceval make : restApiId:String_.t -> location:DocumentationPartLocation.t -> properties:String_.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of String_.t | `Structure of (string * [> `Enum 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