-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.go
107 lines (99 loc) · 2.51 KB
/
main.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
package main
import (
"context"
"fmt"
"github.com/GabrielHCataldo/go-asaas/asaas"
"os"
)
var invoiceAsaas asaas.Invoice
func main() {
invoiceAsaas = asaas.NewInvoice(asaas.EnvSandbox, os.Getenv("ASAAS_ACCESS_TOKEN"))
scheduleInvoice()
authorizeInvoiceById()
cancelInvoiceById()
getInvoiceById()
getAllInvoices()
}
func scheduleInvoice() {
resp, err := invoiceAsaas.Schedule(context.TODO(), asaas.ScheduleInvoiceRequest{
Payment: "",
Installment: "",
Customer: "",
ServiceDescription: "",
Observations: "",
ExternalReference: "",
Value: 0,
Deductions: 0,
EffectiveDate: asaas.Date{},
MunicipalServiceId: "",
MunicipalServiceCode: "",
MunicipalServiceName: "",
UpdatePayment: false,
Taxes: asaas.InvoiceTaxesRequest{},
})
if err != nil {
fmt.Println("error:", err)
} else if resp.IsSuccess() {
fmt.Println("success:", resp)
} else {
fmt.Println("failure:", resp.Errors)
}
}
func authorizeInvoiceById() {
resp, err := invoiceAsaas.AuthorizeById(context.TODO(), "")
if err != nil {
fmt.Println("error:", err)
} else if resp.IsSuccess() {
fmt.Println("success:", resp)
} else if resp.IsNoContent() {
fmt.Println("no content:", resp.Errors)
} else {
fmt.Println("failure:", resp.Errors)
}
}
func cancelInvoiceById() {
resp, err := invoiceAsaas.CancelById(context.TODO(), "")
if err != nil {
fmt.Println("error:", err)
} else if resp.IsSuccess() {
fmt.Println("success:", resp)
} else if resp.IsNoContent() {
fmt.Println("no content:", resp.Errors)
} else {
fmt.Println("failure:", resp.Errors)
}
}
func getInvoiceById() {
resp, err := invoiceAsaas.GetById(context.TODO(), "")
if err != nil {
fmt.Println("error:", err)
} else if resp.IsSuccess() {
fmt.Println("success:", resp)
} else if resp.IsNoContent() {
fmt.Println("no content:", resp.Errors)
} else {
fmt.Println("failure:", resp.Errors)
}
}
func getAllInvoices() {
resp, err := invoiceAsaas.GetAll(context.TODO(), asaas.GetAllInvoicesRequest{
EffectiveDateGE: asaas.Date{},
EffectiveDateLE: asaas.Date{},
Payment: "",
Installment: "",
Customer: "",
ExternalReference: "",
Status: "",
Offset: 0,
Limit: 0,
})
if err != nil {
fmt.Println("error:", err)
} else if resp.IsSuccess() {
fmt.Println("success:", resp)
} else if resp.IsNoContent() {
fmt.Println("no content:", resp)
} else {
fmt.Println("no content:", resp)
}
}