Class: Google::Apis::Searchads360V0::GoogleAdsSearchads360V23ErrorsResourceCountDetails
- Inherits:
-
Object
- Object
- Google::Apis::Searchads360V0::GoogleAdsSearchads360V23ErrorsResourceCountDetails
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/searchads360_v0/classes.rb,
lib/google/apis/searchads360_v0/representations.rb,
lib/google/apis/searchads360_v0/representations.rb
Overview
Error details returned when an resource count limit was exceeded.
Instance Attribute Summary collapse
-
#enclosing_id ⇒ String
The ID of the resource whose limit was exceeded.
-
#enclosing_resource ⇒ String
The name of the resource ( etc.) whose limit was exceeded.
-
#existing_count ⇒ Fixnum
The count of existing entities.
-
#limit ⇒ Fixnum
The limit which was exceeded.
-
#limit_type ⇒ String
The resource limit type which was exceeded.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleAdsSearchads360V23ErrorsResourceCountDetails
constructor
A new instance of GoogleAdsSearchads360V23ErrorsResourceCountDetails.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleAdsSearchads360V23ErrorsResourceCountDetails
Returns a new instance of GoogleAdsSearchads360V23ErrorsResourceCountDetails.
10856 10857 10858 |
# File 'lib/google/apis/searchads360_v0/classes.rb', line 10856 def initialize(**args) update!(**args) end |
Instance Attribute Details
#enclosing_id ⇒ String
The ID of the resource whose limit was exceeded. External customer ID if the
limit is for a customer.
Corresponds to the JSON property enclosingId
10834 10835 10836 |
# File 'lib/google/apis/searchads360_v0/classes.rb', line 10834 def enclosing_id @enclosing_id end |
#enclosing_resource ⇒ String
The name of the resource ( etc.) whose limit was exceeded.
Corresponds to the JSON property enclosingResource
10839 10840 10841 |
# File 'lib/google/apis/searchads360_v0/classes.rb', line 10839 def enclosing_resource @enclosing_resource end |
#existing_count ⇒ Fixnum
The count of existing entities.
Corresponds to the JSON property existingCount
10844 10845 10846 |
# File 'lib/google/apis/searchads360_v0/classes.rb', line 10844 def existing_count @existing_count end |
#limit ⇒ Fixnum
The limit which was exceeded.
Corresponds to the JSON property limit
10849 10850 10851 |
# File 'lib/google/apis/searchads360_v0/classes.rb', line 10849 def limit @limit end |
#limit_type ⇒ String
The resource limit type which was exceeded.
Corresponds to the JSON property limitType
10854 10855 10856 |
# File 'lib/google/apis/searchads360_v0/classes.rb', line 10854 def limit_type @limit_type end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
10861 10862 10863 10864 10865 10866 10867 |
# File 'lib/google/apis/searchads360_v0/classes.rb', line 10861 def update!(**args) @enclosing_id = args[:enclosing_id] if args.key?(:enclosing_id) @enclosing_resource = args[:enclosing_resource] if args.key?(:enclosing_resource) @existing_count = args[:existing_count] if args.key?(:existing_count) @limit = args[:limit] if args.key?(:limit) @limit_type = args[:limit_type] if args.key?(:limit_type) end |