extension-base/src/main/java/com/azure/autorest/extension/base/model/codemodel/StringSchema.java [25:83]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        super();
    }

    /**
     * Gets the maximum length of the string.
     *
     * @return The maximum length of the string.
     */
    public double getMaxLength() {
        return maxLength;
    }

    /**
     * Sets the maximum length of the string.
     *
     * @param maxLength The maximum length of the string.
     */
    public void setMaxLength(double maxLength) {
        this.maxLength = maxLength;
    }

    /**
     * Gets the minimum length of the string.
     *
     * @return The minimum length of the string.
     */
    public double getMinLength() {
        return minLength;
    }

    /**
     * Sets the minimum length of the string.
     *
     * @param minLength The minimum length of the string.
     */
    public void setMinLength(double minLength) {
        this.minLength = minLength;
    }

    /**
     * Gets a regular expression that the string must be validated against.
     *
     * @return A regular expression that the string must be validated against.
     */
    public String getPattern() {
        return pattern;
    }

    /**
     * Sets a regular expression that the string must be validated against.
     *
     * @param pattern A regular expression that the string must be validated against.
     */
    public void setPattern(String pattern) {
        this.pattern = pattern;
    }

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



extension-base/src/main/java/com/azure/autorest/extension/base/model/codemodel/UriSchema.java [25:83]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        super();
    }

    /**
     * Get the maximum length of the URI.
     *
     * @return The maximum length of the URI.
     */
    public double getMaxLength() {
        return maxLength;
    }

    /**
     * Set the maximum length of the URI.
     *
     * @param maxLength The maximum length of the URI.
     */
    public void setMaxLength(double maxLength) {
        this.maxLength = maxLength;
    }

    /**
     * Get the minimum length of the URI.
     *
     * @return The minimum length of the URI.
     */
    public double getMinLength() {
        return minLength;
    }

    /**
     * Set the minimum length of the URI.
     *
     * @param minLength The minimum length of the URI.
     */
    public void setMinLength(double minLength) {
        this.minLength = minLength;
    }

    /**
     * Get a regular expression that the URI must be validated against.
     *
     * @return A regular expression that the URI must be validated against.
     */
    public String getPattern() {
        return pattern;
    }

    /**
     * Set a regular expression that the URI must be validated against.
     *
     * @param pattern A regular expression that the URI must be validated against.
     */
    public void setPattern(String pattern) {
        this.pattern = pattern;
    }

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



