File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -55,7 +55,7 @@ client = abacatepay.AbacatePay(api_key="<your-api-key>")
5555### Criar uma fatura
5656
5757``` python
58- from abacatepay.models import Product
58+ from abacatepay.products import Product
5959
6060client = abacatepay.AbacatePay(api_key = " <your-api-key>" )
6161
@@ -89,7 +89,7 @@ for billing in billings:
8989### Gerenciamento de clientes
9090
9191``` python
92- from abacatepay.models import Customer
92+ from abacatepay.customers import Customer
9393
9494customer = Customer(
9595 email = " customer@example.com" ,
Original file line number Diff line number Diff line change @@ -56,7 +56,7 @@ client = abacatepay.AbacatePay(api_key="<your-api-key>")
5656### Create a Billing
5757
5858``` python
59- from abacatepay.models import Product
59+ from abacatepay.products import Product
6060
6161client = abacatepay.AbacatePay(api_key = " <your-api-key>" )
6262
@@ -90,7 +90,7 @@ for billing in billings:
9090### Customer Management
9191
9292``` python
93- from abacatepay.models import Customer
93+ from abacatepay.customers import Customer
9494
9595customer = Customer(
9696 email = " customer@example.com" ,
You can’t perform that action at this time.
0 commit comments