Skip to content

Commit f378fc4

Browse files
committed
fix:修复客服账号新增时响应内容解析错误的问题
1 parent ecf8cb3 commit f378fc4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

account.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ type AccountAddSchema struct {
3333
}
3434

3535
// AccountAdd 添加客服账号
36-
func (r *Client) AccountAdd(options AccountAddOptions) (info AccessTokenSchema, err error) {
36+
func (r *Client) AccountAdd(options AccountAddOptions) (info AccountAddSchema, err error) {
3737
data, err := util.HttpPost(fmt.Sprintf(accountAddAddr, r.accessToken), options)
3838
if err != nil {
3939
return info, err

0 commit comments

Comments
 (0)