AdsApp.​VideoKeywordBidding

  • Provides access to the bidding fields for a video criterion, allowing control over maximum CPV (cost-per-view) bids.

  • Enables clearing the maximum CPV bid, allowing the video keyword to inherit its bid from the ad group level.

  • Offers methods to retrieve the current maximum CPV bid, bidding strategy source (deprecated), and bidding strategy type.

  • Includes the functionality to set a specific maximum CPV bid for the video keyword.

  • Note that changes to the maximum CPV bid may not affect actual bidding if the associated bidding strategy doesn't utilize CPV bids.

Provides access to a video criterion's bidding fields.

Methods:

MemberTypeDescription
clearCpv() void Clears the max CPV bid for this video keyword.
getCpv() double Returns the max CPV bid for this video keyword.
getStrategySource() String Returns the bidding strategy source of this video criterion.
getStrategyType() String Returns the bidding strategy type of this video criterion.
setCpv(cpv) void Sets the max CPV bid for this video keyword.

clearCpv()

Clears the max CPV bid for this video keyword. This will allow this video keyword to inherit its bid from the ad group level.

Please note that although this method will effectively clear the max CPV bid for this video keyword, the change may have no effect on actual bidding if this video keyword has a BiddingStrategy which does not involve max CPV bids.

Returns nothing.

getCpv()

Returns the max CPV bid for this video keyword.

Return values:

TypeDescription
double The max CPV bid for this video keyword.

getStrategySource()

Returns the bidding strategy source of this video criterion. Always returns 'CAMPAIGN'.

Return values:

TypeDescription
String The bidding strategy source of this video criterion.

getStrategyType()

Returns the bidding strategy type of this video criterion. This may either be a standard bidding strategy, or the type of a portfolio bidding strategy.

Return values:

TypeDescription
String The strategy type of this video criterion.

setCpv(cpv)

Sets the max CPV bid for this video keyword.

Please note that although this method will effectively set the max CPV bid for this video keyword, the change may have no effect on actual bidding if this video keyword has a BiddingStrategy which does not involve max CPV bids.

Returns nothing.

Arguments:

NameTypeDescription
cpv double The max CPV bid for this video keyword.