Class: Google::Apis::ChatV1::TimeZone
- Inherits:
-
Object
- Object
- Google::Apis::ChatV1::TimeZone
- Includes:
- Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
- Defined in:
- lib/google/apis/chat_v1/classes.rb,
lib/google/apis/chat_v1/representations.rb,
lib/google/apis/chat_v1/representations.rb
Overview
The timezone ID and offset from Coordinated Universal Time (UTC). Only
supported for the event types CARD_CLICKED
and
SUBMIT_DIALOG
.
Instance Attribute Summary collapse
-
#id ⇒ String
The IANA TZ time zone database code, such as "America/Toronto".
-
#offset ⇒ Fixnum
The user timezone offset, in milliseconds, from Coordinated Universal Time ( UTC).
Instance Method Summary collapse
-
#initialize(**args) ⇒ TimeZone
constructor
A new instance of TimeZone.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ TimeZone
Returns a new instance of TimeZone.
5708 5709 5710 |
# File 'lib/google/apis/chat_v1/classes.rb', line 5708 def initialize(**args) update!(**args) end |
Instance Attribute Details
#id ⇒ String
The IANA TZ time zone database code, such
as "America/Toronto".
Corresponds to the JSON property id
5700 5701 5702 |
# File 'lib/google/apis/chat_v1/classes.rb', line 5700 def id @id end |
#offset ⇒ Fixnum
The user timezone offset, in milliseconds, from Coordinated Universal Time (
UTC).
Corresponds to the JSON property offset
5706 5707 5708 |
# File 'lib/google/apis/chat_v1/classes.rb', line 5706 def offset @offset end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
5713 5714 5715 5716 |
# File 'lib/google/apis/chat_v1/classes.rb', line 5713 def update!(**args) @id = args[:id] if args.key?(:id) @offset = args[:offset] if args.key?(:offset) end |