com.coinbase.api.entity.RecurringPaymentsResponse Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of coinbase-java Show documentation
Show all versions of coinbase-java Show documentation
A first-party java wrapper around the Coinbase API
package com.coinbase.api.entity;
import java.util.List;
import com.coinbase.api.deserializer.RecurringPaymentsLifter;
import com.fasterxml.jackson.databind.annotation.JsonDeserialize;
public class RecurringPaymentsResponse extends Response {
/**
*
*/
private static final long serialVersionUID = 5547214480181926761L;
private List _recurringPayments;
public List getRecurringPayments() {
return _recurringPayments;
}
@JsonDeserialize(converter=RecurringPaymentsLifter.class)
public void setRecurringPayments(List recurringPayments) {
_recurringPayments = recurringPayments;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy