Merge pull request #12 from gwinn/master

add channel name
This commit is contained in:
Alex Lushpai 2018-09-10 15:32:27 +03:00 committed by GitHub
commit df76ffa83b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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"`
}