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

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

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

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

import java.util.Arrays;

public class FundingSourcesListingResponse extends Response {

    public BasicFundingSource[] Response;

    @Override
    public int hashCode() {
        final int prime = 31;
        int result = super.hashCode();
        result = prime * result + Arrays.hashCode(Response);
        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;
        FundingSourcesListingResponse other = (FundingSourcesListingResponse) obj;
        if (!Arrays.equals(Response, other.Response))
            return false;
        return true;
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy