From db34122fafd1ffad8dc8b86afe5bf5a07e09f0fa Mon Sep 17 00:00:00 2001 From: Deluan Date: Thu, 17 Mar 2016 22:29:58 -0400 Subject: [PATCH] Added comments with missing response parts --- api/responses/responses.go | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) diff --git a/api/responses/responses.go b/api/responses/responses.go index dfa1c8d7c..1a3b7056a 100644 --- a/api/responses/responses.go +++ b/api/responses/responses.go @@ -85,12 +85,35 @@ type Child struct { TranscodedSuffix string `xml:"transcodedSuffix,attr,omitempty" json:"transcodedSuffix,omitempty"` Duration int `xml:"duration,attr,omitempty" json:"duration,omitempty"` BitRate int `xml:"bitRate,attr,omitempty" json:"bitRate,omitempty"` + /* + + + + + + + + + + + + + + + */ } type Directory struct { Child []Child `xml:"child" json:"child,omitempty"` Id string `xml:"id,attr" json:"id"` Name string `xml:"name,attr" json:"name"` + /* + + + + + + */ } type AlbumList struct {