From 5ee1c2dfd5f21bddab3bbcd1d1d2d65bb17abe21 Mon Sep 17 00:00:00 2001 From: DmitryZagorulko Date: Wed, 16 Jan 2019 16:20:26 +0300 Subject: [PATCH] improve channels request struct --- v1/types.go | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/v1/types.go b/v1/types.go index 0e48d75..e8710f7 100644 --- a/v1/types.go +++ b/v1/types.go @@ -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"` + Types []string `url:"types"` + Active bool `url:"active"` + Since time.Time `url:"since"` + Until time.Time `url:"until"` + TransportID uint64 `url:"transport_id"` + Sort string `url:"sort"` + Limit int `url:"limit"` } // User struct