All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.stripe.model.oauth.DeauthorizedAccount Maven / Gradle / Ivy

There is a newer version: 28.2.0
Show newest version
// Generated by delombok at Tue Jun 18 17:32:52 PDT 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