markupAmount = $markupAmount; } /** * @return string */ public function getMarkupAmount() { return $this->markupAmount; } /** * Required. The markup type of the partner revenue model. This field must be * set to `PARTNER_REVENUE_MODEL_MARKUP_TYPE_TOTAL_MEDIA_COST_MARKUP` for * Demand Gen line items. * * Accepted values: PARTNER_REVENUE_MODEL_MARKUP_TYPE_UNSPECIFIED, * PARTNER_REVENUE_MODEL_MARKUP_TYPE_CPM, * PARTNER_REVENUE_MODEL_MARKUP_TYPE_MEDIA_COST_MARKUP, * PARTNER_REVENUE_MODEL_MARKUP_TYPE_TOTAL_MEDIA_COST_MARKUP * * @param self::MARKUP_TYPE_* $markupType */ public function setMarkupType($markupType) { $this->markupType = $markupType; } /** * @return self::MARKUP_TYPE_* */ public function getMarkupType() { return $this->markupType; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(PartnerRevenueModel::class, 'Google_Service_DisplayVideo_PartnerRevenueModel');