You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
eastiot/Iot_api.recharge_sim.go

38 lines
1.2 KiB

package eastiot
import (
"context"
"encoding/json"
"go.dtapp.net/gorequest"
"net/http"
)
type IotApiRechargeSimResponse struct {
Code int `json:"code"`
Msg string `json:"msg"`
}
type IotApiRechargeSimResult struct {
Result IotApiRechargeSimResponse // 结果
Body []byte // 内容
Http gorequest.Response // 请求
Err error // 错误
}
func newIotApiRechargeSimResult(result IotApiRechargeSimResponse, body []byte, http gorequest.Response, err error) *IotApiRechargeSimResult {
return &IotApiRechargeSimResult{Result: result, Body: body, Http: http, Err: err}
}
// IotApiRechargeSim 单卡流量充值
// https://www.showdoc.com.cn/916774523755909/4880284631482420
func (c *Client) IotApiRechargeSim(ctx context.Context, notMustParams ...gorequest.Params) *IotApiRechargeSimResult {
// 参数
params := gorequest.NewParamsWith(notMustParams...)
// 请求
request, err := c.request(ctx, apiUrl+"/Api/IotApi/rechargeSim", params, http.MethodPost)
// 定义
var response IotApiRechargeSimResponse
err = json.Unmarshal(request.ResponseBody, &response)
return newIotApiRechargeSimResult(response, request.ResponseBody, request, err)
}