com.coinbase.api.deserializer.RecurringPaymentsLifter 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
The newest version!
package com.coinbase.api.deserializer;
import java.util.ArrayList;
import java.util.List;
import com.coinbase.api.entity.RecurringPayment;
import com.coinbase.api.entity.RecurringPaymentNode;
import com.fasterxml.jackson.databind.util.StdConverter;
public class RecurringPaymentsLifter extends StdConverter, List> {
public List convert(List nodes) {
ArrayList result = new ArrayList();
for (RecurringPaymentNode node : nodes) {
result.add(node.getRecurringPayment());
}
return result;
}
}