-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcategories.go
85 lines (75 loc) · 2.53 KB
/
categories.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
package greenapi
// Account category presents methods for working with the account.
//
// https://green-api.com/en/docs/api/account/
func (c *GreenAPI) Account() AccountCategory {
return AccountCategory{GreenAPI: c}
}
// Sending category presents methods for sending different messages.
//
// https://green-api.com/en/docs/api/sending/
func (c *GreenAPI) Sending() SendingCategory {
return SendingCategory{GreenAPI: c}
}
// Receiving category presents methods for working with receiving events.
//
// https://green-api.com/en/docs/api/receiving/
func (c *GreenAPI) Receiving() ReceivingCategory {
return ReceivingCategory{GreenAPI: c}
}
// Groups category presents methods for working with group chats.
//
// https://green-api.com/en/docs/api/groups/
func (c *GreenAPI) Groups() GroupsCategory {
return GroupsCategory{GreenAPI: c}
}
// Status category presents methods for working with statuses.
//
// https://green-api.com/en/docs/api/statuses/
func (c *GreenAPI) Statuses() StatusesCategory {
return StatusesCategory{GreenAPI: c}
}
// Journals present methods for working with incoming and outgoing messages.
//
// https://green-api.com/en/docs/api/journals/
func (c *GreenAPI) Journals() JournalsCategory {
return JournalsCategory{GreenAPI: c}
}
// Queues category presents methods for working with a messages queue.
//
// https://green-api.com/en/docs/api/queues/
func (c *GreenAPI) Queues() QueuesCategory {
return QueuesCategory{GreenAPI: c}
}
// ReadMark category presents methods for working with chat read mark.
//
// https://green-api.com/en/docs/api/marks/
func (c *GreenAPI) ReadMark() ReadMarkCategory {
return ReadMarkCategory{GreenAPI: c}
}
// Service category presents different service methods.
//
// https://green-api.com/en/docs/api/service/
func (c *GreenAPI) Service() ServiceCategory {
return ServiceCategory{GreenAPI: c}
}
// Partner category presents exclusive methods for partners.
// The partnership scheme involves deeper integration with the service
// and working with a larger number of instances on your side:
//
// * Instance management via API
//
// * Postpaid billing system (starting from the second month of operation)
//
// * Daily billing (for created and not deleted instances)
//
// * Dedicated support line
//
// For questions regarding connection to the partnership scheme
// and additional conditions, please contact us via email
// at [email protected] or via chat on the website.
//
// https://green-api.com/en/docs/partners/
func (c *GreenAPIPartner) Partner() PartnerCategory {
return PartnerCategory{GreenAPIPartner: c}
}