Skip to content

Latest commit

 

History

History
28 lines (20 loc) · 1.02 KB

OfferMemberListIdsInput.md

File metadata and controls

28 lines (20 loc) · 1.02 KB

OfferMemberListIdsInput

Properties

Name Type Description Notes
member_list_ids List[int] [optional]

Example

from sparkfly_client.models.offer_member_list_ids_input import OfferMemberListIdsInput

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

# convert the object into a dict
offer_member_list_ids_input_dict = offer_member_list_ids_input_instance.to_dict()
# create an instance of OfferMemberListIdsInput from a dict
offer_member_list_ids_input_form_dict = offer_member_list_ids_input.from_dict(offer_member_list_ids_input_dict)

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