Module Values.OAuth2CustomParameterSource

Custom parameter required for OAuth 2.0 authentication.

Sourcetype nonrec t = {
  1. key : Key.t option;
    (*

    The key of the custom parameter required for OAuth 2.0 authentication.

    *)
  2. isRequired : Boolean.t option;
    (*

    Indicates whether the custom parameter for OAuth 2.0 authentication is required.

    *)
  3. label : Label.t option;
    (*

    The label of the custom parameter used for OAuth 2.0 authentication.

    *)
  4. description : Description.t option;
    (*

    A description about the custom parameter used for OAuth 2.0 authentication.

    *)
  5. isSensitiveField : Boolean.t option;
    (*

    Indicates whether this authentication custom parameter is a sensitive field.

    *)
  6. connectorSuppliedValues : ConnectorSuppliedValueList.t option;
    (*

    Contains default values for this authentication parameter that are supplied by the connector.

    *)
  7. type_ : OAuth2CustomPropType.t option;
    (*

    Indicates whether custom parameter is used with TokenUrl or AuthUrl.

    *)
}
Sourceval make : ?key:??? -> ?isRequired:??? -> ?label:??? -> ?description:??? -> ?isSensitiveField:??? -> ?connectorSuppliedValues:??? -> ?type_:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of Boolean.t | `Enum of string | `List of [> `String of ConnectorSuppliedValue.t ] list | `String of Key.t ]) 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