Class: Aws::PartnerCentralSelling::Types::AssigneeContact
- Inherits:
-
Struct
- Object
- Struct
- Aws::PartnerCentralSelling::Types::AssigneeContact
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-partnercentralselling/types.rb
Overview
Represents the contact details of the individual assigned to manage the opportunity within the partner organization. This helps to ensure that there is a point of contact for the opportunity’s progress.
Constant Summary collapse
- SENSITIVE =
[:business_title, :email, :first_name, :last_name]
Instance Attribute Summary collapse
-
#business_title ⇒ String
Specifies the business title of the assignee managing the opportunity.
-
#email ⇒ String
Provides the email address of the assignee.
-
#first_name ⇒ String
Specifies the first name of the assignee managing the opportunity.
-
#last_name ⇒ String
Specifies the last name of the assignee managing the opportunity.
Instance Attribute Details
#business_title ⇒ String
Specifies the business title of the assignee managing the opportunity. This helps clarify the individual’s role and responsibilities within the organization. Use the value ‘PartnerAccountManager` to update details of the opportunity owner.
343 344 345 346 347 348 349 350 |
# File 'lib/aws-sdk-partnercentralselling/types.rb', line 343 class AssigneeContact < Struct.new( :business_title, :email, :first_name, :last_name) SENSITIVE = [:business_title, :email, :first_name, :last_name] include Aws::Structure end |
#email ⇒ String
Provides the email address of the assignee. This email is used for communications and notifications related to the opportunity.
343 344 345 346 347 348 349 350 |
# File 'lib/aws-sdk-partnercentralselling/types.rb', line 343 class AssigneeContact < Struct.new( :business_title, :email, :first_name, :last_name) SENSITIVE = [:business_title, :email, :first_name, :last_name] include Aws::Structure end |
#first_name ⇒ String
Specifies the first name of the assignee managing the opportunity. The system automatically retrieves this value from the user profile by referencing the associated email address.
343 344 345 346 347 348 349 350 |
# File 'lib/aws-sdk-partnercentralselling/types.rb', line 343 class AssigneeContact < Struct.new( :business_title, :email, :first_name, :last_name) SENSITIVE = [:business_title, :email, :first_name, :last_name] include Aws::Structure end |
#last_name ⇒ String
Specifies the last name of the assignee managing the opportunity. The system automatically retrieves this value from the user profile by referencing the associated email address.
343 344 345 346 347 348 349 350 |
# File 'lib/aws-sdk-partnercentralselling/types.rb', line 343 class AssigneeContact < Struct.new( :business_title, :email, :first_name, :last_name) SENSITIVE = [:business_title, :email, :first_name, :last_name] include Aws::Structure end |