in library/src/main/java/com/theguardian/bridget/thrift/User.java [1954:1970]
public boolean equals(filterSeenArticles_args that) {
if (that == null)
return false;
if (this == that)
return true;
boolean this_present_articleIds = true && this.isSetArticleIds();
boolean that_present_articleIds = true && that.isSetArticleIds();
if (this_present_articleIds || that_present_articleIds) {
if (!(this_present_articleIds && that_present_articleIds))
return false;
if (!this.articleIds.equals(that.articleIds))
return false;
}
return true;
}