Module Values.CreateConnectionInvitationRequestSource

Creates a new connection invitation to establish a partnership with another organization.

Sourcetype nonrec t = {
  1. catalog : Catalog.t;
    (*

    The catalog identifier where the connection invitation will be created.

    *)
  2. clientToken : ClientToken.t;
    (*

    A unique, case-sensitive identifier that you provide to ensure the idempotency of the request.

    *)
  3. connectionType : ConnectionType.t;
    (*

    The type of connection being requested (e.g., reseller, distributor, technology partner).

    *)
  4. email : Email.t;
    (*

    The email address of the person to send the connection invitation to.

    *)
  5. message : CreateConnectionInvitationRequestMessageString.t;
    (*

    A custom message to include with the connection invitation.

    *)
  6. name : SensitiveUnicodeString.t;
    (*

    The name of the person sending the connection invitation.

    *)
  7. receiverIdentifier : ParticipantIdentifier.t;
    (*

    The identifier of the organization or partner to invite for connection.

    *)
}
Sourceval context_ : string
Sourceval make : catalog:Catalog.t -> clientToken:ClientToken.t -> connectionType:ConnectionType.t -> email:Email.t -> message:CreateConnectionInvitationRequestMessageString.t -> name:SensitiveUnicodeString.t -> receiverIdentifier:ParticipantIdentifier.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of Catalog.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