Class: Aws::ConnectCases::Types::RelatedItemContent
- Inherits:
-
Struct
- Object
- Struct
- Aws::ConnectCases::Types::RelatedItemContent
- Includes:
- Structure, Structure::Union
- Defined in:
- lib/aws-sdk-connectcases/types.rb
Overview
RelatedItemContent is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of RelatedItemContent corresponding to the set member.
Represents the content of a particular type of related item.
Defined Under Namespace
Classes: Comment, Contact, File, Unknown
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#comment ⇒ Types::CommentContent
Represents the content of a comment to be returned to agents.
-
#contact ⇒ Types::ContactContent
Represents the content of a contact to be returned to agents.
-
#file ⇒ Types::FileContent
Represents the content of a File to be returned to agents.
-
#unknown ⇒ Object
Returns the value of attribute unknown.
Instance Attribute Details
#comment ⇒ Types::CommentContent
Represents the content of a comment to be returned to agents.
2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 |
# File 'lib/aws-sdk-connectcases/types.rb', line 2490 class < Struct.new( :comment, :contact, :file, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class Comment < ; end class Contact < ; end class File < ; end class Unknown < ; end end |
#contact ⇒ Types::ContactContent
Represents the content of a contact to be returned to agents.
2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 |
# File 'lib/aws-sdk-connectcases/types.rb', line 2490 class < Struct.new( :comment, :contact, :file, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class Comment < ; end class Contact < ; end class File < ; end class Unknown < ; end end |
#file ⇒ Types::FileContent
Represents the content of a File to be returned to agents.
2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 |
# File 'lib/aws-sdk-connectcases/types.rb', line 2490 class < Struct.new( :comment, :contact, :file, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class Comment < ; end class Contact < ; end class File < ; end class Unknown < ; end end |
#unknown ⇒ Object
Returns the value of attribute unknown
2490 2491 2492 |
# File 'lib/aws-sdk-connectcases/types.rb', line 2490 def unknown @unknown end |