Module Values.ServiceNowConnectorProfileCredentialsSource

The connector-specific profile credentials required when using ServiceNow.

Sourcetype nonrec t = {
  1. username : Username.t option;
    (*

    The name of the user.

    *)
  2. password : Password.t option;
    (*

    The password that corresponds to the user name.

    *)
  3. oAuth2Credentials : OAuth2Credentials.t option;
    (*

    The OAuth 2.0 credentials required to authenticate the user.

    *)
}
Sourceval make : ?username:??? -> ?password:??? -> ?oAuth2Credentials:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of Username.t | `Structure of (string * [> `String of ClientId.t | `Structure of (string * [> `String of AuthCode.t ]) list ]) 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