You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Biblioteca de Java para Iugu.com (Java Library for Iugu.com)
Criando um Invoice (Creating a new Invoice)
IuguConfiguration iuguConfiguration = new IuguConfiguration("CLIENTTOKEN");
InvoiceResponse response;
try {
response = new InvoiceService(iuguConfiguration).create(new Invoice("[email protected]", new Date(), new Item("teste", 1, 100)));
// Retorna ID do Invoice criado (Returns the ID of the created invoice)
System.out.println(response.getId());
}
catch (IuguException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
Criando um pagamento (Creating a new Payment)
try {
IuguConfiguration iuguConfiguration = new IuguConfiguration("CLIENTTOKEN");
//token cartão
PaymentToken paymentToken = new PaymentToken();
paymentToken.setAccountId("xxxxx");
paymentToken.setPayableWith(PayableWith.CREDIT_CARD);
paymentToken.setTest(Boolean.TRUE);
paymentToken.setData(new Data("4111111111111111","123","Joao","Mateus","12","2019"));
PaymentTokenResponse paymentTokenResponse = new PaymentTokenService(iuguConfiguration).create(paymentToken);/
} catch (IuguException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}