Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.46 KB

File metadata and controls

33 lines (24 loc) · 1.46 KB

ExternalAccountMobileMoney

Properties

Name Type Description Notes
type ExternalAccountMobileMoneyType
mobile_phone_number str Mobile phone number in E.164 format
provider ExternalAccountMobileMoneyProvider
email str
success_redirect_url str URL to redirect the end user back to after they complete the payment on the bank/mobile provider page (e.g., the merchant checkout page) [optional]

Example

from fireblocks.models.external_account_mobile_money import ExternalAccountMobileMoney

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

# convert the object into a dict
external_account_mobile_money_dict = external_account_mobile_money_instance.to_dict()
# create an instance of ExternalAccountMobileMoney from a dict
external_account_mobile_money_from_dict = ExternalAccountMobileMoney.from_dict(external_account_mobile_money_dict)

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