Class: Aws::PartnerCentralSelling::Types::EngagementCustomer
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::PartnerCentralSelling::Types::EngagementCustomer
 
 
- Defined in:
 - gems/aws-sdk-partnercentralselling/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 =
 [:company_name, :website_url, :country_code]
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.
      1344 1345 1346 1347 1348 1349 1350 1351  | 
    
      # File 'gems/aws-sdk-partnercentralselling/lib/aws-sdk-partnercentralselling/types.rb', line 1344 class EngagementCustomer < Struct.new( :industry, :company_name, :website_url, :country_code) SENSITIVE = [:company_name, :website_url, :country_code] 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.
      1344 1345 1346 1347 1348 1349 1350 1351  | 
    
      # File 'gems/aws-sdk-partnercentralselling/lib/aws-sdk-partnercentralselling/types.rb', line 1344 class EngagementCustomer < Struct.new( :industry, :company_name, :website_url, :country_code) SENSITIVE = [:company_name, :website_url, :country_code] 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.
      1344 1345 1346 1347 1348 1349 1350 1351  | 
    
      # File 'gems/aws-sdk-partnercentralselling/lib/aws-sdk-partnercentralselling/types.rb', line 1344 class EngagementCustomer < Struct.new( :industry, :company_name, :website_url, :country_code) SENSITIVE = [:company_name, :website_url, :country_code] 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.
      1344 1345 1346 1347 1348 1349 1350 1351  | 
    
      # File 'gems/aws-sdk-partnercentralselling/lib/aws-sdk-partnercentralselling/types.rb', line 1344 class EngagementCustomer < Struct.new( :industry, :company_name, :website_url, :country_code) SENSITIVE = [:company_name, :website_url, :country_code] include Aws::Structure end  |