Class: Aws::PartnerCentralSelling::Types::Contact
- Inherits:
-
Struct
- Object
- Struct
- Aws::PartnerCentralSelling::Types::Contact
- Defined in:
- gems/aws-sdk-partnercentralselling/lib/aws-sdk-partnercentralselling/types.rb
Overview
An object that contains a Customer Partner
's contact details.
Constant Summary collapse
- SENSITIVE =
[:business_title, :email, :first_name, :last_name, :phone]
Instance Attribute Summary collapse
-
#business_title ⇒ String
The partner contact's title (job title or role) associated with the
Opportunity
. -
#email ⇒ String
The contact's email address associated with the
Opportunity
. -
#first_name ⇒ String
The contact's first name associated with the
Opportunity
. -
#last_name ⇒ String
The contact's last name associated with the
Opportunity
. -
#phone ⇒ String
The contact's phone number associated with the
Opportunity
.
Instance Attribute Details
#business_title ⇒ String
The partner contact's title (job title or role) associated with the
Opportunity
. BusinessTitle
supports either
PartnerAccountManager
or OpportunityOwner
.
612 613 614 615 616 617 618 619 620 |
# File 'gems/aws-sdk-partnercentralselling/lib/aws-sdk-partnercentralselling/types.rb', line 612 class Contact < Struct.new( :business_title, :email, :first_name, :last_name, :phone) SENSITIVE = [:business_title, :email, :first_name, :last_name, :phone] include Aws::Structure end |
#email ⇒ String
The contact's email address associated with the Opportunity
.
612 613 614 615 616 617 618 619 620 |
# File 'gems/aws-sdk-partnercentralselling/lib/aws-sdk-partnercentralselling/types.rb', line 612 class Contact < Struct.new( :business_title, :email, :first_name, :last_name, :phone) SENSITIVE = [:business_title, :email, :first_name, :last_name, :phone] include Aws::Structure end |
#first_name ⇒ String
The contact's first name associated with the Opportunity
.
612 613 614 615 616 617 618 619 620 |
# File 'gems/aws-sdk-partnercentralselling/lib/aws-sdk-partnercentralselling/types.rb', line 612 class Contact < Struct.new( :business_title, :email, :first_name, :last_name, :phone) SENSITIVE = [:business_title, :email, :first_name, :last_name, :phone] include Aws::Structure end |
#last_name ⇒ String
The contact's last name associated with the Opportunity
.
612 613 614 615 616 617 618 619 620 |
# File 'gems/aws-sdk-partnercentralselling/lib/aws-sdk-partnercentralselling/types.rb', line 612 class Contact < Struct.new( :business_title, :email, :first_name, :last_name, :phone) SENSITIVE = [:business_title, :email, :first_name, :last_name, :phone] include Aws::Structure end |
#phone ⇒ String
The contact's phone number associated with the Opportunity
.
612 613 614 615 616 617 618 619 620 |
# File 'gems/aws-sdk-partnercentralselling/lib/aws-sdk-partnercentralselling/types.rb', line 612 class Contact < Struct.new( :business_title, :email, :first_name, :last_name, :phone) SENSITIVE = [:business_title, :email, :first_name, :last_name, :phone] include Aws::Structure end |