extension-base/src/main/java/com/azure/autorest/extension/base/model/codemodel/Schema.java [156:256]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    public String getUid() {
        return uid;
    }

    /**
     * Sets the UID of the schema. (Required)
     *
     * @param uid The UID of the schema.
     */
    public void setUid(String uid) {
        this.uid = uid;
    }

    /**
     * Gets the key of the schema. (Required)
     *
     * @return The key of the schema.
     */
    public String get$key() {
        return $key;
    }

    /**
     * Sets the key of the schema. (Required)
     *
     * @param $key The key of the schema.
     */
    public void set$key(String $key) {
        this.$key = $key;
    }

    /**
     * Gets the description of the schema. (Required)
     *
     * @return The description of the schema.
     */
    public String getDescription() {
        return description;
    }

    /**
     * Sets the description of the schema. (Required)
     *
     * @param description The description of the schema.
     */
    public void setDescription(String description) {
        this.description = description;
    }

    /**
     * Gets the API versions that this applies to. Undefined means all versions.
     *
     * @return The API versions that this applies to. Undefined means all versions.
     */
    public List<ApiVersion> getApiVersions() {
        return apiVersions;
    }

    /**
     * Sets the API versions that this applies to. Undefined means all versions.
     *
     * @param apiVersions The API versions that this applies to. Undefined means all versions.
     */
    public void setApiVersions(List<ApiVersion> apiVersions) {
        this.apiVersions = apiVersions;
    }

    /**
     * Gets the deprecation information for the schema.
     *
     * @return The deprecation information for the schema.
     */
    public Deprecation getDeprecated() {
        return deprecated;
    }

    /**
     * Sets the deprecation information for the schema.
     *
     * @param deprecated The deprecation information for the schema.
     */
    public void setDeprecated(Deprecation deprecated) {
        this.deprecated = deprecated;
    }

    /**
     * Gets a reference to external documentation.
     *
     * @return A reference to external documentation.
     */
    public ExternalDocumentation getExternalDocs() {
        return externalDocs;
    }

    /**
     * Sets a reference to external documentation.
     *
     * @param externalDocs A reference to external documentation.
     */
    public void setExternalDocs(ExternalDocumentation externalDocs) {
        this.externalDocs = externalDocs;
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



extension-base/src/main/java/com/azure/autorest/extension/base/model/codemodel/Value.java [58:158]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    public String getUid() {
        return uid;
    }

    /**
     * Sets the unique identifier of the value. (Required)
     *
     * @param uid The unique identifier of the value.
     */
    public void setUid(String uid) {
        this.uid = uid;
    }

    /**
     * Gets the key of the value. (Required)
     *
     * @return The key of the value.
     */
    public String get$key() {
        return $key;
    }

    /**
     * Sets the key of the value. (Required)
     *
     * @param $key The key of the value.
     */
    public void set$key(String $key) {
        this.$key = $key;
    }

    /**
     * Gets the description of the value. (Required)
     *
     * @return The description of the value.
     */
    public String getDescription() {
        return description;
    }

    /**
     * Sets the description of the value. (Required)
     *
     * @param description The description of the value.
     */
    public void setDescription(String description) {
        this.description = description;
    }

    /**
     * Gets the API versions that this applies to. Undefined means all versions.
     *
     * @return The API versions that this applies to. Undefined means all versions.
     */
    public List<ApiVersion> getApiVersions() {
        return apiVersions;
    }

    /**
     * Sets the API versions that this applies to. Undefined means all versions.
     *
     * @param apiVersions The API versions that this applies to. Undefined means all versions.
     */
    public void setApiVersions(List<ApiVersion> apiVersions) {
        this.apiVersions = apiVersions;
    }

    /**
     * Gets the deprecation information for the value.
     *
     * @return The deprecation information for the value.
     */
    public Deprecation getDeprecated() {
        return deprecated;
    }

    /**
     * Sets the deprecation information for the value.
     *
     * @param deprecated The deprecation information for the value.
     */
    public void setDeprecated(Deprecation deprecated) {
        this.deprecated = deprecated;
    }

    /**
     * Gets a reference to external documentation.
     *
     * @return A reference to external documentation.
     */
    public ExternalDocumentation getExternalDocs() {
        return externalDocs;
    }

    /**
     * Sets a reference to external documentation.
     *
     * @param externalDocs A reference to external documentation.
     */
    public void setExternalDocs(ExternalDocumentation externalDocs) {
        this.externalDocs = externalDocs;
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



