Module Values.PardotConnectorProfilePropertiesSource

The connector-specific profile properties required when using Salesforce Pardot.

Sourcetype nonrec t = {
  1. instanceUrl : InstanceUrl.t option;
    (*

    The location of the Salesforce Pardot resource.

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

    Indicates whether the connector profile applies to a sandbox or production environment.

    *)
  3. businessUnitId : BusinessUnitId.t option;
    (*

    The business unit id of Salesforce Pardot instance.

    *)
}
Sourceval make : ?instanceUrl:??? -> ?isSandboxEnvironment:??? -> ?businessUnitId:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of Boolean.t | `String of InstanceUrl.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