Class: Aws::PartnerCentralSelling::Types::EngagementCustomer

Inherits:
Struct
  • Object
show all
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

Instance Attribute Details

#company_nameString

Represents the name of the customer’s company associated with the Engagement Invitation. This field is used to identify the customer.

Returns:

  • (String)


948
949
950
951
952
953
954
955
# File 'lib/aws-sdk-partnercentralselling/types.rb', line 948

class EngagementCustomer < Struct.new(
  :company_name,
  :country_code,
  :industry,
  :website_url)
  SENSITIVE = [:country_code, :website_url]
  include Aws::Structure
end

#country_codeString

Indicates the country in which the customer’s company operates. This field is useful for understanding regional requirements or compliance needs.

Returns:

  • (String)


948
949
950
951
952
953
954
955
# File 'lib/aws-sdk-partnercentralselling/types.rb', line 948

class EngagementCustomer < Struct.new(
  :company_name,
  :country_code,
  :industry,
  :website_url)
  SENSITIVE = [:country_code, :website_url]
  include Aws::Structure
end

#industryString

Specifies the industry to which the customer’s company belongs. This field helps categorize the opportunity based on the customer’s business sector.

Returns:

  • (String)


948
949
950
951
952
953
954
955
# File 'lib/aws-sdk-partnercentralselling/types.rb', line 948

class EngagementCustomer < Struct.new(
  :company_name,
  :country_code,
  :industry,
  :website_url)
  SENSITIVE = [:country_code, :website_url]
  include Aws::Structure
end

#website_urlString

Provides the website URL of the customer’s company. This field helps partners verify the legitimacy and size of the customer organization.

Returns:

  • (String)


948
949
950
951
952
953
954
955
# File 'lib/aws-sdk-partnercentralselling/types.rb', line 948

class EngagementCustomer < Struct.new(
  :company_name,
  :country_code,
  :industry,
  :website_url)
  SENSITIVE = [:country_code, :website_url]
  include Aws::Structure
end