-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #8 from jpdev01/sub-account
sub account examples
- Loading branch information
Showing
2 changed files
with
263 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
/target/ | ||
/.idea/ | ||
src/main/java/io/github/jpdev/asaassdk/doc/ | ||
src/main/java/io/github/jpdev/asaassdk/doc/Secret.java |
262 changes: 262 additions & 0 deletions
262
src/main/java/io/github/jpdev/asaassdk/doc/Examples.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,262 @@ | ||
package io.github.jpdev.asaassdk.doc; | ||
|
||
import io.github.jpdev.asaassdk.http.Asaas; | ||
import io.github.jpdev.asaassdk.rest.accounts.Account; | ||
import io.github.jpdev.asaassdk.rest.accounts.AccountCreator; | ||
import io.github.jpdev.asaassdk.rest.action.ResourceSet; | ||
import io.github.jpdev.asaassdk.rest.bill.Bill; | ||
import io.github.jpdev.asaassdk.rest.commons.DeletedResource; | ||
import io.github.jpdev.asaassdk.rest.customeraccount.CustomerAccount; | ||
import io.github.jpdev.asaassdk.rest.finance.FinanceBalance; | ||
import io.github.jpdev.asaassdk.rest.financialtransaction.FinancialTransaction; | ||
import io.github.jpdev.asaassdk.rest.installment.Installment; | ||
import io.github.jpdev.asaassdk.rest.invoice.Invoice; | ||
import io.github.jpdev.asaassdk.rest.invoice.Taxes; | ||
import io.github.jpdev.asaassdk.rest.myaccount.accountnumber.AccountNumber; | ||
import io.github.jpdev.asaassdk.rest.myaccount.commercialinfo.CommercialInfo; | ||
import io.github.jpdev.asaassdk.rest.myaccount.fee.AccountFee; | ||
import io.github.jpdev.asaassdk.rest.myaccount.status.MyAccountStatus; | ||
import io.github.jpdev.asaassdk.rest.notification.NotificationConfig; | ||
import io.github.jpdev.asaassdk.rest.payment.Payment; | ||
import io.github.jpdev.asaassdk.rest.payment.enums.PaymentLinkChargeType; | ||
import io.github.jpdev.asaassdk.rest.payment.enums.PaymentStatus; | ||
import io.github.jpdev.asaassdk.rest.payment.identificationfield.PaymentIdentificationField; | ||
import io.github.jpdev.asaassdk.rest.payment.status.PaymentStatusData; | ||
import io.github.jpdev.asaassdk.rest.paymentlink.PaymentLink; | ||
import io.github.jpdev.asaassdk.rest.pix.addresskey.PixAddressKey; | ||
import io.github.jpdev.asaassdk.rest.pix.enums.PixAddressKeyStatus; | ||
import io.github.jpdev.asaassdk.rest.pix.enums.PixAddressKeyType; | ||
import io.github.jpdev.asaassdk.rest.pix.enums.PixTransactionType; | ||
import io.github.jpdev.asaassdk.rest.pix.qrcode.PixQrCode; | ||
import io.github.jpdev.asaassdk.rest.pix.qrcode.decode.PixDecodedQrCode; | ||
import io.github.jpdev.asaassdk.rest.pix.transaction.PixTransaction; | ||
import io.github.jpdev.asaassdk.rest.transfer.Transfer; | ||
import io.github.jpdev.asaassdk.rest.transfer.children.BankAccountSetting; | ||
import io.github.jpdev.asaassdk.rest.transfer.children.BankAccountType; | ||
import io.github.jpdev.asaassdk.rest.transfer.children.BankSetting; | ||
import io.github.jpdev.asaassdk.utils.BillingType; | ||
import io.github.jpdev.asaassdk.utils.Money; | ||
|
||
import java.math.BigDecimal; | ||
import java.util.Date; | ||
|
||
public class Examples { | ||
|
||
public static void main(String[] args) { | ||
Asaas.init(Secret.getAccessToken()); | ||
myStatus(); | ||
subAccount(); | ||
} | ||
|
||
private void pixTransaction() { | ||
ResourceSet<PixTransaction> pixTransactionResourceSet = PixTransaction.reader().read(); | ||
PixTransaction pixTransaction = PixTransaction.fetcher("bc515f74-d5c7-4bc2-93e5-3bafc0a9b15d").fetch(); | ||
PixTransaction cancelledPixTransaction = PixTransaction.canceller("35363f6e-93e2-11ec-b9d9-96f4053b1bd4").create(); | ||
ResourceSet<PixTransaction> pixTransactionDebitResourceSet = PixTransaction.reader() | ||
.setType(PixTransactionType.DEBIT) | ||
.read(); | ||
} | ||
|
||
private void pixAddressKey() { | ||
ResourceSet<PixAddressKey> pixAddressKeyResourceSet = PixAddressKey.reader() | ||
.setStatus(PixAddressKeyStatus.ACTIVE) | ||
.setLimit(1) | ||
.read(); | ||
PixAddressKey.creator().setType(PixAddressKeyType.EVP).create(); | ||
PixAddressKey.reader().read(); | ||
} | ||
|
||
private void decodePixQrCode() { | ||
PixDecodedQrCode decodedQrCode = PixDecodedQrCode.decoder() | ||
.setPayload("payload") | ||
.create(); | ||
} | ||
|
||
private void transfer() { | ||
ResourceSet<Transfer> transferList = Transfer.reader().read(); | ||
Transfer transfer = Transfer.pixAddressKeyCreator() | ||
.setPixAddressKey("09414368965") | ||
.setValue(Money.create(0.01)) | ||
.setDescription("teste") | ||
.setPixAddressKeyType(PixAddressKeyType.CPF) | ||
.create(); | ||
System.out.println(transfer.getValue().toString()); | ||
|
||
Date birthDate = new Date(); | ||
BankAccountSetting bankAccountSetting = new BankAccountSetting() | ||
.setBank( | ||
new BankSetting().setCode("085") | ||
) | ||
.setAccountName("Paulo") | ||
.setOwnerName("Paulo") | ||
.setOwnerBirthDate(new Date()) | ||
.setCpfCnpj("06928316000124") | ||
.setAgency("0108") | ||
.setAccount("10895") | ||
.setAccountDigit("5") | ||
.setBankAccountType(BankAccountType.CONTA_CORRENTE); | ||
Transfer pixManualTransfer = Transfer.pixManualCreator() | ||
.setBankAccount(bankAccountSetting) | ||
.setValue(Money.create(new BigDecimal(1.01))) | ||
.create(); | ||
|
||
System.out.println(pixManualTransfer.getValue().toString()); | ||
|
||
Transfer ted = Transfer.tedCreator() | ||
.setBankAccount(bankAccountSetting) | ||
.setValue(Money.create(new BigDecimal(1.01))) | ||
.create(); | ||
} | ||
|
||
private void bill() { | ||
Bill bill = Bill.creator() | ||
.setIdentificationField("25794150099003551916515000211407100000000000000") | ||
.create(); | ||
} | ||
|
||
private void pixStaticQrCode() { | ||
PixQrCode qrCode = PixQrCode | ||
.creator() | ||
.setAddressKey(PixAddressKey.reader().read().getData().get(0).key) | ||
.setDescription("teste") | ||
.setValue(Money.create(0.01)) | ||
.create(); | ||
System.out.printf(qrCode.payload); | ||
} | ||
|
||
private void payment() { | ||
Payment payment = Payment.creator() | ||
.setCustomer("cus_000072683114") | ||
.setBillingType(BillingType.PIX) | ||
.setDueDate(new Date()) | ||
.setInstallmentCount(2) | ||
.setInstallmentValue(Money.create(50)) | ||
.setDescription("Teste") | ||
.create(); | ||
|
||
ResourceSet<Payment> paymentResourceSet = Payment.reader() | ||
.setStatus(PaymentStatus.RECEIVED) | ||
.setStartPaymentDate(new Date()) | ||
.setFinishDueDate(new Date()) | ||
.read(); | ||
|
||
DeletedResource paymentDeleted = Payment.deleter(payment.getId()).delete(); | ||
payment = Payment.restorer(payment.getId()).create(); | ||
|
||
PaymentStatusData paymentStatusData = Payment.statusFetcher("pay_9087711026766517").fetch(); | ||
PaymentIdentificationField linhaDigitavel = Payment.identificationFieldFetcher("pay_9087711026766517").fetch(); | ||
} | ||
|
||
private void customerAccount() { | ||
CustomerAccount.fetcher("cus_000072683044").fetch(); | ||
CustomerAccount customerAccount = CustomerAccount.creator() | ||
.setName("criado via API") | ||
.setCpfCnpj("10030823005") | ||
.create(); | ||
} | ||
|
||
private void notification() { | ||
ResourceSet<NotificationConfig> notificationConfigList = NotificationConfig.customerAccountReader("cus_000072683044").read(); | ||
NotificationConfig.updater(notificationConfigList.getData().get(0).getId()).setEnabled(false).update(); | ||
} | ||
|
||
private void paymentLink() { | ||
PaymentLink link = PaymentLink.fetcher("725104409743").fetch(); | ||
ResourceSet<PaymentLink> paymentLinkResourceSet = PaymentLink | ||
.reader() | ||
.read(); | ||
DeletedResource deletedPaymentLink = PaymentLink | ||
.deleter("725104409743") | ||
.delete(); | ||
|
||
PaymentLink paymentLink = PaymentLink.creator() | ||
.setName("name") | ||
.setBillingType(BillingType.PIX) | ||
.setChargeType(PaymentLinkChargeType.INSTALLMENT) | ||
.setEndDate(new Date()) | ||
.setDueDateLimitDays(10) | ||
.setMaxInstallmentCount(2) | ||
.create(); | ||
|
||
PaymentLink updated = PaymentLink.updater(paymentLink.getId()) | ||
.setName("name") | ||
.setBillingType(BillingType.PIX) | ||
.setChargeType(PaymentLinkChargeType.INSTALLMENT) | ||
.setEndDate(new Date()) | ||
.setDueDateLimitDays(10) | ||
.setMaxInstallmentCount(2) | ||
.update(); | ||
} | ||
|
||
private void financialTransaction() { | ||
ResourceSet<FinancialTransaction> financialTransactionResourceSet = FinancialTransaction | ||
.reader() | ||
.setTransferId("transferId") | ||
.read(); | ||
} | ||
|
||
private void invoice() { | ||
Invoice invoice = Invoice.creator() | ||
.setServiceDescription("Nota fiscal da Fatura 101940. Descrição dos Serviços: ANÁLISE E DESENVOLVIMENTO DE SISTEMAS") | ||
.setObservations("Mensal referente aos trabalhos de Junho.") | ||
.setValue(Money.create(300)) | ||
.setDeductions(Money.create(2)) | ||
.setEffectiveDate(new Date()) | ||
.setMunicipalServiceName("Análise e Desenvolvimento de Sistemas") | ||
.setTaxes( | ||
new Taxes() | ||
.setRetainIss(true) | ||
.setIss(Money.create(3)) | ||
.setCofins(Money.create(3)) | ||
.setCsll(Money.create(1)) | ||
.setInss(Money.create(3)) | ||
.setIr(Money.create(1.5)) | ||
.setPis(Money.create(0.65)) | ||
) | ||
.create(); | ||
} | ||
|
||
private void finance() { | ||
FinanceBalance financeBalance = FinanceBalance.fetcher().fetch(); | ||
} | ||
|
||
private void installment() { | ||
ResourceSet<Installment> installmentResourceSet = Installment.reader().read(); | ||
DeletedResource installmentDeleted = Installment.deleter(installmentResourceSet.getData().get(0).getId()).delete(); | ||
} | ||
|
||
private static void commercialInfo() { | ||
CommercialInfo commercialInfo = CommercialInfo.fetcher().fetch(); | ||
CommercialInfo updatedCommercialInfo = CommercialInfo.updater() | ||
.setSite("https://yourSite.com.br") | ||
.update(); | ||
} | ||
|
||
private static void accountNumber() { | ||
AccountNumber accountNumber = AccountNumber.fetcher().fetch(); | ||
} | ||
|
||
private static void fee() { | ||
AccountFee myFees = AccountFee.fetcher().fetch(); | ||
} | ||
|
||
private static void myStatus() { | ||
MyAccountStatus myAccountStatus = MyAccountStatus.fetcher().fetch(); | ||
System.out.println(myAccountStatus.getGeneral().toString()); | ||
} | ||
|
||
private static void subAccount() { | ||
Account account = Account.creator() | ||
.setName("Teste sub conta") | ||
.setBirthDate(new Date()) | ||
.setCompanyType("LIMITED") | ||
.setEmail("[email protected]") | ||
.setPostalCode("36572122") | ||
.setCpfCnpj("87.326.705/0001-81") | ||
.create(); | ||
System.out.println(account.getName()); | ||
|
||
Account fetched = Account.fetcher(account.id).fetch(); | ||
System.out.println(fetched.getEmail()); | ||
} | ||
} |