github.com/morlay/goqcloud@v0.0.0-20181123023149-b00e0b0b9afc/clients/yunjing/delete_usual_login_places.go (about) 1 package yunjing 2 3 import ( 4 github_com_morlay_goqcloud "github.com/morlay/goqcloud" 5 ) 6 7 // 删除常用登录地 8 // https://cloud.tencent.com/document/api/296/19842 9 10 type DeleteUsualLoginPlacesRequest struct { 11 // 已添加常用登录地城市ID数组 12 CityIds []*int64 `name:"CityIds"` 13 // 区域 14 Region string `name:"Region"` 15 // 云镜客户端Uuid 16 Uuid string `name:"Uuid"` 17 } 18 19 func (req *DeleteUsualLoginPlacesRequest) Invoke(client github_com_morlay_goqcloud.Client) (*DeleteUsualLoginPlacesResponse, error) { 20 resp := &DeleteUsualLoginPlacesResponse{} 21 err := client.Request("yunjing", "DeleteUsualLoginPlaces", "2018-02-28").Do(req, resp) 22 return resp, err 23 } 24 25 type DeleteUsualLoginPlacesResponse struct { 26 github_com_morlay_goqcloud.TencentCloudBaseResponse 27 }