REST Resource: accounts.limits

Resource: AccountLimit

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

JSON representation
{
  "name": string,

  // The following is a list of mutually exclusive fields. At most one of the
  // fields will be set in a response:
  "products": {
    object (ProductLimit)
  }
  // End of mutually exclusive fields.
}
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}

The type of the limit. The following is a list of mutually exclusive fields. At most one of the fields will be set in a response:
products

object (ProductLimit)

The limit for products.

End of mutually exclusive fields.

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.