br.com.moip.api.OrderAPI Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of java-sdk Show documentation
Show all versions of java-sdk Show documentation
Java SDK for Moip v2 APIs
package br.com.moip.api;
import br.com.moip.Client;
import br.com.moip.request.OrderRequest;
import br.com.moip.resource.Order;
public class OrderAPI {
private final Client client;
public OrderAPI(final Client client) {
this.client = client;
}
public Order create(final OrderRequest order) {
Order createdOrder = client.post("/v2/orders", order, Order.class);
return createdOrder;
}
}