class Google::Apis::ContentV2_1::LiaInventorySettings
Attributes
inventory_verification_contact_email[RW]
The email of the contact for the inventory verification process. Corresponds to the JSON property `inventoryVerificationContactEmail` @return [String]
inventory_verification_contact_name[RW]
The name of the contact for the inventory verification process. Corresponds to the JSON property `inventoryVerificationContactName` @return [String]
inventory_verification_contact_status[RW]
The status of the verification contact. Acceptable values are: - “`active`” - “ `inactive`” - “`pending`” Corresponds to the JSON property `inventoryVerificationContactStatus` @return [String]
status[RW]
The status of the inventory verification process. Acceptable values are: - “` active`” - “`inactive`” - “`pending`” Corresponds to the JSON property `status` @return [String]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/content_v2_1/classes.rb, line 3793 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File lib/google/apis/content_v2_1/classes.rb, line 3798 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