AI-generated Key Takeaways
-
The ProductItemIdBuilder is used to create ProductItemId objects.
-
The
build()method finalizes the ProductItemId and returns a ProductItemIdOperation. -
The
withBid(bid)method sets the bid for the product item id. -
The
withValue(value)method sets the value for the product item id.
Methods:
| Member | Type | Description |
|---|---|---|
AdsApp.ProductItemIdOperation
|
Builds the product item id. | |
AdsApp.ProductItemIdBuilder
|
Specifies the bid of the product item id. | |
AdsApp.ProductItemIdBuilder
|
Specifies the value of the product item id. |
build()
Builds the product item id. Returns a ProductItemIdOperation
that corresponds
to the creation of the ProductItemId
. Return values:
| Type | Description |
|---|---|
AdsApp.ProductItemIdOperation
|
The ProductItemIdOperation. |
withBid(bid)
Specifies the bid of the product item id. If this is unspecified, will
use the bid of the parent product group. Arguments:
| Name | Type | Description |
|---|---|---|
|
bid
|
double
|
The bid. |
Return values:
| Type | Description |
|---|---|
AdsApp.ProductItemIdBuilder
|
The ProductItemIdBuilder with the specified bid. |
withValue(value)
Specifies the value of the product item id. Arguments:
| Name | Type | Description |
|---|---|---|
|
value
|
String
|
The value. |
Return values:
| Type | Description |
|---|---|
AdsApp.ProductItemIdBuilder
|
The ProductItemIdBuilder with the specified value. |

