in apis/cloudstack/src/main/java/org/jclouds/cloudstack/domain/UsageRecord.java [688:723]
public boolean equals(Object obj) {
if (this == obj) return true;
if (obj == null || getClass() != obj.getClass()) return false;
UsageRecord that = UsageRecord.class.cast(obj);
return Objects.equal(this.id, that.id)
&& Objects.equal(this.description, that.description)
&& Objects.equal(this.accountId, that.accountId)
&& Objects.equal(this.accountName, that.accountName)
&& Objects.equal(this.domainId, that.domainId)
&& Objects.equal(this.startDate, that.startDate)
&& Objects.equal(this.endDate, that.endDate)
&& Objects.equal(this.assignDate, that.assignDate)
&& Objects.equal(this.releaseDate, that.releaseDate)
&& Objects.equal(this.zoneId, that.zoneId)
&& Objects.equal(this.virtualMachineId, that.virtualMachineId)
&& Objects.equal(this.virtualMachineName, that.virtualMachineName)
&& Objects.equal(this.serviceOfferingId, that.serviceOfferingId)
&& Objects.equal(this.templateId, that.templateId)
&& Objects.equal(this.ipAddress, that.ipAddress)
&& Objects.equal(this.isSourceNAT, that.isSourceNAT)
&& Objects.equal(this.rawUsageHours, that.rawUsageHours)
&& Objects.equal(this.usage, that.usage)
&& Objects.equal(this.size, that.size)
&& Objects.equal(this.type, that.type)
&& Objects.equal(this.usageType, that.usageType)
&& Objects.equal(this.project, that.project)
&& Objects.equal(this.domain, that.domain)
&& Objects.equal(this.virtualSize, that.virtualSize)
&& Objects.equal(this.cpuNumber, that.cpuNumber)
&& Objects.equal(this.cpuSpeed, that.cpuSpeed)
&& Objects.equal(this.memory, that.memory)
&& Objects.equal(this.isSystem, that.isSystem)
&& Objects.equal(this.networkId, that.networkId)
&& Objects.equal(this.isDefault, that.isDefault)
&& Objects.equal(this.tags, that.tags);
}