Skip to content

Commit

Permalink
fix:修复客服账号头像获取失败的问题
Browse files Browse the repository at this point in the history
  • Loading branch information
NICEXAI committed Jul 28, 2021
1 parent 672ce37 commit 2f60246
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions account.go
Original file line number Diff line number Diff line change
Expand Up @@ -84,9 +84,9 @@ func (r *Client) AccountUpdate(options AccountUpdateOptions) (info BaseModel, er

// AccountInfoSchema 客服详情
type AccountInfoSchema struct {
OpenKFID string `json:"open_kfid"` // 客服帐号ID, 不多于64字节
Name string `json:"name"` // 客服帐号名称, 不多于16个字符
MediaID string `json:"media_id"` // 客服头像临时素材。可以调用上传临时素材接口获取, 不多于128个字节
OpenKFID string `json:"open_kfid"` // 客服帐号ID
Name string `json:"name"` // 客服帐号名称
Avatar string `json:"avatar"` // 客服头像URL
}

// AccountListSchema 获取客服账号列表响应内容
Expand Down

0 comments on commit 2f60246

Please sign in to comment.