Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.45 KB

TzResponse.md

File metadata and controls

31 lines (22 loc) · 1.45 KB

TzResponse

Properties

Name Type Description Notes
tz_id str The canonical time zone ID. In the event that multiple time zones could be returned, the first one from the Unicode CLDR timezone.xml is returned.
base_utc_offset int The base offset, in seconds, from UTC that is normally in effect for this time zone.
dst_offset int The special offset, in seconds, from UTC that is in effect for this time zone as of the queried timestamp (defaults to now). If no additional offsets are in effect, this value is zero. This typically reflects Daylight Saving Time, but may indicate other special offsets. To get the total offset in effect, add `dst_offset` and `utc_offset` together.

Example

from stadiamaps.models.tz_response import TzResponse

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

# convert the object into a dict
tz_response_dict = tz_response_instance.to_dict()
# create an instance of TzResponse from a dict
tz_response_from_dict = TzResponse.from_dict(tz_response_dict)

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