Class: Google::Apis::FirestoreV1::TimeOfDay
- Inherits:
-
Object
- Object
- Google::Apis::FirestoreV1::TimeOfDay
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/firestore_v1/classes.rb,
lib/google/apis/firestore_v1/representations.rb,
lib/google/apis/firestore_v1/representations.rb
Overview
Represents a time of day. The date and time zone are either not significant or
are specified elsewhere. An API may choose to allow leap seconds. Related
types are google.type.Date and google.protobuf.Timestamp.
Instance Attribute Summary collapse
-
#hours ⇒ Fixnum
Hours of day in 24 hour format.
-
#minutes ⇒ Fixnum
Minutes of hour of day.
-
#nanos ⇒ Fixnum
Fractions of seconds in nanoseconds.
-
#seconds ⇒ Fixnum
Seconds of minutes of the time.
Instance Method Summary collapse
-
#initialize(**args) ⇒ TimeOfDay
constructor
A new instance of TimeOfDay.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ TimeOfDay
Returns a new instance of TimeOfDay.
3834 3835 3836 |
# File 'lib/google/apis/firestore_v1/classes.rb', line 3834 def initialize(**args) update!(**args) end |
Instance Attribute Details
#hours ⇒ Fixnum
Hours of day in 24 hour format. Should be from 0 to 23. An API may choose to
allow the value "24:00:00" for scenarios like business closing time.
Corresponds to the JSON property hours
3816 3817 3818 |
# File 'lib/google/apis/firestore_v1/classes.rb', line 3816 def hours @hours end |
#minutes ⇒ Fixnum
Minutes of hour of day. Must be from 0 to 59.
Corresponds to the JSON property minutes
3821 3822 3823 |
# File 'lib/google/apis/firestore_v1/classes.rb', line 3821 def minutes @minutes end |
#nanos ⇒ Fixnum
Fractions of seconds in nanoseconds. Must be from 0 to 999,999,999.
Corresponds to the JSON property nanos
3826 3827 3828 |
# File 'lib/google/apis/firestore_v1/classes.rb', line 3826 def nanos @nanos end |
#seconds ⇒ Fixnum
Seconds of minutes of the time. Must normally be from 0 to 59. An API may
allow the value 60 if it allows leap-seconds.
Corresponds to the JSON property seconds
3832 3833 3834 |
# File 'lib/google/apis/firestore_v1/classes.rb', line 3832 def seconds @seconds end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
3839 3840 3841 3842 3843 3844 |
# File 'lib/google/apis/firestore_v1/classes.rb', line 3839 def update!(**args) @hours = args[:hours] if args.key?(:hours) @minutes = args[:minutes] if args.key?(:minutes) @nanos = args[:nanos] if args.key?(:nanos) @seconds = args[:seconds] if args.key?(:seconds) end |