Name |
Type |
Description |
Notes |
county_fips |
str |
|
|
longitude |
float |
|
|
latitude |
float |
|
|
country |
str |
|
|
state |
str |
|
|
city |
str |
|
|
from cbbd.models.team_roster_player_hometown import TeamRosterPlayerHometown
# TODO update the JSON string below
json = "{}"
# create an instance of TeamRosterPlayerHometown from a JSON string
team_roster_player_hometown_instance = TeamRosterPlayerHometown.from_json(json)
# print the JSON string representation of the object
print TeamRosterPlayerHometown.to_json()
# convert the object into a dict
team_roster_player_hometown_dict = team_roster_player_hometown_instance.to_dict()
# create an instance of TeamRosterPlayerHometown from a dict
team_roster_player_hometown_from_dict = TeamRosterPlayerHometown.from_dict(team_roster_player_hometown_dict)
[Back to Model list] [Back to API list] [Back to README]