public boolean equals()

in src/main/java/com/amazonaws/partners/saasfactory/metering/common/BillingEvent.java [83:96]


    public boolean equals(Object o) {
        if (o == null) { return false; }

        if (o.getClass() != this.getClass()) { return false; }

        if (o == this) { return true; }

        BillingEvent event = (BillingEvent) o;

        return this.eventTime.equals(event.eventTime) &&
                this.tenantID.equals(event.tenantID) &&
                this.quantity.equals(event.quantity) &&
                this.nonce.equals(event.nonce);
    }