Module Values.FarmMemberSource

The member of a farm.

Sourcetype nonrec t = {
  1. farmId : FarmId.t option;
    (*

    The farm ID of the farm member.

    *)
  2. principalId : IdentityCenterPrincipalId.t option;
    (*

    The principal ID of the farm member.

    *)
  3. principalType : PrincipalType.t option;
    (*

    The principal type of the farm member.

    *)
  4. identityStoreId : IdentityStoreId.t option;
    (*

    The identity store ID of the farm member.

    *)
  5. membershipLevel : MembershipLevel.t option;
    (*

    The farm member's membership level.

    *)
}
Sourceval make : ?farmId:??? -> ?principalId:??? -> ?principalType:??? -> ?identityStoreId:??? -> ?membershipLevel:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of FarmId.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