Class: Aws::PartnerCentralSelling::Types::EngagementContextPayload
- Inherits:
-
Struct
- Object
- Struct
- Aws::PartnerCentralSelling::Types::EngagementContextPayload
- Defined in:
- gems/aws-sdk-partnercentralselling/lib/aws-sdk-partnercentralselling/types.rb
Overview
EngagementContextPayload is a union - when making an API calls you must set exactly one of the members.
EngagementContextPayload is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of EngagementContextPayload corresponding to the set member.
Represents the payload of an Engagement context. The structure of this payload varies based on the context type specified in the EngagementContextDetails.
Defined Under Namespace
Classes: CustomerProject, Lead, ProspectingResult, Unknown
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#customer_project ⇒ Types::CustomerProjectsContext
Contains detailed information about a customer project when the context type is "CustomerProject".
-
#lead ⇒ Types::LeadContext
Contains detailed information about a lead when the context type is "Lead".
-
#prospecting_result ⇒ Types::ProspectingResult
Contains prospecting result data with enriched insights.
-
#unknown ⇒ Object
Returns the value of attribute unknown.
Instance Attribute Details
#customer_project ⇒ Types::CustomerProjectsContext
Contains detailed information about a customer project when the context type is "CustomerProject". This field is present only when the Type in EngagementContextDetails is set to "CustomerProject".
1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 |
# File 'gems/aws-sdk-partnercentralselling/lib/aws-sdk-partnercentralselling/types.rb', line 1742 class EngagementContextPayload < Struct.new( :customer_project, :lead, :prospecting_result, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class CustomerProject < EngagementContextPayload; end class Lead < EngagementContextPayload; end class ProspectingResult < EngagementContextPayload; end class Unknown < EngagementContextPayload; end end |
#lead ⇒ Types::LeadContext
Contains detailed information about a lead when the context type is "Lead". This field is present only when the Type in EngagementContextDetails is set to "Lead".
1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 |
# File 'gems/aws-sdk-partnercentralselling/lib/aws-sdk-partnercentralselling/types.rb', line 1742 class EngagementContextPayload < Struct.new( :customer_project, :lead, :prospecting_result, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class CustomerProject < EngagementContextPayload; end class Lead < EngagementContextPayload; end class ProspectingResult < EngagementContextPayload; end class Unknown < EngagementContextPayload; end end |
#prospecting_result ⇒ Types::ProspectingResult
Contains prospecting result data with enriched insights. The system generates these insights when a partner runs an autonomous prospecting job on leads. This field appears only when the context type is "ProspectingResult".
1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 |
# File 'gems/aws-sdk-partnercentralselling/lib/aws-sdk-partnercentralselling/types.rb', line 1742 class EngagementContextPayload < Struct.new( :customer_project, :lead, :prospecting_result, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class CustomerProject < EngagementContextPayload; end class Lead < EngagementContextPayload; end class ProspectingResult < EngagementContextPayload; end class Unknown < EngagementContextPayload; end end |
#unknown ⇒ Object
Returns the value of attribute unknown
1742 1743 1744 |
# File 'gems/aws-sdk-partnercentralselling/lib/aws-sdk-partnercentralselling/types.rb', line 1742 def unknown @unknown end |