extension-base/src/main/java/com/azure/autorest/extension/base/model/codemodel/ExternalDocumentation.java [51:83]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    public String getUrl() {
        return url;
    }

    /**
     * Sets the URL of the external documentation.
     *
     * @param url The URL of the external documentation.
     */
    public void setUrl(String url) {
        this.url = url;
    }

    /**
     * Gets the extensions of the external documentation.
     *
     * @return The extensions of the external documentation.
     */
    public DictionaryAny getExtensions() {
        return extensions;
    }

    /**
     * Sets the extensions of the external documentation.
     *
     * @param extensions The extensions of the external documentation.
     */
    public void setExtensions(DictionaryAny extensions) {
        this.extensions = extensions;
    }

    @Override
    public String toString() {
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



extension-base/src/main/java/com/azure/autorest/extension/base/model/codemodel/License.java [51:83]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    public String getUrl() {
        return url;
    }

    /**
     * Sets the URL pointing to the full license text.
     *
     * @param url The URL pointing to the full license text.
     */
    public void setUrl(String url) {
        this.url = url;
    }

    /**
     * Gets the extensions of the license.
     *
     * @return The extensions of the license.
     */
    public DictionaryAny getExtensions() {
        return extensions;
    }

    /**
     * Sets the extensions of the license.
     *
     * @param extensions The extensions of the license.
     */
    public void setExtensions(DictionaryAny extensions) {
        this.extensions = extensions;
    }

    @Override
    public String toString() {
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



