use of com.ingenico.connect.gateway.sdk.java.domain.payout.ApprovePayoutRequest in project connect-sdk-java by Ingenico-ePayments.
the class ApprovePayoutExample method example.
@SuppressWarnings("unused")
public void example() throws URISyntaxException, IOException {
Client client = getClient();
try {
ApprovePayoutRequest body = new ApprovePayoutRequest();
body.setDatePayout("20150102");
PayoutResponse response = client.merchant("merchantId").payouts().approve("payoutId", body);
} finally {
client.close();
}
}
Aggregations