Class: Aws::ConnectCampaignsV2::Types::OpenHours

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-connectcampaignsv2/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

DailyHours, Unknown

Defined Under Namespace

Classes: DailyHours, Unknown

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#daily_hoursHash<String,Array<Types::TimeRange>>

Daily Hours map

Returns:



1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
# File 'gems/aws-sdk-connectcampaignsv2/lib/aws-sdk-connectcampaignsv2/types.rb', line 1324

class OpenHours < Struct.new(
  :daily_hours,
  :unknown)
  SENSITIVE = []
  include Aws::Structure
  include Aws::Structure::Union

  class DailyHours < OpenHours; end
  class Unknown < OpenHours; end
end

#unknownObject

Returns the value of attribute unknown

Returns:

  • (Object)

    the current value of unknown



1324
1325
1326
# File 'gems/aws-sdk-connectcampaignsv2/lib/aws-sdk-connectcampaignsv2/types.rb', line 1324

def unknown
  @unknown
end