Class: Aws::PartnerCentralSelling::Types::LeadContext
- Inherits:
-
Struct
- Object
- Struct
- Aws::PartnerCentralSelling::Types::LeadContext
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-partnercentralselling/types.rb
Overview
Provides comprehensive details about a lead associated with an engagement. This structure contains information about lead qualification status, customer details, and interaction history to facilitate lead management and tracking within the engagement.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#customer ⇒ Types::LeadCustomer
Contains detailed information about the customer associated with the lead, including company information, contact details, and other relevant customer data.
-
#insights ⇒ Types::LeadInsights
Insights that AI generates and associates with the lead.
-
#interactions ⇒ Array<Types::LeadInteraction>
An array of interactions that have occurred with the lead, providing a history of communications, meetings, and other engagement activities related to the lead.
-
#qualification_status ⇒ String
Indicates the current qualification status of the lead, such as whether it has been qualified, disqualified, or is still under evaluation.
Instance Attribute Details
#customer ⇒ Types::LeadCustomer
Contains detailed information about the customer associated with the lead, including company information, contact details, and other relevant customer data.
3204 3205 3206 3207 3208 3209 3210 3211 |
# File 'lib/aws-sdk-partnercentralselling/types.rb', line 3204 class LeadContext < Struct.new( :insights, :qualification_status, :customer, :interactions) SENSITIVE = [] include Aws::Structure end |
#insights ⇒ Types::LeadInsights
Insights that AI generates and associates with the lead. These insights provide automated analysis such as lead readiness scoring to help partners assess the lead quality.
3204 3205 3206 3207 3208 3209 3210 3211 |
# File 'lib/aws-sdk-partnercentralselling/types.rb', line 3204 class LeadContext < Struct.new( :insights, :qualification_status, :customer, :interactions) SENSITIVE = [] include Aws::Structure end |
#interactions ⇒ Array<Types::LeadInteraction>
An array of interactions that have occurred with the lead, providing a history of communications, meetings, and other engagement activities related to the lead.
3204 3205 3206 3207 3208 3209 3210 3211 |
# File 'lib/aws-sdk-partnercentralselling/types.rb', line 3204 class LeadContext < Struct.new( :insights, :qualification_status, :customer, :interactions) SENSITIVE = [] include Aws::Structure end |
#qualification_status ⇒ String
Indicates the current qualification status of the lead, such as whether it has been qualified, disqualified, or is still under evaluation. This helps track the lead's progression through the qualification process.
3204 3205 3206 3207 3208 3209 3210 3211 |
# File 'lib/aws-sdk-partnercentralselling/types.rb', line 3204 class LeadContext < Struct.new( :insights, :qualification_status, :customer, :interactions) SENSITIVE = [] include Aws::Structure end |