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

com.stripe.model.PaymentIntentSourceActionValueAuthorizeWithUrl Maven / Gradle / Ivy

// Generated by delombok at Wed Oct 31 12:31:58 PDT 2018
package com.stripe.model;

public final class PaymentIntentSourceActionValueAuthorizeWithUrl extends PaymentIntentSourceActionValue {
  String url;

  @java.lang.SuppressWarnings("all")
  @lombok.Generated
  public String getUrl() {
    return this.url;
  }

  @java.lang.SuppressWarnings("all")
  @lombok.Generated
  public void setUrl(final String url) {
    this.url = url;
  }

  @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 PaymentIntentSourceActionValueAuthorizeWithUrl)) return false;
    final PaymentIntentSourceActionValueAuthorizeWithUrl other = (PaymentIntentSourceActionValueAuthorizeWithUrl) o;
    if (!other.canEqual((java.lang.Object) this)) return false;
    final java.lang.Object this$url = this.getUrl();
    final java.lang.Object other$url = other.getUrl();
    if (this$url == null ? other$url != null : !this$url.equals(other$url)) return false;
    return true;
  }

  @java.lang.SuppressWarnings("all")
  @lombok.Generated
  protected boolean canEqual(final java.lang.Object other) {
    return other instanceof PaymentIntentSourceActionValueAuthorizeWithUrl;
  }

  @java.lang.Override
  @java.lang.SuppressWarnings("all")
  @lombok.Generated
  public int hashCode() {
    final int PRIME = 59;
    int result = 1;
    final java.lang.Object $url = this.getUrl();
    result = result * PRIME + ($url == null ? 43 : $url.hashCode());
    return result;
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy