availableEndTime = $availableEndTime; } /** * @return string */ public function getAvailableEndTime() { return $this->availableEndTime; } /** * Inventory availability dates. The start time will be truncated to seconds * during serving. Thus, a field specified as 3:23:34.456 (HH:mm:ss.SSS) will * be truncated to 3:23:34 when serving. * * @param string $availableStartTime */ public function setAvailableStartTime($availableStartTime) { $this->availableStartTime = $availableStartTime; } /** * @return string */ public function getAvailableStartTime() { return $this->availableStartTime; } /** * Creation time. * * @param string $createTime */ public function setCreateTime($createTime) { $this->createTime = $createTime; } /** * @return string */ public function getCreateTime() { return $this->createTime; } /** * Optional contact information for the creator of this product. * * @param ContactInformation[] $creatorContacts */ public function setCreatorContacts($creatorContacts) { $this->creatorContacts = $creatorContacts; } /** * @return ContactInformation[] */ public function getCreatorContacts() { return $this->creatorContacts; } /** * The display name for this product as set by the seller. * * @param string $displayName */ public function setDisplayName($displayName) { $this->displayName = $displayName; } /** * @return string */ public function getDisplayName() { return $this->displayName; } /** * If the creator has already signed off on the product, then the buyer can * finalize the deal by accepting the product as is. When copying to a * proposal, if any of the terms are changed, then auto_finalize is * automatically set to false. * * @param bool $hasCreatorSignedOff */ public function setHasCreatorSignedOff($hasCreatorSignedOff) { $this->hasCreatorSignedOff = $hasCreatorSignedOff; } /** * @return bool */ public function getHasCreatorSignedOff() { return $this->hasCreatorSignedOff; } /** * The unique ID for the product. * * @param string $productId */ public function setProductId($productId) { $this->productId = $productId; } /** * @return string */ public function getProductId() { return $this->productId; } /** * The revision number of the product (auto-assigned by Marketplace). * * @param string $productRevision */ public function setProductRevision($productRevision) { $this->productRevision = $productRevision; } /** * @return string */ public function getProductRevision() { return $this->productRevision; } /** * An ID which can be used by the Publisher Profile API to get more * information about the seller that created this product. * * @param string $publisherProfileId */ public function setPublisherProfileId($publisherProfileId) { $this->publisherProfileId = $publisherProfileId; } /** * @return string */ public function getPublisherProfileId() { return $this->publisherProfileId; } /** * Information about the seller that created this product. * * @param Seller $seller */ public function setSeller(Seller $seller) { $this->seller = $seller; } /** * @return Seller */ public function getSeller() { return $this->seller; } /** * The syndication product associated with the deal. * * Accepted values: SYNDICATION_PRODUCT_UNSPECIFIED, CONTENT, MOBILE, VIDEO, * GAMES * * @param self::SYNDICATION_PRODUCT_* $syndicationProduct */ public function setSyndicationProduct($syndicationProduct) { $this->syndicationProduct = $syndicationProduct; } /** * @return self::SYNDICATION_PRODUCT_* */ public function getSyndicationProduct() { return $this->syndicationProduct; } /** * Targeting that is shared between the buyer and the seller. Each targeting * criterion has a specified key and for each key there is a list of inclusion * value or exclusion values. * * @param TargetingCriteria[] $targetingCriterion */ public function setTargetingCriterion($targetingCriterion) { $this->targetingCriterion = $targetingCriterion; } /** * @return TargetingCriteria[] */ public function getTargetingCriterion() { return $this->targetingCriterion; } /** * The negotiable terms of the deal. * * @param DealTerms $terms */ public function setTerms(DealTerms $terms) { $this->terms = $terms; } /** * @return DealTerms */ public function getTerms() { return $this->terms; } /** * Time of last update. * * @param string $updateTime */ public function setUpdateTime($updateTime) { $this->updateTime = $updateTime; } /** * @return string */ public function getUpdateTime() { return $this->updateTime; } /** * The web-property code for the seller. This needs to be copied as is when * adding a new deal to a proposal. * * @param string $webPropertyCode */ public function setWebPropertyCode($webPropertyCode) { $this->webPropertyCode = $webPropertyCode; } /** * @return string */ public function getWebPropertyCode() { return $this->webPropertyCode; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(Product::class, 'Google_Service_AdExchangeBuyerII_Product');