Class: Aws::PartnerCentralSelling::Types::EngagementCustomer
- Inherits:
-
Struct
- Object
- Struct
- Aws::PartnerCentralSelling::Types::EngagementCustomer
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-partnercentralselling/types.rb
Overview
Contains details about the customer associated with the Engagement Invitation, including company information and industry.
Constant Summary collapse
- SENSITIVE =
[:country_code, :website_url]
Instance Attribute Summary collapse
-
#company_name ⇒ String
Represents the name of the customer’s company associated with the Engagement Invitation.
-
#country_code ⇒ String
Indicates the country in which the customer’s company operates.
-
#industry ⇒ String
Specifies the industry to which the customer’s company belongs.
-
#website_url ⇒ String
Provides the website URL of the customer’s company.
Instance Attribute Details
#company_name ⇒ String
Represents the name of the customer’s company associated with the Engagement Invitation. This field is used to identify the customer.
1342 1343 1344 1345 1346 1347 1348 1349 |
# File 'lib/aws-sdk-partnercentralselling/types.rb', line 1342 class EngagementCustomer < Struct.new( :company_name, :country_code, :industry, :website_url) SENSITIVE = [:country_code, :website_url] include Aws::Structure end |
#country_code ⇒ String
Indicates the country in which the customer’s company operates. This field is useful for understanding regional requirements or compliance needs.
1342 1343 1344 1345 1346 1347 1348 1349 |
# File 'lib/aws-sdk-partnercentralselling/types.rb', line 1342 class EngagementCustomer < Struct.new( :company_name, :country_code, :industry, :website_url) SENSITIVE = [:country_code, :website_url] include Aws::Structure end |
#industry ⇒ String
Specifies the industry to which the customer’s company belongs. This field helps categorize the opportunity based on the customer’s business sector.
1342 1343 1344 1345 1346 1347 1348 1349 |
# File 'lib/aws-sdk-partnercentralselling/types.rb', line 1342 class EngagementCustomer < Struct.new( :company_name, :country_code, :industry, :website_url) SENSITIVE = [:country_code, :website_url] include Aws::Structure end |
#website_url ⇒ String
Provides the website URL of the customer’s company. This field helps partners verify the legitimacy and size of the customer organization.
1342 1343 1344 1345 1346 1347 1348 1349 |
# File 'lib/aws-sdk-partnercentralselling/types.rb', line 1342 class EngagementCustomer < Struct.new( :company_name, :country_code, :industry, :website_url) SENSITIVE = [:country_code, :website_url] include Aws::Structure end |