Module Values.AssociatedUserSource

Represents an associated user in the access control system.

Sourcetype nonrec t = {
  1. id : String_.t option;
    (*

    The unique identifier of the associated user. This is used to identify the user in access control decisions.

    *)
  2. type_ : MembershipType.t option;
    (*

    The type of the associated user. This indicates the scope of the user's association.

    *)
}
Sourceval make : ?id:??? -> ?type_:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of String_.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