From 0906dfaa9b1bcebfb8174a7a26b4516732b9dc85 Mon Sep 17 00:00:00 2001 From: Alex Lushpai Date: Mon, 10 Sep 2018 15:31:37 +0300 Subject: [PATCH] add channel name --- v1/types.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/v1/types.go b/v1/types.go index 69fba9a..ed7c385 100644 --- a/v1/types.go +++ b/v1/types.go @@ -183,6 +183,7 @@ type ( ChannelResponseItem struct { ID uint64 `json:"id"` Type string `json:"type"` + Name string `json:"name"` Settings ChannelSettings `json:"settings"` CreatedAt string `json:"created_at"` UpdatedAt string `json:"updated_at"` @@ -355,6 +356,7 @@ type ( ID uint64 `json:"id"` TransportID uint64 `json:"transport_id"` Type string `json:"type"` + Name string `json:"name"` Supports ChannelSupports `json:"supports"` }