use of com.google.api.ads.adwords.axis.v201809.cm.ShoppingProductChannelExclusivity in project googleads-java-lib by googleads.
the class ProductDimensions method createChannelExclusivity.
/**
* Creates a new ProductChannelExclusivity.
*
* @param channelExclusivity may be null if creating an "other" dimension
*/
public static ProductChannelExclusivity createChannelExclusivity(@Nullable ShoppingProductChannelExclusivity channelExclusivity) {
ProductChannelExclusivity productChannelExclusivity = new ProductChannelExclusivity();
productChannelExclusivity.setChannelExclusivity(channelExclusivity);
return productChannelExclusivity;
}
Aggregations