Class: Aws::GeoPlaces::Types::OpeningHoursComponents
- Inherits:
-
Struct
- Object
- Struct
- Aws::GeoPlaces::Types::OpeningHoursComponents
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-geoplaces/types.rb
Overview
Components of the opening hours object.
Constant Summary collapse
- SENSITIVE =
[:open_time, :open_duration, :recurrence]
Instance Attribute Summary collapse
-
#open_duration ⇒ String
String which represents the duration of the opening period, such as ‘“PT12H00M”`.
-
#open_time ⇒ String
String which represents the opening hours, such as ‘“T070000”`.
-
#recurrence ⇒ String
Days or periods when the provided opening hours are in affect.
Instance Attribute Details
#open_duration ⇒ String
String which represents the duration of the opening period, such as ‘“PT12H00M”`.
1692 1693 1694 1695 1696 1697 1698 |
# File 'lib/aws-sdk-geoplaces/types.rb', line 1692 class OpeningHoursComponents < Struct.new( :open_time, :open_duration, :recurrence) SENSITIVE = [:open_time, :open_duration, :recurrence] include Aws::Structure end |
#open_time ⇒ String
String which represents the opening hours, such as ‘“T070000”`.
1692 1693 1694 1695 1696 1697 1698 |
# File 'lib/aws-sdk-geoplaces/types.rb', line 1692 class OpeningHoursComponents < Struct.new( :open_time, :open_duration, :recurrence) SENSITIVE = [:open_time, :open_duration, :recurrence] include Aws::Structure end |
#recurrence ⇒ String
Days or periods when the provided opening hours are in affect.
Example: ‘FREQ:DAILY;BYDAY:MO,TU,WE,TH,SU`
1692 1693 1694 1695 1696 1697 1698 |
# File 'lib/aws-sdk-geoplaces/types.rb', line 1692 class OpeningHoursComponents < Struct.new( :open_time, :open_duration, :recurrence) SENSITIVE = [:open_time, :open_duration, :recurrence] include Aws::Structure end |