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

br.com.moip.api.EscrowAPI Maven / Gradle / Ivy

There is a newer version: 4.7.6
Show newest version
package br.com.moip.api;

import br.com.moip.Client;
import br.com.moip.resource.Escrow;

public class EscrowAPI {
    private final Client client;

    public EscrowAPI(Client client) {
        this.client = client;
    }

    public Escrow release(String escrowId) {
        return client.post(String.format("/v2/escrows/%s/release", escrowId), null, Escrow.class);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy