1
0
mirror of synced 2024-11-21 20:46:05 +03:00

Merge pull request #45 from DmitryZagorulko/master

improve channels request struct
This commit is contained in:
Alex Lushpai 2019-01-16 17:29:40 +03:00 committed by GitHub
commit aebb32c11f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -176,14 +176,14 @@ type ChannelListItem struct {
// Channels request type
type Channels struct {
ID int `json:"id,omitempty"`
Types []string `json:"types,omitempty"`
Active bool `json:"active,omitempty"`
Since time.Time `json:"since,omitempty"`
Until time.Time `json:"until,omitempty"`
TransportID uint64 `json:"transport_id,omitempty"`
Sort string `json:"sort,omitempty"`
Limit int `json:"limit,omitempty"`
ID int `url:"id" json:"id,omitempty"`
Types []string `url:"types" json:"types,omitempty"`
Active bool `url:"active" json:"active,omitempty"`
Since time.Time `url:"since" json:"since,omitempty"`
Until time.Time `url:"until" json:"until,omitempty"`
TransportID uint64 `url:"transport_id" json:"transport_id,omitempty"`
Sort string `url:"sort" json:"sort,omitempty"`
Limit int `url:"limit" json:"limit,omitempty"`
}
// User struct