Class: Aws::ConnectCases::Types::LayoutContent

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-connectcases/lib/aws-sdk-connectcases/types.rb

Overview

Note:

LayoutContent is a union - when making an API calls you must set exactly one of the members.

Note:

LayoutContent is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of LayoutContent corresponding to the set member.

Object to store union of different versions of layout content.

Direct Known Subclasses

Basic, Unknown

Defined Under Namespace

Classes: Basic, Unknown

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#basicTypes::BasicLayout

Content specific to BasicLayout type. It configures fields in the top panel and More Info tab of Cases user interface.

Returns:



1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
# File 'gems/aws-sdk-connectcases/lib/aws-sdk-connectcases/types.rb', line 1608

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

  class Basic < LayoutContent; end
  class Unknown < LayoutContent; end
end

#unknownObject

Returns the value of attribute unknown

Returns:

  • (Object)

    the current value of unknown



1608
1609
1610
# File 'gems/aws-sdk-connectcases/lib/aws-sdk-connectcases/types.rb', line 1608

def unknown
  @unknown
end