From 5a73ef3c5ebcde7548a9b03af6eff274ab912d1e Mon Sep 17 00:00:00 2001 From: Roman Shakhov Date: Thu, 23 May 2019 13:45:06 +0300 Subject: [PATCH] Limits --- v1/types.go | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/v1/types.go b/v1/types.go index 8a8629b..c7f8947 100644 --- a/v1/types.go +++ b/v1/types.go @@ -90,6 +90,7 @@ type ( Role string `url:"role,omitempty"` Since string `url:"since,omitempty"` Until string `url:"until,omitempty"` + Limit int `url:"int,omitempty"` } ChannelsRequest struct { @@ -98,6 +99,7 @@ type ( Active uint8 `url:"active,omitempty"` Since string `url:"since,omitempty"` Until string `url:"until,omitempty"` + Limit int `url:"int,omitempty"` } UsersRequest struct { @@ -107,6 +109,7 @@ type ( Active uint8 `url:"active,omitempty"` Since string `url:"since,omitempty"` Until string `url:"until,omitempty"` + Limit int `url:"int,omitempty"` } CustomersRequest struct { @@ -114,6 +117,7 @@ type ( ExternalID string `url:"external_id,omitempty" json:"external_id"` Since string `url:"since,omitempty"` Until string `url:"until,omitempty"` + Limit int `url:"int,omitempty"` } ChatsRequest struct { @@ -122,6 +126,7 @@ type ( ChannelType string `url:"channel_type,omitempty" json:"channel_type"` Since string `url:"since,omitempty"` Until string `url:"until,omitempty"` + Limit int `url:"int,omitempty"` } MembersRequest struct { @@ -130,6 +135,7 @@ type ( State string `url:"state,omitempty"` Since string `url:"since,omitempty"` Until string `url:"until,omitempty"` + Limit int `url:"int,omitempty"` } DialogsRequest struct { @@ -141,6 +147,7 @@ type ( Active uint8 `url:"active,omitempty"` Since string `url:"since,omitempty"` Until string `url:"until,omitempty"` + Limit int `url:"int,omitempty"` } DialogAssignRequest struct { @@ -162,6 +169,7 @@ type ( Type string `url:"type,omitempty"` Since string `url:"since,omitempty"` Until string `url:"until,omitempty"` + Limit int `url:"int,omitempty"` } MessageSendRequest struct { @@ -191,6 +199,7 @@ type ( Name string `url:"name,omitempty"` Since string `url:"since,omitempty"` Until string `url:"until,omitempty"` + Limit int `url:"int,omitempty"` } CommandEditRequest struct {