public boolean equals()

in extension-base/src/main/java/com/azure/autorest/extension/base/model/codemodel/Info.java [173:187]


    public boolean equals(Object other) {
        if (other == this) {
            return true;
        }

        if (!(other instanceof Info)) {
            return false;
        }

        Info rhs = ((Info) other);
        return Objects.equals(title, rhs.title) && Objects.equals(description, rhs.description)
            && Objects.equals(termsOfService, rhs.termsOfService) && Objects.equals(contact, rhs.contact)
            && Objects.equals(license, rhs.license) && Objects.equals(externalDocs, rhs.externalDocs)
            && Objects.equals(extensions, rhs.extensions);
    }