AI-generated Key Takeaways
- 
          
This represents a Google Ads account-level label.
 - 
          
It provides methods to retrieve associated accounts, its type, ID, name, and resource name.
 - 
          
You can remove or change the name of the account label.
 
Methods:
| Member | Type | Description | 
|---|---|---|
| accounts() | AdsManagerApp.ManagedAccountSelector | 
      Returns the selector of all accounts to which the account label is applied. | 
| getEntityType() | String | 
      Returns the type of this entity as a String, in this case,
"AccountLabel". | 
    
| getId() | String | 
      Returns the ID of the account label. | 
| getName() | String | 
      Returns the name of the account label. | 
| getResourceName() | String | 
      Returns the resource name of the account label. | 
| remove() | void | 
      Removes the account label. | 
| setName(name) | void | 
      Changes the name of the account label. | 
accounts()
  Returns the selector of all accounts to which the account label is applied.  Return values:
| Type | Description | 
|---|---|
AdsManagerApp.ManagedAccountSelector | 
      The selector of all accounts to which the account label is applied. | 
getEntityType()
  Returns the type of this entity as a String, in this case,
"AccountLabel".  Return values:
| Type | Description | 
|---|---|
String | 
      Type of this entity: "AccountLabel". | 
    
getId()
  Returns the ID of the account label.  Return values:
| Type | Description | 
|---|---|
String | 
      ID of the account label. | 
getName()
  Returns the name of the account label.  Return values:
| Type | Description | 
|---|---|
String | 
      Name of the account label. | 
getResourceName()
  Returns the resource name of the account label.  Return values:
| Type | Description | 
|---|---|
String | 
      Resource name of the account label. | 
remove()
  Removes the account label.  Returns nothing.
setName(name)
  Changes the name of the account label. The name must be unique, non-empty,
and may not be longer than 40 characters. Any leading or
trailing white spaces will be trimmed.  Returns nothing.
Arguments:
| Name | Type | Description | 
|---|---|---|
| name | String | 
      The new name. |