github.com/morlay/goqcloud@v0.0.0-20181123023149-b00e0b0b9afc/clients/iot/get_devices.go (about) 1 package iot 2 3 import ( 4 github_com_morlay_goqcloud "github.com/morlay/goqcloud" 5 ) 6 7 // 获取设备列表 8 // https://cloud.tencent.com/document/api/568/16468 9 10 type GetDevicesRequest struct { 11 // 长度 12 Length *int64 `name:"Length,omitempty"` 13 // 偏移 14 Offset *int64 `name:"Offset,omitempty"` 15 // 产品Id 16 ProductId string `name:"ProductId"` 17 // 区域 18 Region string `name:"Region"` 19 } 20 21 func (req *GetDevicesRequest) Invoke(client github_com_morlay_goqcloud.Client) (*GetDevicesResponse, error) { 22 resp := &GetDevicesResponse{} 23 err := client.Request("iot", "GetDevices", "2018-01-23").Do(req, resp) 24 return resp, err 25 } 26 27 type GetDevicesResponse struct { 28 github_com_morlay_goqcloud.TencentCloudBaseResponse 29 // 设备列表 30 Devices []*Device `json:"Devices"` 31 // 设备总数 32 Total int64 `json:"Total"` 33 }