| Name |
Type |
Description |
Notes |
| id |
int |
|
|
| name |
str |
|
|
| city |
str |
|
|
| state |
str |
|
|
| zip |
str |
|
|
| country_code |
str |
|
|
| timezone |
str |
|
|
| latitude |
float |
|
|
| longitude |
float |
|
|
| elevation |
str |
|
|
| capacity |
int |
|
|
| construction_year |
int |
|
|
| grass |
bool |
|
[optional] |
| dome |
bool |
|
[optional] |
from cfbd.models.venue import Venue
# TODO update the JSON string below
json = "{}"
# create an instance of Venue from a JSON string
venue_instance = Venue.from_json(json)
# print the JSON string representation of the object
print Venue.to_json()
# convert the object into a dict
venue_dict = venue_instance.to_dict()
# create an instance of Venue from a dict
venue_from_dict = Venue.from_dict(venue_dict)
[Back to Model list] [Back to API list] [Back to README]