Class: Aws::PartnerCentralSelling::Types::AssigneeContact
- Inherits:
-
Struct
- Object
- Struct
- Aws::PartnerCentralSelling::Types::AssigneeContact
- Defined in:
- gems/aws-sdk-partnercentralselling/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.
320 321 322 323 324 325 326 327 |
# File 'gems/aws-sdk-partnercentralselling/lib/aws-sdk-partnercentralselling/types.rb', line 320 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.
320 321 322 323 324 325 326 327 |
# File 'gems/aws-sdk-partnercentralselling/lib/aws-sdk-partnercentralselling/types.rb', line 320 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.
320 321 322 323 324 325 326 327 |
# File 'gems/aws-sdk-partnercentralselling/lib/aws-sdk-partnercentralselling/types.rb', line 320 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.
320 321 322 323 324 325 326 327 |
# File 'gems/aws-sdk-partnercentralselling/lib/aws-sdk-partnercentralselling/types.rb', line 320 class AssigneeContact < Struct.new( :business_title, :email, :first_name, :last_name) SENSITIVE = [:business_title, :email, :first_name, :last_name] include Aws::Structure end |