Class: Aws::ConnectCampaignsV2::Types::OpenHours
- Inherits:
-
Struct
- Object
- Struct
- Aws::ConnectCampaignsV2::Types::OpenHours
- Includes:
- Structure, Structure::Union
- Defined in:
- lib/aws-sdk-connectcampaignsv2/types.rb
Overview
Note:
OpenHours is a union - when making an API calls you must set exactly one of the members.
Note:
OpenHours is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of OpenHours corresponding to the set member.
Open Hours config
Direct Known Subclasses
Defined Under Namespace
Classes: DailyHours, Unknown
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#daily_hours ⇒ Hash<String,Array<Types::TimeRange>>
Daily Hours map.
-
#unknown ⇒ Object
Returns the value of attribute unknown.
Instance Attribute Details
#daily_hours ⇒ Hash<String,Array<Types::TimeRange>>
Daily Hours map
1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 |
# File 'lib/aws-sdk-connectcampaignsv2/types.rb', line 1462 class OpenHours < Struct.new( :daily_hours, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class DailyHours < OpenHours; end class Unknown < OpenHours; end end |
#unknown ⇒ Object
Returns the value of attribute unknown
1462 1463 1464 |
# File 'lib/aws-sdk-connectcampaignsv2/types.rb', line 1462 def unknown @unknown end |