Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Contains the methods used to manage an asset group.
Method Name | Return Type | Description |
---|---|---|
enable | void | Enabless this asset group. |
getEntityType | string | Gets this entity's type. |
getId | string | Gets the ID that uniquely identifies this asset group. |
getName | string | Gets this asset group's name. |
getPerformanceMaxCampaign | Campaign | Gets this asset group's campaign. |
isEnabled | Boolean | Gets a Boolean value that indicates whether this asset group is enabled. |
isPaused | Boolean | Gets a Boolean value that indicates whether this asset group is paused. |
isRemoved | Boolean | Gets a Boolean value that indicates whether this asset group is removed. |
pause | void | Pauses this asset group. |
remove | void | Removes this asset group. |
setName(String name) | void | Sets the asset group's name. |
urls | AssetGroupUrls | Contains the methods used to manage this asset group's final URLs, tracking template, and custom parameters. |
Enables this asset group.
Type | Description |
---|---|
void | Returns nothing. |
Gets this entity's type.
Type | Description |
---|---|
string | This entity's type, which is AssetGroup. |
Gets the ID that uniquely identifies this asset group.
Type | Description |
---|---|
string | The ID that uniquely identifies this asset group. |
Gets this asset group's name.
Type | Description |
---|---|
string | The name of this asset group. |
Gets the campaign that this asset group belongs to.
Type | Description |
---|---|
Campaign | The campaign that this asset group belongs to. |
Gets a Boolean value that indicates whether this asset group is enabled.
Type | Description |
---|---|
Boolean | Is true if this asset group is enabled; otherwise, false. |
Gets a Boolean value that indicates whether this asset group is paused.
Type | Description |
---|---|
Boolean | Is true if this asset group is paused; otherwise, false. |
Gets a Boolean value that indicates whether this asset group is removed (deleted).
Type | Description |
---|---|
Boolean | Is true if this asset group is removed; otherwise, false. |
Pauses this asset group.
Type | Description |
---|---|
void | Returns nothing. |
Removes this asset group.
Type | Description |
---|---|
void | Returns nothing. |
Sets this asset group's name.
Name | Type | Description |
---|---|---|
name | string | The name of this asset group. The name may contain a maximum of 256 characters and must be unique amongst all asset groups in the campaign. |
Type | Description |
---|---|
void | Returns nothing. |
Contains the methods used to manage this asset group's final URLs, tracking template, and custom parameters.
Type | Description |
---|---|
AssetGroupUrls | The object used to manage this asset group's final URLs, tracking template, and custom parameters. |