Codebase list golang-github-nlopes-slack / 204d42e
Add the field `Private` to Share Please see the `Response` https://api.slack.com/methods/files.upload ``` "shares": { "private": { "D0L4B9P0Q": [ { "reply_users": [], "reply_users_count": 0, "reply_count": 0, "ts": "1532293503.000001" } ] } }, ``` Suzuki Shunsuke authored 4 years ago James committed 4 years ago
1 changed file(s) with 2 addition(s) and 1 deletion(s). Raw diff Collapse all Expand all
8989 }
9090
9191 type Share struct {
92 Public map[string][]ShareFileInfo `json:"public"`
92 Public map[string][]ShareFileInfo `json:"public"`
93 Private map[string][]ShareFileInfo `json:"private"`
9394 }
9495
9596 type ShareFileInfo struct {