REST Resource: accounts.limits

Resource: AccountLimit

A limit of a certain type that is applied to an account.

JSON representation
{
  "name": string,

  // Union field type can be only one of the following:
  "products": {
    object (ProductLimit)
  }
  // End of list of possible types for union field type.
}
Fields
name

string

Identifier. The limit part of the name will be a combination of the type and the scope. For example: accounts/123/limits/products~ADS_NON_EEA

Format: accounts/{account}/limits/{limit}

Union field type. The type of the limit. type can be only one of the following:
products

object (ProductLimit)

The limit for products.

ProductLimit

The limit for products.

JSON representation
{
  "scope": enum (Scope),
  "limit": string
}
Fields
scope

enum (Scope)

Required. The scope of the product limit.

limit

string (int64 format)

Required. The maximum number of products that are allowed in the account in the given scope.

Scope

The scope of the limit.

Enums
SCOPE_UNSPECIFIED Default value. Should not be used.
ADS_NON_EEA Limit for products in non-EEA countries.
ADS_EEA Limit for products in EEA countries.

Methods

get

Retrieves an account limit.

list

Lists the limits of an account.