Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.19 KB

SSImportedListRecipientCreateParams.md

File metadata and controls

30 lines (21 loc) · 1.19 KB

SSImportedListRecipientCreateParams

Properties

Name Type Description Notes
imported_list_id str
mobile_phone_number str

Example

from wallet.models.ss_imported_list_recipient_create_params import SSImportedListRecipientCreateParams

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

# convert the object into a dict
ss_imported_list_recipient_create_params_dict = ss_imported_list_recipient_create_params_instance.to_dict()
# create an instance of SSImportedListRecipientCreateParams from a dict
ss_imported_list_recipient_create_params_form_dict = ss_imported_list_recipient_create_params.from_dict(ss_imported_list_recipient_create_params_dict)

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