com.stripe.model.oauth.DeauthorizedAccount Maven / Gradle / Ivy
// Generated by delombok at Sat Feb 16 18:44:44 CET 2019
package com.stripe.model.oauth;
import com.stripe.model.StripeObject;
public class DeauthorizedAccount extends StripeObject {
String stripeUserId;
@java.lang.SuppressWarnings("all")
@lombok.Generated
public String getStripeUserId() {
return this.stripeUserId;
}
@java.lang.SuppressWarnings("all")
@lombok.Generated
public void setStripeUserId(final String stripeUserId) {
this.stripeUserId = stripeUserId;
}
@java.lang.Override
@java.lang.SuppressWarnings("all")
@lombok.Generated
public boolean equals(final java.lang.Object o) {
if (o == this) return true;
if (!(o instanceof DeauthorizedAccount)) return false;
final DeauthorizedAccount other = (DeauthorizedAccount) o;
if (!other.canEqual((java.lang.Object) this)) return false;
final java.lang.Object this$stripeUserId = this.getStripeUserId();
final java.lang.Object other$stripeUserId = other.getStripeUserId();
if (this$stripeUserId == null ? other$stripeUserId != null : !this$stripeUserId.equals(other$stripeUserId)) return false;
return true;
}
@java.lang.SuppressWarnings("all")
@lombok.Generated
protected boolean canEqual(final java.lang.Object other) {
return other instanceof DeauthorizedAccount;
}
@java.lang.Override
@java.lang.SuppressWarnings("all")
@lombok.Generated
public int hashCode() {
final int PRIME = 59;
int result = 1;
final java.lang.Object $stripeUserId = this.getStripeUserId();
result = result * PRIME + ($stripeUserId == null ? 43 : $stripeUserId.hashCode());
return result;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy