Values.DeleteMembershipRequestSourceRequest structure for removing a single member from 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 revoke access from.
*)membershipId : MembershipId.t;The unique identifier of the membership to delete.
*)memberType : MembershipType.t option;The type of member to remove.
*)}val make :
?memberType:??? ->
applicationId:ApplicationId.t ->
agentSpaceId:AgentSpaceId.t ->
membershipId:MembershipId.t ->
unit ->
tval to_value :
t ->
[> `Structure of
(string * [> `Enum of string | `String of ApplicationId.t ]) list ]