Class: Google::Apis::ContentV2_1::LiaInventorySettings
- Inherits:
-
Object
- Object
- Google::Apis::ContentV2_1::LiaInventorySettings
- Includes:
- Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
- Defined in:
- lib/google/apis/content_v2_1/classes.rb,
lib/google/apis/content_v2_1/representations.rb,
lib/google/apis/content_v2_1/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.
Constructor Details
#initialize(**args) ⇒ LiaInventorySettings
Returns a new instance of LiaInventorySettings.
5695 5696 5697 |
# File 'lib/google/apis/content_v2_1/classes.rb', line 5695 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
5676 5677 5678 |
# File 'lib/google/apis/content_v2_1/classes.rb', line 5676 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
5681 5682 5683 |
# File 'lib/google/apis/content_v2_1/classes.rb', line 5681 def inventory_verification_contact_name @inventory_verification_contact_name end |
#inventory_verification_contact_status ⇒ String
The status of the verification contact. Acceptable values are: - "active
" - "
inactive
" - "pending
"
Corresponds to the JSON property inventoryVerificationContactStatus
5687 5688 5689 |
# File 'lib/google/apis/content_v2_1/classes.rb', line 5687 def inventory_verification_contact_status @inventory_verification_contact_status end |
#status ⇒ String
The status of the inventory verification process. Acceptable values are: - "
active
" - "inactive
" - "pending
"
Corresponds to the JSON property status
5693 5694 5695 |
# File 'lib/google/apis/content_v2_1/classes.rb', line 5693 def status @status end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
5700 5701 5702 5703 5704 5705 |
# File 'lib/google/apis/content_v2_1/classes.rb', line 5700 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 |