additionalDetails = $additionalDetails; } /** * @return array[] */ public function getAdditionalDetails() { return $this->additionalDetails; } /** * @param array */ public function setDefault($default) { $this->default = $default; } /** * @return array */ public function getDefault() { return $this->default; } /** * @param string */ public function setDescription($description) { $this->description = $description; } /** * @return string */ public function getDescription() { return $this->description; } /** * @param array[] */ public function setEnum($enum) { $this->enum = $enum; } /** * @return array[] */ public function getEnum() { return $this->enum; } /** * @param string */ public function setFormat($format) { $this->format = $format; } /** * @return string */ public function getFormat() { return $this->format; } /** * @param JsonSchema */ public function setItems(JsonSchema $items) { $this->items = $items; } /** * @return JsonSchema */ public function getItems() { return $this->items; } /** * @param string */ public function setJdbcType($jdbcType) { $this->jdbcType = $jdbcType; } /** * @return string */ public function getJdbcType() { return $this->jdbcType; } /** * @param JsonSchema[] */ public function setProperties($properties) { $this->properties = $properties; } /** * @return JsonSchema[] */ public function getProperties() { return $this->properties; } /** * @param string[] */ public function setRequired($required) { $this->required = $required; } /** * @return string[] */ public function getRequired() { return $this->required; } /** * @param string[] */ public function setType($type) { $this->type = $type; } /** * @return string[] */ public function getType() { return $this->type; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(JsonSchema::class, 'Google_Service_Connectors_JsonSchema');