Module Values.UpdateConnectionPreferencesRequestSource

Updates the connection preferences for a partner account, modifying access settings and exclusions.

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

    The catalog identifier for the partner account.

    *)
  2. revision : Revision.t;
    (*

    The revision number of the connection preferences for optimistic locking.

    *)
  3. accessType : AccessType.t;
    (*

    The access type setting for connections (e.g., open, restricted, invitation-only).

    *)
  4. excludedParticipantIdentifiers : UpdateConnectionPreferencesRequestExcludedParticipantIdentifiersList.t option;
    (*

    The updated list of participant identifiers to exclude from connections.

    *)
}
Sourceval context_ : string
Sourceval make : ?excludedParticipantIdentifiers:??? -> catalog:Catalog.t -> revision:Revision.t -> accessType:AccessType.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `List of [> `String of ParticipantIdentifier.t ] list | `Long of Revision.t | `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