Values.CreateMembershipRequestSourceRequest structure for adding a single member to an agent space.
type nonrec t = {applicationId : ApplicationId.t;The unique identifier of the application that contains the agent space.
*)agentSpaceId : AgentSpaceId.t;The unique identifier of the agent space to grant access to.
*)membershipId : MembershipId.t;The unique identifier for the membership.
*)memberType : MembershipType.t;The type of member. Currently, only USER is supported.
*)config : MembershipConfig.t option;The configuration for the membership, such as the user role.
*)}val make :
?config:??? ->
applicationId:ApplicationId.t ->
agentSpaceId:AgentSpaceId.t ->
membershipId:MembershipId.t ->
memberType:MembershipType.t ->
unit ->
tval to_value :
t ->
[> `Structure of
(string
* [> `Enum of string
| `String of ApplicationId.t
| `Structure of
(string * [> `Structure of (string * [> `Enum of string ]) list ])
list ])
list ]