The member request.
| Name | Type | Description | Notes |
|---|---|---|---|
| members | List[str] | The list of group member IDs. | [optional] |
from docspace_api_sdk.models.members_request import MembersRequest
# TODO update the JSON string below
json = "{}"
# create an instance of MembersRequest from a JSON string
members_request_instance = MembersRequest.from_json(json)
# print the JSON string representation of the object
print(MembersRequest.to_json())
# convert the object into a dict
members_request_dict = members_request_instance.to_dict()
# create an instance of MembersRequest from a dict
members_request_from_dict = MembersRequest.from_dict(members_request_dict)