Skip to content

Latest commit

 

History

History
27 lines (20 loc) · 1.38 KB

File metadata and controls

27 lines (20 loc) · 1.38 KB

LeaderboardFriendRelationshipsUser

Properties

Name Type Description Notes
data LeaderboardFriendRelationshipsUserData [optional]

Example

from fitbit_web_api.models.leaderboard_friend_relationships_user import LeaderboardFriendRelationshipsUser

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

# convert the object into a dict
leaderboard_friend_relationships_user_dict = leaderboard_friend_relationships_user_instance.to_dict()
# create an instance of LeaderboardFriendRelationshipsUser from a dict
leaderboard_friend_relationships_user_from_dict = LeaderboardFriendRelationshipsUser.from_dict(leaderboard_friend_relationships_user_dict)

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