Skip to content

Latest commit

 

History

History
33 lines (25 loc) · 1 KB

RecruitHometown.md

File metadata and controls

33 lines (25 loc) · 1 KB

RecruitHometown

Properties

Name Type Description Notes
county_fips str
longitude float
latitude float
country str
state str
city str

Example

from cbbd.models.recruit_hometown import RecruitHometown

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

# convert the object into a dict
recruit_hometown_dict = recruit_hometown_instance.to_dict()
# create an instance of RecruitHometown from a dict
recruit_hometown_from_dict = RecruitHometown.from_dict(recruit_hometown_dict)

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