Skip to content

Latest commit

 

History

History
35 lines (26 loc) · 1.46 KB

UserCommunityProfileLinks.md

File metadata and controls

35 lines (26 loc) · 1.46 KB

UserCommunityProfileLinks

Social networks links

Properties

Name Type Description Notes
spotify_url str Spotify Profile URL [optional]
youtube_url str YouTube channel URL [optional]
soundcloud_url str SoundCloud Profile URL [optional]
tiktok_url str TikTok profile URL. For updates, also accepts TikTok usernames [optional]
instagram_url str Instagram profile URL. For updates, also accepts Instagram usernames [optional]
website_url str Personnal website URL [optional]

Example

from flat_api.models.user_community_profile_links import UserCommunityProfileLinks

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

# convert the object into a dict
user_community_profile_links_dict = user_community_profile_links_instance.to_dict()
# create an instance of UserCommunityProfileLinks from a dict
user_community_profile_links_form_dict = user_community_profile_links.from_dict(user_community_profile_links_dict)

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