com.paypal.api.payments.WebProfileList Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of rest-api-sdk Show documentation
Show all versions of rest-api-sdk Show documentation
PayPal SDK for integrating with the REST APIs
// Generated by delombok at Wed Oct 12 18:15:55 CDT 2016
package com.paypal.api.payments;
import java.util.ArrayList;
import java.util.List;
public class WebProfileList extends ArrayList {
/**
*/
private static final long serialVersionUID = 1L;
private List webProfiles = null;
/**
* Default Constructor
*/
public WebProfileList() {
webProfiles = new ArrayList();
}
@java.lang.SuppressWarnings("all")
public List getWebProfiles() {
return this.webProfiles;
}
@java.lang.SuppressWarnings("all")
public WebProfileList setWebProfiles(final List webProfiles) {
this.webProfiles = webProfiles;
return this;
}
@java.lang.Override
@java.lang.SuppressWarnings("all")
public boolean equals(final java.lang.Object o) {
if (o == this) return true;
if (!(o instanceof WebProfileList)) return false;
final WebProfileList other = (WebProfileList) o;
if (!other.canEqual((java.lang.Object) this)) return false;
if (!super.equals(o)) return false;
final java.lang.Object this$webProfiles = this.getWebProfiles();
final java.lang.Object other$webProfiles = other.getWebProfiles();
if (this$webProfiles == null ? other$webProfiles != null : !this$webProfiles.equals(other$webProfiles)) return false;
return true;
}
@java.lang.SuppressWarnings("all")
protected boolean canEqual(final java.lang.Object other) {
return other instanceof WebProfileList;
}
@java.lang.Override
@java.lang.SuppressWarnings("all")
public int hashCode() {
final int PRIME = 59;
int result = 1;
result = result * PRIME + super.hashCode();
final java.lang.Object $webProfiles = this.getWebProfiles();
result = result * PRIME + ($webProfiles == null ? 43 : $webProfiles.hashCode());
return result;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy