id = $id; } /** * @return int */ public function getId() { return $this->id; } /** * @param SchemaReference[] */ public function setReferences($references) { $this->references = $references; } /** * @return SchemaReference[] */ public function getReferences() { return $this->references; } /** * @param string */ public function setSchema($schema) { $this->schema = $schema; } /** * @return string */ public function getSchema() { return $this->schema; } /** * @param string */ public function setSchemaType($schemaType) { $this->schemaType = $schemaType; } /** * @return string */ public function getSchemaType() { return $this->schemaType; } /** * @param string */ public function setSubject($subject) { $this->subject = $subject; } /** * @return string */ public function getSubject() { return $this->subject; } /** * @param int */ public function setVersion($version) { $this->version = $version; } /** * @return int */ public function getVersion() { return $this->version; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(SchemaVersion::class, 'Google_Service_ManagedKafka_SchemaVersion');