Skip to content

Latest commit

 

History

History
28 lines (20 loc) · 1.02 KB

MemberListInputRequest.md

File metadata and controls

28 lines (20 loc) · 1.02 KB

MemberListInputRequest

Properties

Name Type Description Notes
member_list MemberListInput [optional]

Example

from sparkfly_client.models.member_list_input_request import MemberListInputRequest

# TODO update the JSON string below
json = "{}"
# create an instance of MemberListInputRequest from a JSON string
member_list_input_request_instance = MemberListInputRequest.from_json(json)
# print the JSON string representation of the object
print MemberListInputRequest.to_json()

# convert the object into a dict
member_list_input_request_dict = member_list_input_request_instance.to_dict()
# create an instance of MemberListInputRequest from a dict
member_list_input_request_form_dict = member_list_input_request.from_dict(member_list_input_request_dict)

[Back to Model list] [Back to API list] [Back to README]