configStatus = $configStatus; } /** * @return self::CONFIG_STATUS_* */ public function getConfigStatus() { return $this->configStatus; } /** * The user-provided reason for pausing this guaranteed order. Must be UTF-8 * encoded with a maximum length of 100 bytes. Only applicable when * entity_status is set to `ENTITY_STATUS_PAUSED`. * * @param string $entityPauseReason */ public function setEntityPauseReason($entityPauseReason) { $this->entityPauseReason = $entityPauseReason; } /** * @return string */ public function getEntityPauseReason() { return $this->entityPauseReason; } /** * Whether or not the guaranteed order is servable. Acceptable values are * `ENTITY_STATUS_ACTIVE`, `ENTITY_STATUS_ARCHIVED`, and * `ENTITY_STATUS_PAUSED`. Default value is `ENTITY_STATUS_ACTIVE`. * * Accepted values: ENTITY_STATUS_UNSPECIFIED, ENTITY_STATUS_ACTIVE, * ENTITY_STATUS_ARCHIVED, ENTITY_STATUS_DRAFT, ENTITY_STATUS_PAUSED, * ENTITY_STATUS_SCHEDULED_FOR_DELETION * * @param self::ENTITY_STATUS_* $entityStatus */ public function setEntityStatus($entityStatus) { $this->entityStatus = $entityStatus; } /** * @return self::ENTITY_STATUS_* */ public function getEntityStatus() { return $this->entityStatus; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(GuaranteedOrderStatus::class, 'Google_Service_DisplayVideo_GuaranteedOrderStatus');