Class: Google::Shopping::Merchant::Quota::V1::ProductLimit
- Inherits:
-
Object
- Object
- Google::Shopping::Merchant::Quota::V1::ProductLimit
- Extended by:
- Protobuf::MessageExts::ClassMethods
- Includes:
- Protobuf::MessageExts
- Defined in:
- proto_docs/google/shopping/merchant/quota/v1/accountlimits.rb
Overview
The limit for products.
Defined Under Namespace
Modules: Scope
Instance Attribute Summary collapse
-
#limit ⇒ ::Integer
Required.
-
#scope ⇒ ::Google::Shopping::Merchant::Quota::V1::ProductLimit::Scope
Required.
Instance Attribute Details
#limit ⇒ ::Integer
Returns Required. The maximum number of products that are allowed in the account in the given scope.
33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 |
# File 'proto_docs/google/shopping/merchant/quota/v1/accountlimits.rb', line 33 class ProductLimit include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # The scope of the limit. module Scope # Default value. Should not be used. SCOPE_UNSPECIFIED = 0 # Limit for products in non-EEA countries. ADS_NON_EEA = 1 # Limit for products in EEA countries. ADS_EEA = 2 end end |
#scope ⇒ ::Google::Shopping::Merchant::Quota::V1::ProductLimit::Scope
Returns Required. The scope of the product limit.
33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 |
# File 'proto_docs/google/shopping/merchant/quota/v1/accountlimits.rb', line 33 class ProductLimit include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # The scope of the limit. module Scope # Default value. Should not be used. SCOPE_UNSPECIFIED = 0 # Limit for products in non-EEA countries. ADS_NON_EEA = 1 # Limit for products in EEA countries. ADS_EEA = 2 end end |