jsonSchema = $jsonSchema; } /** * @return string */ public function getJsonSchema() { return $this->jsonSchema; } /** * Identifier. Resource name of the schema. Format: * projects//locations//extendedMetadataSchemas/ * * @param string $name */ public function setName($name) { $this->name = $name; } /** * @return string */ public function getName() { return $this->name; } /** * Output only. The version of the schema. New versions are required to be * backwards compatible. * * @param string $schemaVersion */ public function setSchemaVersion($schemaVersion) { $this->schemaVersion = $schemaVersion; } /** * @return string */ public function getSchemaVersion() { return $this->schemaVersion; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(ExtendedMetadataSchema::class, 'Google_Service_AppHub_ExtendedMetadataSchema');