Name |
Type |
Description |
Notes |
name |
str |
|
[optional] |
from sparkfly_client.models.member_list_input import MemberListInput
# TODO update the JSON string below
json = "{}"
# create an instance of MemberListInput from a JSON string
member_list_input_instance = MemberListInput.from_json(json)
# print the JSON string representation of the object
print MemberListInput.to_json()
# convert the object into a dict
member_list_input_dict = member_list_input_instance.to_dict()
# create an instance of MemberListInput from a dict
member_list_input_form_dict = member_list_input.from_dict(member_list_input_dict)
[Back to Model list] [Back to API list] [Back to README]