Module Values.DeleteMembershipRequestSource

Request structure for removing a single member from an agent space.

Sourcetype nonrec t = {
  1. applicationId : ApplicationId.t;
    (*

    The unique identifier of the application that contains the agent space.

    *)
  2. agentSpaceId : AgentSpaceId.t;
    (*

    The unique identifier of the agent space to revoke access from.

    *)
  3. membershipId : MembershipId.t;
    (*

    The unique identifier of the membership to delete.

    *)
  4. memberType : MembershipType.t option;
    (*

    The type of member to remove.

    *)
}
Sourceval context_ : string
Sourceval make : ?memberType:??? -> applicationId:ApplicationId.t -> agentSpaceId:AgentSpaceId.t -> membershipId:MembershipId.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of ApplicationId.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