extension-base/src/main/java/com/azure/autorest/extension/base/model/codemodel/RequestParameterLocation.java [58:76]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        this.value = value;
    }

    @Override
    public String toString() {
        if ("uri".equals(this.value)) {
            return "host";
        } else {
            return this.value;
        }
    }

    /**
     * Gets the value of the parameter location.
     *
     * @return The value of the parameter location.
     */
    public String value() {
        return this.value;
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



extension-base/src/main/java/com/azure/autorest/extension/base/model/codemodel/SerializationStyle.java [78:96]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        this.value = value;
    }

    @Override
    public String toString() {
        if ("uri".equals(this.value)) {
            return "host";
        } else {
            return this.value;
        }
    }

    /**
     * Gets the value of the serialization style.
     *
     * @return The value of the serialization style.
     */
    public String value() {
        return this.value;
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



