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

com.dwolla.java.sdk.responses.BasicAccountInformationResponse Maven / Gradle / Ivy

The newest version!
package com.dwolla.java.sdk.responses;

import com.dwolla.java.sdk.models.BasicAccountInformation;

public class BasicAccountInformationResponse extends Response {

    public BasicAccountInformation Response;

    @Override
    public int hashCode() {
        final int prime = 31;
        int result = super.hashCode();
        result = prime * result + ((Response == null) ? 0 : Response.hashCode());
        return result;
    }

    @Override
    public boolean equals(Object obj) {
        if (this == obj)
            return true;
        if (!super.equals(obj))
            return false;
        if (getClass() != obj.getClass())
            return false;
        BasicAccountInformationResponse other = (BasicAccountInformationResponse) obj;
        if (Response == null) {
            if (other.Response != null)
                return false;
        } else if (!Response.equals(other.Response))
            return false;
        return true;
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy