extension-base/src/main/java/com/azure/autorest/extension/base/model/codemodel/Contact.java [34:62]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    public String getName() {
        return name;
    }

    /**
     * Sets the name of the contact.
     *
     * @param name The name of the contact.
     */
    public void setName(String name) {
        this.name = name;
    }

    /**
     * Gets the URL of the contact.
     *
     * @return The URL of the contact.
     */
    public String getUrl() {
        return url;
    }

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



extension-base/src/main/java/com/azure/autorest/extension/base/model/codemodel/License.java [33:61]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    public String getName() {
        return name;
    }

    /**
     * Sets the name of the license. (Required)
     *
     * @param name The name of the license.
     */
    public void setName(String name) {
        this.name = name;
    }

    /**
     * Gets the URL pointing to the full license text.
     *
     * @return The URL pointing to the full license text.
     */
    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;
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



