Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.08 KB

File metadata and controls

32 lines (23 loc) · 1.08 KB

JobSummaryLocation

Location information

Properties

Name Type Description Notes
id int Location ID [optional]
label str Location display name [optional]
address object Full address of the location [optional]

Example

from bamboohr_sdk.models.job_summary_location import JobSummaryLocation

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

# convert the object into a dict
job_summary_location_dict = job_summary_location_instance.to_dict()
# create an instance of JobSummaryLocation from a dict
job_summary_location_from_dict = JobSummaryLocation.from_dict(job_summary_location_dict)

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