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.
wikeyun/rest.power.edit_card.go

12 lines
390 B

package wikeyun
// RestPowerEditCard 编辑电费充值卡
// https://open.wikeyun.cn/#/apiDocument/9/document/329
func (c *Client) RestPowerEditCard(notMustParams ...Params) (body []byte, err error) {
// 参数
params := c.NewParamsWith(notMustParams...)
// 请求
request, err := c.request("https://router.wikeyun.cn/rest/Power/editCard", params)
return request.ResponseBody, err
}