id = $id; } /** * @return string */ public function getId() { return $this->id; } /** * Identifies what kind of resource this is. Value: the fixed string * "dfareporting#creativeFieldValue". * * @param string $kind */ public function setKind($kind) { $this->kind = $kind; } /** * @return string */ public function getKind() { return $this->kind; } /** * Value of this creative field value. It needs to be less than 256 characters * in length and unique per creative field. * * @param string $value */ public function setValue($value) { $this->value = $value; } /** * @return string */ public function getValue() { return $this->value; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(CreativeFieldValue::class, 'Google_Service_Dfareporting_CreativeFieldValue');