Class: Google::Apis::ContentV2::LiaInventorySettings
- Inherits:
- 
      Object
      
        - Object
- Google::Apis::ContentV2::LiaInventorySettings
 
- Defined in:
- generated/google/apis/content_v2/classes.rb,
 generated/google/apis/content_v2/representations.rb,
 generated/google/apis/content_v2/representations.rb
Instance Attribute Summary collapse
- 
  
    
      #inventory_verification_contact_email  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The email of the contact for the inventory verification process. 
- 
  
    
      #inventory_verification_contact_name  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The name of the contact for the inventory verification process. 
- 
  
    
      #inventory_verification_contact_status  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The status of the verification contact. 
- 
  
    
      #status  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The status of the inventory verification process. 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ LiaInventorySettings 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of LiaInventorySettings. 
- 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    Update properties of this object. 
Methods included from Google::Apis::Core::JsonObjectSupport
Methods included from Google::Apis::Core::Hashable
Constructor Details
#initialize(**args) ⇒ LiaInventorySettings
Returns a new instance of LiaInventorySettings
| 2678 2679 2680 | # File 'generated/google/apis/content_v2/classes.rb', line 2678 def initialize(**args) update!(**args) end | 
Instance Attribute Details
#inventory_verification_contact_email ⇒ String
The email of the contact for the inventory verification process.
Corresponds to the JSON property inventoryVerificationContactEmail
| 2661 2662 2663 | # File 'generated/google/apis/content_v2/classes.rb', line 2661 def inventory_verification_contact_email @inventory_verification_contact_email end | 
#inventory_verification_contact_name ⇒ String
The name of the contact for the inventory verification process.
Corresponds to the JSON property inventoryVerificationContactName
| 2666 2667 2668 | # File 'generated/google/apis/content_v2/classes.rb', line 2666 def inventory_verification_contact_name @inventory_verification_contact_name end | 
#inventory_verification_contact_status ⇒ String
The status of the verification contact.
Corresponds to the JSON property inventoryVerificationContactStatus
| 2671 2672 2673 | # File 'generated/google/apis/content_v2/classes.rb', line 2671 def inventory_verification_contact_status @inventory_verification_contact_status end | 
#status ⇒ String
The status of the inventory verification process.
Corresponds to the JSON property status
| 2676 2677 2678 | # File 'generated/google/apis/content_v2/classes.rb', line 2676 def status @status end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 2683 2684 2685 2686 2687 2688 | # File 'generated/google/apis/content_v2/classes.rb', line 2683 def update!(**args) @inventory_verification_contact_email = args[:inventory_verification_contact_email] if args.key?(:inventory_verification_contact_email) @inventory_verification_contact_name = args[:inventory_verification_contact_name] if args.key?(:inventory_verification_contact_name) @inventory_verification_contact_status = args[:inventory_verification_contact_status] if args.key?(:inventory_verification_contact_status) @status = args[:status] if args.key?(:status) end |