Class: Google::Apis::ContentV2::LiasettingsCustomBatchResponseEntry
- Inherits:
-
Object
- Object
- Google::Apis::ContentV2::LiasettingsCustomBatchResponseEntry
- 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
-
#batch_id ⇒ Fixnum
The ID of the request entry to which this entry responds.
-
#errors ⇒ Google::Apis::ContentV2::Errors
A list of errors returned by a failed batch entry.
-
#gmb_accounts ⇒ Google::Apis::ContentV2::GmbAccounts
The the list of accessible GMB accounts.
-
#kind ⇒ String
Identifies what kind of resource this is.
-
#lia_settings ⇒ Google::Apis::ContentV2::LiaSettings
Local Inventory ads (LIA) settings.
-
#pos_data_providers ⇒ Array<Google::Apis::ContentV2::PosDataProviders>
The list of POS data providers.
Instance Method Summary collapse
-
#initialize(**args) ⇒ LiasettingsCustomBatchResponseEntry
constructor
A new instance of LiasettingsCustomBatchResponseEntry.
-
#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) ⇒ LiasettingsCustomBatchResponseEntry
Returns a new instance of LiasettingsCustomBatchResponseEntry
3669 3670 3671 |
# File 'generated/google/apis/content_v2/classes.rb', line 3669 def initialize(**args) update!(**args) end |
Instance Attribute Details
#batch_id ⇒ Fixnum
The ID of the request entry to which this entry responds.
Corresponds to the JSON property batchId
3640 3641 3642 |
# File 'generated/google/apis/content_v2/classes.rb', line 3640 def batch_id @batch_id end |
#errors ⇒ Google::Apis::ContentV2::Errors
A list of errors returned by a failed batch entry.
Corresponds to the JSON property errors
3645 3646 3647 |
# File 'generated/google/apis/content_v2/classes.rb', line 3645 def errors @errors end |
#gmb_accounts ⇒ Google::Apis::ContentV2::GmbAccounts
The the list of accessible GMB accounts.
Corresponds to the JSON property gmbAccounts
3650 3651 3652 |
# File 'generated/google/apis/content_v2/classes.rb', line 3650 def gmb_accounts @gmb_accounts end |
#kind ⇒ String
Identifies what kind of resource this is. Value: the fixed string "content#
liasettingsCustomBatchResponseEntry".
Corresponds to the JSON property kind
3656 3657 3658 |
# File 'generated/google/apis/content_v2/classes.rb', line 3656 def kind @kind end |
#lia_settings ⇒ Google::Apis::ContentV2::LiaSettings
Local Inventory ads (LIA) settings. All methods except listposdataproviders
require the admin role.
Corresponds to the JSON property liaSettings
3662 3663 3664 |
# File 'generated/google/apis/content_v2/classes.rb', line 3662 def lia_settings @lia_settings end |
#pos_data_providers ⇒ Array<Google::Apis::ContentV2::PosDataProviders>
The list of POS data providers.
Corresponds to the JSON property posDataProviders
3667 3668 3669 |
# File 'generated/google/apis/content_v2/classes.rb', line 3667 def pos_data_providers @pos_data_providers end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
3674 3675 3676 3677 3678 3679 3680 3681 |
# File 'generated/google/apis/content_v2/classes.rb', line 3674 def update!(**args) @batch_id = args[:batch_id] if args.key?(:batch_id) @errors = args[:errors] if args.key?(:errors) @gmb_accounts = args[:gmb_accounts] if args.key?(:gmb_accounts) @kind = args[:kind] if args.key?(:kind) @lia_settings = args[:lia_settings] if args.key?(:lia_settings) @pos_data_providers = args[:pos_data_providers] if args.key?(:pos_data_providers) end |