Module Values.CustomConnectorProfilePropertiesSource

The profile properties required by the custom connector.

Sourcetype nonrec t = {
  1. profileProperties : ProfilePropertiesMap.t option;
    (*

    A map of properties that are required to create a profile for the custom connector.

    *)
  2. oAuth2Properties : OAuth2Properties.t option;
}
Sourceval make : ?profileProperties:??? -> ?oAuth2Properties:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Map of ([> `String of ProfilePropertyKey.t ] * [> `String of ProfilePropertyValue.t ]) list | `Structure of (string * [> `Enum of string | `Map of ([> `String of CustomPropertyKey.t ] * [> `String of CustomPropertyValue.t ]) list | `String of TokenUrl.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