Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.24 KB

File metadata and controls

30 lines (21 loc) · 1.24 KB

AccountDashboardStatisticReferrals

Properties

Name Type Description Notes
total float Total number of referrals initiated by users.
datetime datetime Values aggregated for the specified date.

Example

from talon_one.models.account_dashboard_statistic_referrals import AccountDashboardStatisticReferrals

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

# convert the object into a dict
account_dashboard_statistic_referrals_dict = account_dashboard_statistic_referrals_instance.to_dict()
# create an instance of AccountDashboardStatisticReferrals from a dict
account_dashboard_statistic_referrals_from_dict = AccountDashboardStatisticReferrals.from_dict(account_dashboard_statistic_referrals_dict)

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