Module Values.ApiConfigurationSource

Describes the API configuration for a code generation job.

Sourcetype nonrec t = {
  1. graphQLConfig : GraphQLRenderConfig.t option;
    (*

    The configuration for an application using GraphQL APIs.

    *)
  2. dataStoreConfig : DataStoreRenderConfig.t option;
    (*

    The configuration for an application using DataStore APIs.

    *)
  3. noApiConfig : NoApiRenderConfig.t option;
    (*

    The configuration for an application with no API being used.

    *)
}
Sourceval make : ?graphQLConfig:??? -> ?dataStoreConfig:??? -> ?noApiConfig:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `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