Skip to content

Latest commit

 

History

History
29 lines (22 loc) · 1.56 KB

File metadata and controls

29 lines (22 loc) · 1.56 KB

GetIrnProfileResponse

Properties

Name Type Description Notes
onboarded bool Whether or not the user has onboarded onto the IRN feature. [optional]
enrolled bool Whether or not the user is currently enrolled in having their data processed for IRN alerts. [optional]
last_updated datetime The timestamp of the last piece of analyzable data synced by the user (displayed as local time). [optional]

Example

from fitbit_web_api.models.get_irn_profile_response import GetIrnProfileResponse

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

# convert the object into a dict
get_irn_profile_response_dict = get_irn_profile_response_instance.to_dict()
# create an instance of GetIrnProfileResponse from a dict
get_irn_profile_response_from_dict = GetIrnProfileResponse.from_dict(get_irn_profile_response_dict)

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