Browse Source

Initial construction.

sdk-team 6 years ago
parent
commit
b390045ed4

+ 7 - 0
ChangeLog.txt

@@ -1,3 +1,10 @@
+2019-10-31 Version: 1.60.223
+- Initial construction.
+- Public beta version.
+- Supported AliyunController for Interface.
+- Supported ConsoleController for Interface.
+- Supported AccountController for Interface.
+
 2019-10-31 Version: 1.60.222
 - Support ListTagResources for tag fuzzy filter.
 

+ 25 - 25
services/aliyuncvc/active_meeting_code.go → services/aliyuncvc/active_meeting.go

@@ -20,24 +20,24 @@ import (
 	"github.com/aliyun/alibaba-cloud-sdk-go/sdk/responses"
 )
 
-// ActiveMeetingCode invokes the aliyuncvc.ActiveMeetingCode API synchronously
-// api document: https://help.aliyun.com/api/aliyuncvc/activemeetingcode.html
-func (client *Client) ActiveMeetingCode(request *ActiveMeetingCodeRequest) (response *ActiveMeetingCodeResponse, err error) {
-	response = CreateActiveMeetingCodeResponse()
+// ActiveMeeting invokes the aliyuncvc.ActiveMeeting API synchronously
+// api document: https://help.aliyun.com/api/aliyuncvc/activemeeting.html
+func (client *Client) ActiveMeeting(request *ActiveMeetingRequest) (response *ActiveMeetingResponse, err error) {
+	response = CreateActiveMeetingResponse()
 	err = client.DoAction(request, response)
 	return
 }
 
-// ActiveMeetingCodeWithChan invokes the aliyuncvc.ActiveMeetingCode API asynchronously
-// api document: https://help.aliyun.com/api/aliyuncvc/activemeetingcode.html
+// ActiveMeetingWithChan invokes the aliyuncvc.ActiveMeeting API asynchronously
+// api document: https://help.aliyun.com/api/aliyuncvc/activemeeting.html
 // asynchronous document: https://help.aliyun.com/document_detail/66220.html
-func (client *Client) ActiveMeetingCodeWithChan(request *ActiveMeetingCodeRequest) (<-chan *ActiveMeetingCodeResponse, <-chan error) {
-	responseChan := make(chan *ActiveMeetingCodeResponse, 1)
+func (client *Client) ActiveMeetingWithChan(request *ActiveMeetingRequest) (<-chan *ActiveMeetingResponse, <-chan error) {
+	responseChan := make(chan *ActiveMeetingResponse, 1)
 	errChan := make(chan error, 1)
 	err := client.AddAsyncTask(func() {
 		defer close(responseChan)
 		defer close(errChan)
-		response, err := client.ActiveMeetingCode(request)
+		response, err := client.ActiveMeeting(request)
 		if err != nil {
 			errChan <- err
 		} else {
@@ -52,16 +52,16 @@ func (client *Client) ActiveMeetingCodeWithChan(request *ActiveMeetingCodeReques
 	return responseChan, errChan
 }
 
-// ActiveMeetingCodeWithCallback invokes the aliyuncvc.ActiveMeetingCode API asynchronously
-// api document: https://help.aliyun.com/api/aliyuncvc/activemeetingcode.html
+// ActiveMeetingWithCallback invokes the aliyuncvc.ActiveMeeting API asynchronously
+// api document: https://help.aliyun.com/api/aliyuncvc/activemeeting.html
 // asynchronous document: https://help.aliyun.com/document_detail/66220.html
-func (client *Client) ActiveMeetingCodeWithCallback(request *ActiveMeetingCodeRequest, callback func(response *ActiveMeetingCodeResponse, err error)) <-chan int {
+func (client *Client) ActiveMeetingWithCallback(request *ActiveMeetingRequest, callback func(response *ActiveMeetingResponse, err error)) <-chan int {
 	result := make(chan int, 1)
 	err := client.AddAsyncTask(func() {
-		var response *ActiveMeetingCodeResponse
+		var response *ActiveMeetingResponse
 		var err error
 		defer close(result)
-		response, err = client.ActiveMeetingCode(request)
+		response, err = client.ActiveMeeting(request)
 		callback(response, err)
 		result <- 1
 	})
@@ -73,15 +73,15 @@ func (client *Client) ActiveMeetingCodeWithCallback(request *ActiveMeetingCodeRe
 	return result
 }
 
-// ActiveMeetingCodeRequest is the request struct for api ActiveMeetingCode
-type ActiveMeetingCodeRequest struct {
+// ActiveMeetingRequest is the request struct for api ActiveMeeting
+type ActiveMeetingRequest struct {
 	*requests.RpcRequest
 	MeetingUUID string `position:"Query" name:"MeetingUUID"`
 	MeetingCode string `position:"Query" name:"MeetingCode"`
 }
 
-// ActiveMeetingCodeResponse is the response struct for api ActiveMeetingCode
-type ActiveMeetingCodeResponse struct {
+// ActiveMeetingResponse is the response struct for api ActiveMeeting
+type ActiveMeetingResponse struct {
 	*responses.BaseResponse
 	ErrorCode   int         `json:"ErrorCode" xml:"ErrorCode"`
 	Message     string      `json:"Message" xml:"Message"`
@@ -90,18 +90,18 @@ type ActiveMeetingCodeResponse struct {
 	MeetingInfo MeetingInfo `json:"MeetingInfo" xml:"MeetingInfo"`
 }
 
-// CreateActiveMeetingCodeRequest creates a request to invoke ActiveMeetingCode API
-func CreateActiveMeetingCodeRequest() (request *ActiveMeetingCodeRequest) {
-	request = &ActiveMeetingCodeRequest{
+// CreateActiveMeetingRequest creates a request to invoke ActiveMeeting API
+func CreateActiveMeetingRequest() (request *ActiveMeetingRequest) {
+	request = &ActiveMeetingRequest{
 		RpcRequest: &requests.RpcRequest{},
 	}
-	request.InitWithApiInfo("aliyuncvc", "2019-09-19", "ActiveMeetingCode", "aliyuncvc", "openAPI")
+	request.InitWithApiInfo("aliyuncvc", "2019-10-30", "ActiveMeeting", "aliyuncvc", "openAPI")
 	return
 }
 
-// CreateActiveMeetingCodeResponse creates a response to parse from ActiveMeetingCode response
-func CreateActiveMeetingCodeResponse() (response *ActiveMeetingCodeResponse) {
-	response = &ActiveMeetingCodeResponse{
+// CreateActiveMeetingResponse creates a response to parse from ActiveMeeting response
+func CreateActiveMeetingResponse() (response *ActiveMeetingResponse) {
+	response = &ActiveMeetingResponse{
 		BaseResponse: &responses.BaseResponse{},
 	}
 	return

+ 26 - 26
services/aliyuncvc/create_user_evaluations.go → services/aliyuncvc/create_evaluation.go

@@ -20,24 +20,24 @@ import (
 	"github.com/aliyun/alibaba-cloud-sdk-go/sdk/responses"
 )
 
-// CreateUserEvaluations invokes the aliyuncvc.CreateUserEvaluations API synchronously
-// api document: https://help.aliyun.com/api/aliyuncvc/createuserevaluations.html
-func (client *Client) CreateUserEvaluations(request *CreateUserEvaluationsRequest) (response *CreateUserEvaluationsResponse, err error) {
-	response = CreateCreateUserEvaluationsResponse()
+// CreateEvaluation invokes the aliyuncvc.CreateEvaluation API synchronously
+// api document: https://help.aliyun.com/api/aliyuncvc/createevaluation.html
+func (client *Client) CreateEvaluation(request *CreateEvaluationRequest) (response *CreateEvaluationResponse, err error) {
+	response = CreateCreateEvaluationResponse()
 	err = client.DoAction(request, response)
 	return
 }
 
-// CreateUserEvaluationsWithChan invokes the aliyuncvc.CreateUserEvaluations API asynchronously
-// api document: https://help.aliyun.com/api/aliyuncvc/createuserevaluations.html
+// CreateEvaluationWithChan invokes the aliyuncvc.CreateEvaluation API asynchronously
+// api document: https://help.aliyun.com/api/aliyuncvc/createevaluation.html
 // asynchronous document: https://help.aliyun.com/document_detail/66220.html
-func (client *Client) CreateUserEvaluationsWithChan(request *CreateUserEvaluationsRequest) (<-chan *CreateUserEvaluationsResponse, <-chan error) {
-	responseChan := make(chan *CreateUserEvaluationsResponse, 1)
+func (client *Client) CreateEvaluationWithChan(request *CreateEvaluationRequest) (<-chan *CreateEvaluationResponse, <-chan error) {
+	responseChan := make(chan *CreateEvaluationResponse, 1)
 	errChan := make(chan error, 1)
 	err := client.AddAsyncTask(func() {
 		defer close(responseChan)
 		defer close(errChan)
-		response, err := client.CreateUserEvaluations(request)
+		response, err := client.CreateEvaluation(request)
 		if err != nil {
 			errChan <- err
 		} else {
@@ -52,16 +52,16 @@ func (client *Client) CreateUserEvaluationsWithChan(request *CreateUserEvaluatio
 	return responseChan, errChan
 }
 
-// CreateUserEvaluationsWithCallback invokes the aliyuncvc.CreateUserEvaluations API asynchronously
-// api document: https://help.aliyun.com/api/aliyuncvc/createuserevaluations.html
+// CreateEvaluationWithCallback invokes the aliyuncvc.CreateEvaluation API asynchronously
+// api document: https://help.aliyun.com/api/aliyuncvc/createevaluation.html
 // asynchronous document: https://help.aliyun.com/document_detail/66220.html
-func (client *Client) CreateUserEvaluationsWithCallback(request *CreateUserEvaluationsRequest, callback func(response *CreateUserEvaluationsResponse, err error)) <-chan int {
+func (client *Client) CreateEvaluationWithCallback(request *CreateEvaluationRequest, callback func(response *CreateEvaluationResponse, err error)) <-chan int {
 	result := make(chan int, 1)
 	err := client.AddAsyncTask(func() {
-		var response *CreateUserEvaluationsResponse
+		var response *CreateEvaluationResponse
 		var err error
 		defer close(result)
-		response, err = client.CreateUserEvaluations(request)
+		response, err = client.CreateEvaluation(request)
 		callback(response, err)
 		result <- 1
 	})
@@ -73,12 +73,12 @@ func (client *Client) CreateUserEvaluationsWithCallback(request *CreateUserEvalu
 	return result
 }
 
-// CreateUserEvaluationsRequest is the request struct for api CreateUserEvaluations
-type CreateUserEvaluationsRequest struct {
+// CreateEvaluationRequest is the request struct for api CreateEvaluation
+type CreateEvaluationRequest struct {
 	*requests.RpcRequest
+	CreateTime  requests.Integer `position:"Query" name:"CreateTime"`
 	Memo        string           `position:"Query" name:"Memo"`
 	Description string           `position:"Query" name:"Description"`
-	CreateDate  requests.Integer `position:"Query" name:"CreateDate"`
 	MemberUUID  string           `position:"Query" name:"MemberUUID"`
 	UserId      string           `position:"Query" name:"UserId"`
 	Evaluation  string           `position:"Query" name:"Evaluation"`
@@ -87,8 +87,8 @@ type CreateUserEvaluationsRequest struct {
 	AppId       string           `position:"Query" name:"AppId"`
 }
 
-// CreateUserEvaluationsResponse is the response struct for api CreateUserEvaluations
-type CreateUserEvaluationsResponse struct {
+// CreateEvaluationResponse is the response struct for api CreateEvaluation
+type CreateEvaluationResponse struct {
 	*responses.BaseResponse
 	RequestId string `json:"RequestId" xml:"RequestId"`
 	Success   bool   `json:"Success" xml:"Success"`
@@ -96,18 +96,18 @@ type CreateUserEvaluationsResponse struct {
 	Message   string `json:"Message" xml:"Message"`
 }
 
-// CreateCreateUserEvaluationsRequest creates a request to invoke CreateUserEvaluations API
-func CreateCreateUserEvaluationsRequest() (request *CreateUserEvaluationsRequest) {
-	request = &CreateUserEvaluationsRequest{
+// CreateCreateEvaluationRequest creates a request to invoke CreateEvaluation API
+func CreateCreateEvaluationRequest() (request *CreateEvaluationRequest) {
+	request = &CreateEvaluationRequest{
 		RpcRequest: &requests.RpcRequest{},
 	}
-	request.InitWithApiInfo("aliyuncvc", "2019-09-19", "CreateUserEvaluations", "aliyuncvc", "openAPI")
+	request.InitWithApiInfo("aliyuncvc", "2019-10-30", "CreateEvaluation", "aliyuncvc", "openAPI")
 	return
 }
 
-// CreateCreateUserEvaluationsResponse creates a response to parse from CreateUserEvaluations response
-func CreateCreateUserEvaluationsResponse() (response *CreateUserEvaluationsResponse) {
-	response = &CreateUserEvaluationsResponse{
+// CreateCreateEvaluationResponse creates a response to parse from CreateEvaluation response
+func CreateCreateEvaluationResponse() (response *CreateEvaluationResponse) {
+	response = &CreateEvaluationResponse{
 		BaseResponse: &responses.BaseResponse{},
 	}
 	return

+ 1 - 1
services/aliyuncvc/create_meeting.go

@@ -95,7 +95,7 @@ func CreateCreateMeetingRequest() (request *CreateMeetingRequest) {
 	request = &CreateMeetingRequest{
 		RpcRequest: &requests.RpcRequest{},
 	}
-	request.InitWithApiInfo("aliyuncvc", "2019-09-19", "CreateMeeting", "aliyuncvc", "openAPI")
+	request.InitWithApiInfo("aliyuncvc", "2019-10-30", "CreateMeeting", "aliyuncvc", "openAPI")
 	return
 }
 

+ 2 - 1
services/aliyuncvc/create_user.go

@@ -87,6 +87,7 @@ type CreateUserResponse struct {
 	Message   string `json:"Message" xml:"Message"`
 	Success   bool   `json:"Success" xml:"Success"`
 	RequestId string `json:"RequestId" xml:"RequestId"`
+	UserId    string `json:"UserId" xml:"UserId"`
 }
 
 // CreateCreateUserRequest creates a request to invoke CreateUser API
@@ -94,7 +95,7 @@ func CreateCreateUserRequest() (request *CreateUserRequest) {
 	request = &CreateUserRequest{
 		RpcRequest: &requests.RpcRequest{},
 	}
-	request.InitWithApiInfo("aliyuncvc", "2019-09-19", "CreateUser", "aliyuncvc", "openAPI")
+	request.InitWithApiInfo("aliyuncvc", "2019-10-30", "CreateUser", "aliyuncvc", "openAPI")
 	return
 }
 

+ 25 - 25
services/aliyuncvc/remove_meeting.go → services/aliyuncvc/delete_meeting.go

@@ -20,24 +20,24 @@ import (
 	"github.com/aliyun/alibaba-cloud-sdk-go/sdk/responses"
 )
 
-// RemoveMeeting invokes the aliyuncvc.RemoveMeeting API synchronously
-// api document: https://help.aliyun.com/api/aliyuncvc/removemeeting.html
-func (client *Client) RemoveMeeting(request *RemoveMeetingRequest) (response *RemoveMeetingResponse, err error) {
-	response = CreateRemoveMeetingResponse()
+// DeleteMeeting invokes the aliyuncvc.DeleteMeeting API synchronously
+// api document: https://help.aliyun.com/api/aliyuncvc/deletemeeting.html
+func (client *Client) DeleteMeeting(request *DeleteMeetingRequest) (response *DeleteMeetingResponse, err error) {
+	response = CreateDeleteMeetingResponse()
 	err = client.DoAction(request, response)
 	return
 }
 
-// RemoveMeetingWithChan invokes the aliyuncvc.RemoveMeeting API asynchronously
-// api document: https://help.aliyun.com/api/aliyuncvc/removemeeting.html
+// DeleteMeetingWithChan invokes the aliyuncvc.DeleteMeeting API asynchronously
+// api document: https://help.aliyun.com/api/aliyuncvc/deletemeeting.html
 // asynchronous document: https://help.aliyun.com/document_detail/66220.html
-func (client *Client) RemoveMeetingWithChan(request *RemoveMeetingRequest) (<-chan *RemoveMeetingResponse, <-chan error) {
-	responseChan := make(chan *RemoveMeetingResponse, 1)
+func (client *Client) DeleteMeetingWithChan(request *DeleteMeetingRequest) (<-chan *DeleteMeetingResponse, <-chan error) {
+	responseChan := make(chan *DeleteMeetingResponse, 1)
 	errChan := make(chan error, 1)
 	err := client.AddAsyncTask(func() {
 		defer close(responseChan)
 		defer close(errChan)
-		response, err := client.RemoveMeeting(request)
+		response, err := client.DeleteMeeting(request)
 		if err != nil {
 			errChan <- err
 		} else {
@@ -52,16 +52,16 @@ func (client *Client) RemoveMeetingWithChan(request *RemoveMeetingRequest) (<-ch
 	return responseChan, errChan
 }
 
-// RemoveMeetingWithCallback invokes the aliyuncvc.RemoveMeeting API asynchronously
-// api document: https://help.aliyun.com/api/aliyuncvc/removemeeting.html
+// DeleteMeetingWithCallback invokes the aliyuncvc.DeleteMeeting API asynchronously
+// api document: https://help.aliyun.com/api/aliyuncvc/deletemeeting.html
 // asynchronous document: https://help.aliyun.com/document_detail/66220.html
-func (client *Client) RemoveMeetingWithCallback(request *RemoveMeetingRequest, callback func(response *RemoveMeetingResponse, err error)) <-chan int {
+func (client *Client) DeleteMeetingWithCallback(request *DeleteMeetingRequest, callback func(response *DeleteMeetingResponse, err error)) <-chan int {
 	result := make(chan int, 1)
 	err := client.AddAsyncTask(func() {
-		var response *RemoveMeetingResponse
+		var response *DeleteMeetingResponse
 		var err error
 		defer close(result)
-		response, err = client.RemoveMeeting(request)
+		response, err = client.DeleteMeeting(request)
 		callback(response, err)
 		result <- 1
 	})
@@ -73,14 +73,14 @@ func (client *Client) RemoveMeetingWithCallback(request *RemoveMeetingRequest, c
 	return result
 }
 
-// RemoveMeetingRequest is the request struct for api RemoveMeeting
-type RemoveMeetingRequest struct {
+// DeleteMeetingRequest is the request struct for api DeleteMeeting
+type DeleteMeetingRequest struct {
 	*requests.RpcRequest
 	MeetingUUID string `position:"Body" name:"MeetingUUID"`
 }
 
-// RemoveMeetingResponse is the response struct for api RemoveMeeting
-type RemoveMeetingResponse struct {
+// DeleteMeetingResponse is the response struct for api DeleteMeeting
+type DeleteMeetingResponse struct {
 	*responses.BaseResponse
 	ErrorCode int    `json:"ErrorCode" xml:"ErrorCode"`
 	Message   string `json:"Message" xml:"Message"`
@@ -88,18 +88,18 @@ type RemoveMeetingResponse struct {
 	RequestId string `json:"RequestId" xml:"RequestId"`
 }
 
-// CreateRemoveMeetingRequest creates a request to invoke RemoveMeeting API
-func CreateRemoveMeetingRequest() (request *RemoveMeetingRequest) {
-	request = &RemoveMeetingRequest{
+// CreateDeleteMeetingRequest creates a request to invoke DeleteMeeting API
+func CreateDeleteMeetingRequest() (request *DeleteMeetingRequest) {
+	request = &DeleteMeetingRequest{
 		RpcRequest: &requests.RpcRequest{},
 	}
-	request.InitWithApiInfo("aliyuncvc", "2019-09-19", "RemoveMeeting", "aliyuncvc", "openAPI")
+	request.InitWithApiInfo("aliyuncvc", "2019-10-30", "DeleteMeeting", "aliyuncvc", "openAPI")
 	return
 }
 
-// CreateRemoveMeetingResponse creates a response to parse from RemoveMeeting response
-func CreateRemoveMeetingResponse() (response *RemoveMeetingResponse) {
-	response = &RemoveMeetingResponse{
+// CreateDeleteMeetingResponse creates a response to parse from DeleteMeeting response
+func CreateDeleteMeetingResponse() (response *DeleteMeetingResponse) {
+	response = &DeleteMeetingResponse{
 		BaseResponse: &responses.BaseResponse{},
 	}
 	return

+ 1 - 1
services/aliyuncvc/delete_user.go

@@ -94,7 +94,7 @@ func CreateDeleteUserRequest() (request *DeleteUserRequest) {
 	request = &DeleteUserRequest{
 		RpcRequest: &requests.RpcRequest{},
 	}
-	request.InitWithApiInfo("aliyuncvc", "2019-09-19", "DeleteUser", "aliyuncvc", "openAPI")
+	request.InitWithApiInfo("aliyuncvc", "2019-10-30", "DeleteUser", "aliyuncvc", "openAPI")
 	return
 }
 

+ 25 - 25
services/aliyuncvc/query_meeting_info.go → services/aliyuncvc/get_meeting.go

@@ -20,24 +20,24 @@ import (
 	"github.com/aliyun/alibaba-cloud-sdk-go/sdk/responses"
 )
 
-// QueryMeetingInfo invokes the aliyuncvc.QueryMeetingInfo API synchronously
-// api document: https://help.aliyun.com/api/aliyuncvc/querymeetinginfo.html
-func (client *Client) QueryMeetingInfo(request *QueryMeetingInfoRequest) (response *QueryMeetingInfoResponse, err error) {
-	response = CreateQueryMeetingInfoResponse()
+// GetMeeting invokes the aliyuncvc.GetMeeting API synchronously
+// api document: https://help.aliyun.com/api/aliyuncvc/getmeeting.html
+func (client *Client) GetMeeting(request *GetMeetingRequest) (response *GetMeetingResponse, err error) {
+	response = CreateGetMeetingResponse()
 	err = client.DoAction(request, response)
 	return
 }
 
-// QueryMeetingInfoWithChan invokes the aliyuncvc.QueryMeetingInfo API asynchronously
-// api document: https://help.aliyun.com/api/aliyuncvc/querymeetinginfo.html
+// GetMeetingWithChan invokes the aliyuncvc.GetMeeting API asynchronously
+// api document: https://help.aliyun.com/api/aliyuncvc/getmeeting.html
 // asynchronous document: https://help.aliyun.com/document_detail/66220.html
-func (client *Client) QueryMeetingInfoWithChan(request *QueryMeetingInfoRequest) (<-chan *QueryMeetingInfoResponse, <-chan error) {
-	responseChan := make(chan *QueryMeetingInfoResponse, 1)
+func (client *Client) GetMeetingWithChan(request *GetMeetingRequest) (<-chan *GetMeetingResponse, <-chan error) {
+	responseChan := make(chan *GetMeetingResponse, 1)
 	errChan := make(chan error, 1)
 	err := client.AddAsyncTask(func() {
 		defer close(responseChan)
 		defer close(errChan)
-		response, err := client.QueryMeetingInfo(request)
+		response, err := client.GetMeeting(request)
 		if err != nil {
 			errChan <- err
 		} else {
@@ -52,16 +52,16 @@ func (client *Client) QueryMeetingInfoWithChan(request *QueryMeetingInfoRequest)
 	return responseChan, errChan
 }
 
-// QueryMeetingInfoWithCallback invokes the aliyuncvc.QueryMeetingInfo API asynchronously
-// api document: https://help.aliyun.com/api/aliyuncvc/querymeetinginfo.html
+// GetMeetingWithCallback invokes the aliyuncvc.GetMeeting API asynchronously
+// api document: https://help.aliyun.com/api/aliyuncvc/getmeeting.html
 // asynchronous document: https://help.aliyun.com/document_detail/66220.html
-func (client *Client) QueryMeetingInfoWithCallback(request *QueryMeetingInfoRequest, callback func(response *QueryMeetingInfoResponse, err error)) <-chan int {
+func (client *Client) GetMeetingWithCallback(request *GetMeetingRequest, callback func(response *GetMeetingResponse, err error)) <-chan int {
 	result := make(chan int, 1)
 	err := client.AddAsyncTask(func() {
-		var response *QueryMeetingInfoResponse
+		var response *GetMeetingResponse
 		var err error
 		defer close(result)
-		response, err = client.QueryMeetingInfo(request)
+		response, err = client.GetMeeting(request)
 		callback(response, err)
 		result <- 1
 	})
@@ -73,14 +73,14 @@ func (client *Client) QueryMeetingInfoWithCallback(request *QueryMeetingInfoRequ
 	return result
 }
 
-// QueryMeetingInfoRequest is the request struct for api QueryMeetingInfo
-type QueryMeetingInfoRequest struct {
+// GetMeetingRequest is the request struct for api GetMeeting
+type GetMeetingRequest struct {
 	*requests.RpcRequest
 	MeetingUUID string `position:"Body" name:"MeetingUUID"`
 }
 
-// QueryMeetingInfoResponse is the response struct for api QueryMeetingInfo
-type QueryMeetingInfoResponse struct {
+// GetMeetingResponse is the response struct for api GetMeeting
+type GetMeetingResponse struct {
 	*responses.BaseResponse
 	ErrorCode   int         `json:"ErrorCode" xml:"ErrorCode"`
 	Message     string      `json:"Message" xml:"Message"`
@@ -89,18 +89,18 @@ type QueryMeetingInfoResponse struct {
 	MeetingInfo MeetingInfo `json:"MeetingInfo" xml:"MeetingInfo"`
 }
 
-// CreateQueryMeetingInfoRequest creates a request to invoke QueryMeetingInfo API
-func CreateQueryMeetingInfoRequest() (request *QueryMeetingInfoRequest) {
-	request = &QueryMeetingInfoRequest{
+// CreateGetMeetingRequest creates a request to invoke GetMeeting API
+func CreateGetMeetingRequest() (request *GetMeetingRequest) {
+	request = &GetMeetingRequest{
 		RpcRequest: &requests.RpcRequest{},
 	}
-	request.InitWithApiInfo("aliyuncvc", "2019-09-19", "QueryMeetingInfo", "aliyuncvc", "openAPI")
+	request.InitWithApiInfo("aliyuncvc", "2019-10-30", "GetMeeting", "aliyuncvc", "openAPI")
 	return
 }
 
-// CreateQueryMeetingInfoResponse creates a response to parse from QueryMeetingInfo response
-func CreateQueryMeetingInfoResponse() (response *QueryMeetingInfoResponse) {
-	response = &QueryMeetingInfoResponse{
+// CreateGetMeetingResponse creates a response to parse from GetMeeting response
+func CreateGetMeetingResponse() (response *GetMeetingResponse) {
+	response = &GetMeetingResponse{
 		BaseResponse: &responses.BaseResponse{},
 	}
 	return

+ 26 - 25
services/aliyuncvc/query_user_info.go → services/aliyuncvc/get_user.go

@@ -20,24 +20,24 @@ import (
 	"github.com/aliyun/alibaba-cloud-sdk-go/sdk/responses"
 )
 
-// QueryUserInfo invokes the aliyuncvc.QueryUserInfo API synchronously
-// api document: https://help.aliyun.com/api/aliyuncvc/queryuserinfo.html
-func (client *Client) QueryUserInfo(request *QueryUserInfoRequest) (response *QueryUserInfoResponse, err error) {
-	response = CreateQueryUserInfoResponse()
+// GetUser invokes the aliyuncvc.GetUser API synchronously
+// api document: https://help.aliyun.com/api/aliyuncvc/getuser.html
+func (client *Client) GetUser(request *GetUserRequest) (response *GetUserResponse, err error) {
+	response = CreateGetUserResponse()
 	err = client.DoAction(request, response)
 	return
 }
 
-// QueryUserInfoWithChan invokes the aliyuncvc.QueryUserInfo API asynchronously
-// api document: https://help.aliyun.com/api/aliyuncvc/queryuserinfo.html
+// GetUserWithChan invokes the aliyuncvc.GetUser API asynchronously
+// api document: https://help.aliyun.com/api/aliyuncvc/getuser.html
 // asynchronous document: https://help.aliyun.com/document_detail/66220.html
-func (client *Client) QueryUserInfoWithChan(request *QueryUserInfoRequest) (<-chan *QueryUserInfoResponse, <-chan error) {
-	responseChan := make(chan *QueryUserInfoResponse, 1)
+func (client *Client) GetUserWithChan(request *GetUserRequest) (<-chan *GetUserResponse, <-chan error) {
+	responseChan := make(chan *GetUserResponse, 1)
 	errChan := make(chan error, 1)
 	err := client.AddAsyncTask(func() {
 		defer close(responseChan)
 		defer close(errChan)
-		response, err := client.QueryUserInfo(request)
+		response, err := client.GetUser(request)
 		if err != nil {
 			errChan <- err
 		} else {
@@ -52,16 +52,16 @@ func (client *Client) QueryUserInfoWithChan(request *QueryUserInfoRequest) (<-ch
 	return responseChan, errChan
 }
 
-// QueryUserInfoWithCallback invokes the aliyuncvc.QueryUserInfo API asynchronously
-// api document: https://help.aliyun.com/api/aliyuncvc/queryuserinfo.html
+// GetUserWithCallback invokes the aliyuncvc.GetUser API asynchronously
+// api document: https://help.aliyun.com/api/aliyuncvc/getuser.html
 // asynchronous document: https://help.aliyun.com/document_detail/66220.html
-func (client *Client) QueryUserInfoWithCallback(request *QueryUserInfoRequest, callback func(response *QueryUserInfoResponse, err error)) <-chan int {
+func (client *Client) GetUserWithCallback(request *GetUserRequest, callback func(response *GetUserResponse, err error)) <-chan int {
 	result := make(chan int, 1)
 	err := client.AddAsyncTask(func() {
-		var response *QueryUserInfoResponse
+		var response *GetUserResponse
 		var err error
 		defer close(result)
-		response, err = client.QueryUserInfo(request)
+		response, err = client.GetUser(request)
 		callback(response, err)
 		result <- 1
 	})
@@ -73,13 +73,14 @@ func (client *Client) QueryUserInfoWithCallback(request *QueryUserInfoRequest, c
 	return result
 }
 
-// QueryUserInfoRequest is the request struct for api QueryUserInfo
-type QueryUserInfoRequest struct {
+// GetUserRequest is the request struct for api GetUser
+type GetUserRequest struct {
 	*requests.RpcRequest
+	UserId string `position:"Query" name:"UserId"`
 }
 
-// QueryUserInfoResponse is the response struct for api QueryUserInfo
-type QueryUserInfoResponse struct {
+// GetUserResponse is the response struct for api GetUser
+type GetUserResponse struct {
 	*responses.BaseResponse
 	ErrorCode int      `json:"ErrorCode" xml:"ErrorCode"`
 	Message   string   `json:"Message" xml:"Message"`
@@ -88,18 +89,18 @@ type QueryUserInfoResponse struct {
 	UserInfo  UserInfo `json:"UserInfo" xml:"UserInfo"`
 }
 
-// CreateQueryUserInfoRequest creates a request to invoke QueryUserInfo API
-func CreateQueryUserInfoRequest() (request *QueryUserInfoRequest) {
-	request = &QueryUserInfoRequest{
+// CreateGetUserRequest creates a request to invoke GetUser API
+func CreateGetUserRequest() (request *GetUserRequest) {
+	request = &GetUserRequest{
 		RpcRequest: &requests.RpcRequest{},
 	}
-	request.InitWithApiInfo("aliyuncvc", "2019-09-19", "QueryUserInfo", "aliyuncvc", "openAPI")
+	request.InitWithApiInfo("aliyuncvc", "2019-10-30", "GetUser", "aliyuncvc", "openAPI")
 	return
 }
 
-// CreateQueryUserInfoResponse creates a response to parse from QueryUserInfo response
-func CreateQueryUserInfoResponse() (response *QueryUserInfoResponse) {
-	response = &QueryUserInfoResponse{
+// CreateGetUserResponse creates a response to parse from GetUser response
+func CreateGetUserResponse() (response *GetUserResponse) {
+	response = &GetUserResponse{
 		BaseResponse: &responses.BaseResponse{},
 	}
 	return

+ 25 - 25
services/aliyuncvc/check_meeting_code.go → services/aliyuncvc/join_meeting.go

@@ -20,24 +20,24 @@ import (
 	"github.com/aliyun/alibaba-cloud-sdk-go/sdk/responses"
 )
 
-// CheckMeetingCode invokes the aliyuncvc.CheckMeetingCode API synchronously
-// api document: https://help.aliyun.com/api/aliyuncvc/checkmeetingcode.html
-func (client *Client) CheckMeetingCode(request *CheckMeetingCodeRequest) (response *CheckMeetingCodeResponse, err error) {
-	response = CreateCheckMeetingCodeResponse()
+// JoinMeeting invokes the aliyuncvc.JoinMeeting API synchronously
+// api document: https://help.aliyun.com/api/aliyuncvc/joinmeeting.html
+func (client *Client) JoinMeeting(request *JoinMeetingRequest) (response *JoinMeetingResponse, err error) {
+	response = CreateJoinMeetingResponse()
 	err = client.DoAction(request, response)
 	return
 }
 
-// CheckMeetingCodeWithChan invokes the aliyuncvc.CheckMeetingCode API asynchronously
-// api document: https://help.aliyun.com/api/aliyuncvc/checkmeetingcode.html
+// JoinMeetingWithChan invokes the aliyuncvc.JoinMeeting API asynchronously
+// api document: https://help.aliyun.com/api/aliyuncvc/joinmeeting.html
 // asynchronous document: https://help.aliyun.com/document_detail/66220.html
-func (client *Client) CheckMeetingCodeWithChan(request *CheckMeetingCodeRequest) (<-chan *CheckMeetingCodeResponse, <-chan error) {
-	responseChan := make(chan *CheckMeetingCodeResponse, 1)
+func (client *Client) JoinMeetingWithChan(request *JoinMeetingRequest) (<-chan *JoinMeetingResponse, <-chan error) {
+	responseChan := make(chan *JoinMeetingResponse, 1)
 	errChan := make(chan error, 1)
 	err := client.AddAsyncTask(func() {
 		defer close(responseChan)
 		defer close(errChan)
-		response, err := client.CheckMeetingCode(request)
+		response, err := client.JoinMeeting(request)
 		if err != nil {
 			errChan <- err
 		} else {
@@ -52,16 +52,16 @@ func (client *Client) CheckMeetingCodeWithChan(request *CheckMeetingCodeRequest)
 	return responseChan, errChan
 }
 
-// CheckMeetingCodeWithCallback invokes the aliyuncvc.CheckMeetingCode API asynchronously
-// api document: https://help.aliyun.com/api/aliyuncvc/checkmeetingcode.html
+// JoinMeetingWithCallback invokes the aliyuncvc.JoinMeeting API asynchronously
+// api document: https://help.aliyun.com/api/aliyuncvc/joinmeeting.html
 // asynchronous document: https://help.aliyun.com/document_detail/66220.html
-func (client *Client) CheckMeetingCodeWithCallback(request *CheckMeetingCodeRequest, callback func(response *CheckMeetingCodeResponse, err error)) <-chan int {
+func (client *Client) JoinMeetingWithCallback(request *JoinMeetingRequest, callback func(response *JoinMeetingResponse, err error)) <-chan int {
 	result := make(chan int, 1)
 	err := client.AddAsyncTask(func() {
-		var response *CheckMeetingCodeResponse
+		var response *JoinMeetingResponse
 		var err error
 		defer close(result)
-		response, err = client.CheckMeetingCode(request)
+		response, err = client.JoinMeeting(request)
 		callback(response, err)
 		result <- 1
 	})
@@ -73,15 +73,15 @@ func (client *Client) CheckMeetingCodeWithCallback(request *CheckMeetingCodeRequ
 	return result
 }
 
-// CheckMeetingCodeRequest is the request struct for api CheckMeetingCode
-type CheckMeetingCodeRequest struct {
+// JoinMeetingRequest is the request struct for api JoinMeeting
+type JoinMeetingRequest struct {
 	*requests.RpcRequest
 	MeetingCode string `position:"Body" name:"MeetingCode"`
 	UserId      string `position:"Body" name:"UserId"`
 }
 
-// CheckMeetingCodeResponse is the response struct for api CheckMeetingCode
-type CheckMeetingCodeResponse struct {
+// JoinMeetingResponse is the response struct for api JoinMeeting
+type JoinMeetingResponse struct {
 	*responses.BaseResponse
 	ErrorCode   int         `json:"ErrorCode" xml:"ErrorCode"`
 	Success     bool        `json:"Success" xml:"Success"`
@@ -90,18 +90,18 @@ type CheckMeetingCodeResponse struct {
 	MeetingInfo MeetingInfo `json:"MeetingInfo" xml:"MeetingInfo"`
 }
 
-// CreateCheckMeetingCodeRequest creates a request to invoke CheckMeetingCode API
-func CreateCheckMeetingCodeRequest() (request *CheckMeetingCodeRequest) {
-	request = &CheckMeetingCodeRequest{
+// CreateJoinMeetingRequest creates a request to invoke JoinMeeting API
+func CreateJoinMeetingRequest() (request *JoinMeetingRequest) {
+	request = &JoinMeetingRequest{
 		RpcRequest: &requests.RpcRequest{},
 	}
-	request.InitWithApiInfo("aliyuncvc", "2019-09-19", "CheckMeetingCode", "aliyuncvc", "openAPI")
+	request.InitWithApiInfo("aliyuncvc", "2019-10-30", "JoinMeeting", "aliyuncvc", "openAPI")
 	return
 }
 
-// CreateCheckMeetingCodeResponse creates a response to parse from CheckMeetingCode response
-func CreateCheckMeetingCodeResponse() (response *CheckMeetingCodeResponse) {
-	response = &CheckMeetingCodeResponse{
+// CreateJoinMeetingResponse creates a response to parse from JoinMeeting response
+func CreateJoinMeetingResponse() (response *JoinMeetingResponse) {
+	response = &JoinMeetingResponse{
 		BaseResponse: &responses.BaseResponse{},
 	}
 	return

+ 25 - 25
services/aliyuncvc/query_user_evaluation.go → services/aliyuncvc/list_evaluations.go

@@ -20,24 +20,24 @@ import (
 	"github.com/aliyun/alibaba-cloud-sdk-go/sdk/responses"
 )
 
-// QueryUserEvaluation invokes the aliyuncvc.QueryUserEvaluation API synchronously
-// api document: https://help.aliyun.com/api/aliyuncvc/queryuserevaluation.html
-func (client *Client) QueryUserEvaluation(request *QueryUserEvaluationRequest) (response *QueryUserEvaluationResponse, err error) {
-	response = CreateQueryUserEvaluationResponse()
+// ListEvaluations invokes the aliyuncvc.ListEvaluations API synchronously
+// api document: https://help.aliyun.com/api/aliyuncvc/listevaluations.html
+func (client *Client) ListEvaluations(request *ListEvaluationsRequest) (response *ListEvaluationsResponse, err error) {
+	response = CreateListEvaluationsResponse()
 	err = client.DoAction(request, response)
 	return
 }
 
-// QueryUserEvaluationWithChan invokes the aliyuncvc.QueryUserEvaluation API asynchronously
-// api document: https://help.aliyun.com/api/aliyuncvc/queryuserevaluation.html
+// ListEvaluationsWithChan invokes the aliyuncvc.ListEvaluations API asynchronously
+// api document: https://help.aliyun.com/api/aliyuncvc/listevaluations.html
 // asynchronous document: https://help.aliyun.com/document_detail/66220.html
-func (client *Client) QueryUserEvaluationWithChan(request *QueryUserEvaluationRequest) (<-chan *QueryUserEvaluationResponse, <-chan error) {
-	responseChan := make(chan *QueryUserEvaluationResponse, 1)
+func (client *Client) ListEvaluationsWithChan(request *ListEvaluationsRequest) (<-chan *ListEvaluationsResponse, <-chan error) {
+	responseChan := make(chan *ListEvaluationsResponse, 1)
 	errChan := make(chan error, 1)
 	err := client.AddAsyncTask(func() {
 		defer close(responseChan)
 		defer close(errChan)
-		response, err := client.QueryUserEvaluation(request)
+		response, err := client.ListEvaluations(request)
 		if err != nil {
 			errChan <- err
 		} else {
@@ -52,16 +52,16 @@ func (client *Client) QueryUserEvaluationWithChan(request *QueryUserEvaluationRe
 	return responseChan, errChan
 }
 
-// QueryUserEvaluationWithCallback invokes the aliyuncvc.QueryUserEvaluation API asynchronously
-// api document: https://help.aliyun.com/api/aliyuncvc/queryuserevaluation.html
+// ListEvaluationsWithCallback invokes the aliyuncvc.ListEvaluations API asynchronously
+// api document: https://help.aliyun.com/api/aliyuncvc/listevaluations.html
 // asynchronous document: https://help.aliyun.com/document_detail/66220.html
-func (client *Client) QueryUserEvaluationWithCallback(request *QueryUserEvaluationRequest, callback func(response *QueryUserEvaluationResponse, err error)) <-chan int {
+func (client *Client) ListEvaluationsWithCallback(request *ListEvaluationsRequest, callback func(response *ListEvaluationsResponse, err error)) <-chan int {
 	result := make(chan int, 1)
 	err := client.AddAsyncTask(func() {
-		var response *QueryUserEvaluationResponse
+		var response *ListEvaluationsResponse
 		var err error
 		defer close(result)
-		response, err = client.QueryUserEvaluation(request)
+		response, err = client.ListEvaluations(request)
 		callback(response, err)
 		result <- 1
 	})
@@ -73,13 +73,13 @@ func (client *Client) QueryUserEvaluationWithCallback(request *QueryUserEvaluati
 	return result
 }
 
-// QueryUserEvaluationRequest is the request struct for api QueryUserEvaluation
-type QueryUserEvaluationRequest struct {
+// ListEvaluationsRequest is the request struct for api ListEvaluations
+type ListEvaluationsRequest struct {
 	*requests.RpcRequest
 }
 
-// QueryUserEvaluationResponse is the response struct for api QueryUserEvaluation
-type QueryUserEvaluationResponse struct {
+// ListEvaluationsResponse is the response struct for api ListEvaluations
+type ListEvaluationsResponse struct {
 	*responses.BaseResponse
 	UserEvaluation string `json:"UserEvaluation" xml:"UserEvaluation"`
 	ErrorCode      int    `json:"ErrorCode" xml:"ErrorCode"`
@@ -88,18 +88,18 @@ type QueryUserEvaluationResponse struct {
 	RequestId      string `json:"RequestId" xml:"RequestId"`
 }
 
-// CreateQueryUserEvaluationRequest creates a request to invoke QueryUserEvaluation API
-func CreateQueryUserEvaluationRequest() (request *QueryUserEvaluationRequest) {
-	request = &QueryUserEvaluationRequest{
+// CreateListEvaluationsRequest creates a request to invoke ListEvaluations API
+func CreateListEvaluationsRequest() (request *ListEvaluationsRequest) {
+	request = &ListEvaluationsRequest{
 		RpcRequest: &requests.RpcRequest{},
 	}
-	request.InitWithApiInfo("aliyuncvc", "2019-09-19", "QueryUserEvaluation", "aliyuncvc", "openAPI")
+	request.InitWithApiInfo("aliyuncvc", "2019-10-30", "ListEvaluations", "aliyuncvc", "openAPI")
 	return
 }
 
-// CreateQueryUserEvaluationResponse creates a response to parse from QueryUserEvaluation response
-func CreateQueryUserEvaluationResponse() (response *QueryUserEvaluationResponse) {
-	response = &QueryUserEvaluationResponse{
+// CreateListEvaluationsResponse creates a response to parse from ListEvaluations response
+func CreateListEvaluationsResponse() (response *ListEvaluationsResponse) {
+	response = &ListEvaluationsResponse{
 		BaseResponse: &responses.BaseResponse{},
 	}
 	return

+ 25 - 25
services/aliyuncvc/query_member_record.go → services/aliyuncvc/list_members.go

@@ -20,24 +20,24 @@ import (
 	"github.com/aliyun/alibaba-cloud-sdk-go/sdk/responses"
 )
 
-// QueryMemberRecord invokes the aliyuncvc.QueryMemberRecord API synchronously
-// api document: https://help.aliyun.com/api/aliyuncvc/querymemberrecord.html
-func (client *Client) QueryMemberRecord(request *QueryMemberRecordRequest) (response *QueryMemberRecordResponse, err error) {
-	response = CreateQueryMemberRecordResponse()
+// ListMembers invokes the aliyuncvc.ListMembers API synchronously
+// api document: https://help.aliyun.com/api/aliyuncvc/listmembers.html
+func (client *Client) ListMembers(request *ListMembersRequest) (response *ListMembersResponse, err error) {
+	response = CreateListMembersResponse()
 	err = client.DoAction(request, response)
 	return
 }
 
-// QueryMemberRecordWithChan invokes the aliyuncvc.QueryMemberRecord API asynchronously
-// api document: https://help.aliyun.com/api/aliyuncvc/querymemberrecord.html
+// ListMembersWithChan invokes the aliyuncvc.ListMembers API asynchronously
+// api document: https://help.aliyun.com/api/aliyuncvc/listmembers.html
 // asynchronous document: https://help.aliyun.com/document_detail/66220.html
-func (client *Client) QueryMemberRecordWithChan(request *QueryMemberRecordRequest) (<-chan *QueryMemberRecordResponse, <-chan error) {
-	responseChan := make(chan *QueryMemberRecordResponse, 1)
+func (client *Client) ListMembersWithChan(request *ListMembersRequest) (<-chan *ListMembersResponse, <-chan error) {
+	responseChan := make(chan *ListMembersResponse, 1)
 	errChan := make(chan error, 1)
 	err := client.AddAsyncTask(func() {
 		defer close(responseChan)
 		defer close(errChan)
-		response, err := client.QueryMemberRecord(request)
+		response, err := client.ListMembers(request)
 		if err != nil {
 			errChan <- err
 		} else {
@@ -52,16 +52,16 @@ func (client *Client) QueryMemberRecordWithChan(request *QueryMemberRecordReques
 	return responseChan, errChan
 }
 
-// QueryMemberRecordWithCallback invokes the aliyuncvc.QueryMemberRecord API asynchronously
-// api document: https://help.aliyun.com/api/aliyuncvc/querymemberrecord.html
+// ListMembersWithCallback invokes the aliyuncvc.ListMembers API asynchronously
+// api document: https://help.aliyun.com/api/aliyuncvc/listmembers.html
 // asynchronous document: https://help.aliyun.com/document_detail/66220.html
-func (client *Client) QueryMemberRecordWithCallback(request *QueryMemberRecordRequest, callback func(response *QueryMemberRecordResponse, err error)) <-chan int {
+func (client *Client) ListMembersWithCallback(request *ListMembersRequest, callback func(response *ListMembersResponse, err error)) <-chan int {
 	result := make(chan int, 1)
 	err := client.AddAsyncTask(func() {
-		var response *QueryMemberRecordResponse
+		var response *ListMembersResponse
 		var err error
 		defer close(result)
-		response, err = client.QueryMemberRecord(request)
+		response, err = client.ListMembers(request)
 		callback(response, err)
 		result <- 1
 	})
@@ -73,14 +73,14 @@ func (client *Client) QueryMemberRecordWithCallback(request *QueryMemberRecordRe
 	return result
 }
 
-// QueryMemberRecordRequest is the request struct for api QueryMemberRecord
-type QueryMemberRecordRequest struct {
+// ListMembersRequest is the request struct for api ListMembers
+type ListMembersRequest struct {
 	*requests.RpcRequest
 	MeetingUUID string `position:"Query" name:"MeetingUUID"`
 }
 
-// QueryMemberRecordResponse is the response struct for api QueryMemberRecord
-type QueryMemberRecordResponse struct {
+// ListMembersResponse is the response struct for api ListMembers
+type ListMembersResponse struct {
 	*responses.BaseResponse
 	ErrorCode   int         `json:"ErrorCode" xml:"ErrorCode"`
 	Message     string      `json:"Message" xml:"Message"`
@@ -89,18 +89,18 @@ type QueryMemberRecordResponse struct {
 	MeetingInfo MeetingInfo `json:"MeetingInfo" xml:"MeetingInfo"`
 }
 
-// CreateQueryMemberRecordRequest creates a request to invoke QueryMemberRecord API
-func CreateQueryMemberRecordRequest() (request *QueryMemberRecordRequest) {
-	request = &QueryMemberRecordRequest{
+// CreateListMembersRequest creates a request to invoke ListMembers API
+func CreateListMembersRequest() (request *ListMembersRequest) {
+	request = &ListMembersRequest{
 		RpcRequest: &requests.RpcRequest{},
 	}
-	request.InitWithApiInfo("aliyuncvc", "2019-09-19", "QueryMemberRecord", "aliyuncvc", "openAPI")
+	request.InitWithApiInfo("aliyuncvc", "2019-10-30", "ListMembers", "aliyuncvc", "openAPI")
 	return
 }
 
-// CreateQueryMemberRecordResponse creates a response to parse from QueryMemberRecord response
-func CreateQueryMemberRecordResponse() (response *QueryMemberRecordResponse) {
-	response = &QueryMemberRecordResponse{
+// CreateListMembersResponse creates a response to parse from ListMembers response
+func CreateListMembersResponse() (response *ListMembersResponse) {
+	response = &ListMembersResponse{
 		BaseResponse: &responses.BaseResponse{},
 	}
 	return

+ 25 - 27
services/aliyuncvc/list_commodities.go → services/aliyuncvc/list_users.go

@@ -20,24 +20,24 @@ import (
 	"github.com/aliyun/alibaba-cloud-sdk-go/sdk/responses"
 )
 
-// ListCommodities invokes the aliyuncvc.ListCommodities API synchronously
-// api document: https://help.aliyun.com/api/aliyuncvc/listcommodities.html
-func (client *Client) ListCommodities(request *ListCommoditiesRequest) (response *ListCommoditiesResponse, err error) {
-	response = CreateListCommoditiesResponse()
+// ListUsers invokes the aliyuncvc.ListUsers API synchronously
+// api document: https://help.aliyun.com/api/aliyuncvc/listusers.html
+func (client *Client) ListUsers(request *ListUsersRequest) (response *ListUsersResponse, err error) {
+	response = CreateListUsersResponse()
 	err = client.DoAction(request, response)
 	return
 }
 
-// ListCommoditiesWithChan invokes the aliyuncvc.ListCommodities API asynchronously
-// api document: https://help.aliyun.com/api/aliyuncvc/listcommodities.html
+// ListUsersWithChan invokes the aliyuncvc.ListUsers API asynchronously
+// api document: https://help.aliyun.com/api/aliyuncvc/listusers.html
 // asynchronous document: https://help.aliyun.com/document_detail/66220.html
-func (client *Client) ListCommoditiesWithChan(request *ListCommoditiesRequest) (<-chan *ListCommoditiesResponse, <-chan error) {
-	responseChan := make(chan *ListCommoditiesResponse, 1)
+func (client *Client) ListUsersWithChan(request *ListUsersRequest) (<-chan *ListUsersResponse, <-chan error) {
+	responseChan := make(chan *ListUsersResponse, 1)
 	errChan := make(chan error, 1)
 	err := client.AddAsyncTask(func() {
 		defer close(responseChan)
 		defer close(errChan)
-		response, err := client.ListCommodities(request)
+		response, err := client.ListUsers(request)
 		if err != nil {
 			errChan <- err
 		} else {
@@ -52,16 +52,16 @@ func (client *Client) ListCommoditiesWithChan(request *ListCommoditiesRequest) (
 	return responseChan, errChan
 }
 
-// ListCommoditiesWithCallback invokes the aliyuncvc.ListCommodities API asynchronously
-// api document: https://help.aliyun.com/api/aliyuncvc/listcommodities.html
+// ListUsersWithCallback invokes the aliyuncvc.ListUsers API asynchronously
+// api document: https://help.aliyun.com/api/aliyuncvc/listusers.html
 // asynchronous document: https://help.aliyun.com/document_detail/66220.html
-func (client *Client) ListCommoditiesWithCallback(request *ListCommoditiesRequest, callback func(response *ListCommoditiesResponse, err error)) <-chan int {
+func (client *Client) ListUsersWithCallback(request *ListUsersRequest, callback func(response *ListUsersResponse, err error)) <-chan int {
 	result := make(chan int, 1)
 	err := client.AddAsyncTask(func() {
-		var response *ListCommoditiesResponse
+		var response *ListUsersResponse
 		var err error
 		defer close(result)
-		response, err = client.ListCommodities(request)
+		response, err = client.ListUsers(request)
 		callback(response, err)
 		result <- 1
 	})
@@ -73,17 +73,15 @@ func (client *Client) ListCommoditiesWithCallback(request *ListCommoditiesReques
 	return result
 }
 
-// ListCommoditiesRequest is the request struct for api ListCommodities
-type ListCommoditiesRequest struct {
+// ListUsersRequest is the request struct for api ListUsers
+type ListUsersRequest struct {
 	*requests.RpcRequest
 	PageSize   requests.Integer `position:"Query" name:"PageSize"`
-	EndTime    string           `position:"Query" name:"EndTime"`
-	StartTime  string           `position:"Query" name:"StartTime"`
 	PageNumber requests.Integer `position:"Query" name:"PageNumber"`
 }
 
-// ListCommoditiesResponse is the response struct for api ListCommodities
-type ListCommoditiesResponse struct {
+// ListUsersResponse is the response struct for api ListUsers
+type ListUsersResponse struct {
 	*responses.BaseResponse
 	ErrorCode int    `json:"ErrorCode" xml:"ErrorCode"`
 	Message   string `json:"Message" xml:"Message"`
@@ -92,18 +90,18 @@ type ListCommoditiesResponse struct {
 	Data      Data   `json:"Data" xml:"Data"`
 }
 
-// CreateListCommoditiesRequest creates a request to invoke ListCommodities API
-func CreateListCommoditiesRequest() (request *ListCommoditiesRequest) {
-	request = &ListCommoditiesRequest{
+// CreateListUsersRequest creates a request to invoke ListUsers API
+func CreateListUsersRequest() (request *ListUsersRequest) {
+	request = &ListUsersRequest{
 		RpcRequest: &requests.RpcRequest{},
 	}
-	request.InitWithApiInfo("aliyuncvc", "2019-09-19", "ListCommodities", "aliyuncvc", "openAPI")
+	request.InitWithApiInfo("aliyuncvc", "2019-10-30", "ListUsers", "aliyuncvc", "openAPI")
 	return
 }
 
-// CreateListCommoditiesResponse creates a response to parse from ListCommodities response
-func CreateListCommoditiesResponse() (response *ListCommoditiesResponse) {
-	response = &ListCommoditiesResponse{
+// CreateListUsersResponse creates a response to parse from ListUsers response
+func CreateListUsersResponse() (response *ListUsersResponse) {
+	response = &ListUsersResponse{
 		BaseResponse: &responses.BaseResponse{},
 	}
 	return

+ 0 - 107
services/aliyuncvc/query_isv_user_info.go

@@ -1,107 +0,0 @@
-package aliyuncvc
-
-//Licensed under the Apache License, Version 2.0 (the "License");
-//you may not use this file except in compliance with the License.
-//You may obtain a copy of the License at
-//
-//http://www.apache.org/licenses/LICENSE-2.0
-//
-//Unless required by applicable law or agreed to in writing, software
-//distributed under the License is distributed on an "AS IS" BASIS,
-//WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-//See the License for the specific language governing permissions and
-//limitations under the License.
-//
-// Code generated by Alibaba Cloud SDK Code Generator.
-// Changes may cause incorrect behavior and will be lost if the code is regenerated.
-
-import (
-	"github.com/aliyun/alibaba-cloud-sdk-go/sdk/requests"
-	"github.com/aliyun/alibaba-cloud-sdk-go/sdk/responses"
-)
-
-// QueryIsvUserInfo invokes the aliyuncvc.QueryIsvUserInfo API synchronously
-// api document: https://help.aliyun.com/api/aliyuncvc/queryisvuserinfo.html
-func (client *Client) QueryIsvUserInfo(request *QueryIsvUserInfoRequest) (response *QueryIsvUserInfoResponse, err error) {
-	response = CreateQueryIsvUserInfoResponse()
-	err = client.DoAction(request, response)
-	return
-}
-
-// QueryIsvUserInfoWithChan invokes the aliyuncvc.QueryIsvUserInfo API asynchronously
-// api document: https://help.aliyun.com/api/aliyuncvc/queryisvuserinfo.html
-// asynchronous document: https://help.aliyun.com/document_detail/66220.html
-func (client *Client) QueryIsvUserInfoWithChan(request *QueryIsvUserInfoRequest) (<-chan *QueryIsvUserInfoResponse, <-chan error) {
-	responseChan := make(chan *QueryIsvUserInfoResponse, 1)
-	errChan := make(chan error, 1)
-	err := client.AddAsyncTask(func() {
-		defer close(responseChan)
-		defer close(errChan)
-		response, err := client.QueryIsvUserInfo(request)
-		if err != nil {
-			errChan <- err
-		} else {
-			responseChan <- response
-		}
-	})
-	if err != nil {
-		errChan <- err
-		close(responseChan)
-		close(errChan)
-	}
-	return responseChan, errChan
-}
-
-// QueryIsvUserInfoWithCallback invokes the aliyuncvc.QueryIsvUserInfo API asynchronously
-// api document: https://help.aliyun.com/api/aliyuncvc/queryisvuserinfo.html
-// asynchronous document: https://help.aliyun.com/document_detail/66220.html
-func (client *Client) QueryIsvUserInfoWithCallback(request *QueryIsvUserInfoRequest, callback func(response *QueryIsvUserInfoResponse, err error)) <-chan int {
-	result := make(chan int, 1)
-	err := client.AddAsyncTask(func() {
-		var response *QueryIsvUserInfoResponse
-		var err error
-		defer close(result)
-		response, err = client.QueryIsvUserInfo(request)
-		callback(response, err)
-		result <- 1
-	})
-	if err != nil {
-		defer close(result)
-		callback(nil, err)
-		result <- 0
-	}
-	return result
-}
-
-// QueryIsvUserInfoRequest is the request struct for api QueryIsvUserInfo
-type QueryIsvUserInfoRequest struct {
-	*requests.RpcRequest
-	UserId string `position:"Query" name:"UserId"`
-}
-
-// QueryIsvUserInfoResponse is the response struct for api QueryIsvUserInfo
-type QueryIsvUserInfoResponse struct {
-	*responses.BaseResponse
-	ErrorCode int      `json:"ErrorCode" xml:"ErrorCode"`
-	Message   string   `json:"Message" xml:"Message"`
-	Success   bool     `json:"Success" xml:"Success"`
-	RequestId string   `json:"RequestId" xml:"RequestId"`
-	UserInfo  UserInfo `json:"UserInfo" xml:"UserInfo"`
-}
-
-// CreateQueryIsvUserInfoRequest creates a request to invoke QueryIsvUserInfo API
-func CreateQueryIsvUserInfoRequest() (request *QueryIsvUserInfoRequest) {
-	request = &QueryIsvUserInfoRequest{
-		RpcRequest: &requests.RpcRequest{},
-	}
-	request.InitWithApiInfo("aliyuncvc", "2019-09-19", "QueryIsvUserInfo", "aliyuncvc", "openAPI")
-	return
-}
-
-// CreateQueryIsvUserInfoResponse creates a response to parse from QueryIsvUserInfo response
-func CreateQueryIsvUserInfoResponse() (response *QueryIsvUserInfoResponse) {
-	response = &QueryIsvUserInfoResponse{
-		BaseResponse: &responses.BaseResponse{},
-	}
-	return
-}

+ 0 - 108
services/aliyuncvc/query_statistics.go

@@ -1,108 +0,0 @@
-package aliyuncvc
-
-//Licensed under the Apache License, Version 2.0 (the "License");
-//you may not use this file except in compliance with the License.
-//You may obtain a copy of the License at
-//
-//http://www.apache.org/licenses/LICENSE-2.0
-//
-//Unless required by applicable law or agreed to in writing, software
-//distributed under the License is distributed on an "AS IS" BASIS,
-//WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-//See the License for the specific language governing permissions and
-//limitations under the License.
-//
-// Code generated by Alibaba Cloud SDK Code Generator.
-// Changes may cause incorrect behavior and will be lost if the code is regenerated.
-
-import (
-	"github.com/aliyun/alibaba-cloud-sdk-go/sdk/requests"
-	"github.com/aliyun/alibaba-cloud-sdk-go/sdk/responses"
-)
-
-// QueryStatistics invokes the aliyuncvc.QueryStatistics API synchronously
-// api document: https://help.aliyun.com/api/aliyuncvc/querystatistics.html
-func (client *Client) QueryStatistics(request *QueryStatisticsRequest) (response *QueryStatisticsResponse, err error) {
-	response = CreateQueryStatisticsResponse()
-	err = client.DoAction(request, response)
-	return
-}
-
-// QueryStatisticsWithChan invokes the aliyuncvc.QueryStatistics API asynchronously
-// api document: https://help.aliyun.com/api/aliyuncvc/querystatistics.html
-// asynchronous document: https://help.aliyun.com/document_detail/66220.html
-func (client *Client) QueryStatisticsWithChan(request *QueryStatisticsRequest) (<-chan *QueryStatisticsResponse, <-chan error) {
-	responseChan := make(chan *QueryStatisticsResponse, 1)
-	errChan := make(chan error, 1)
-	err := client.AddAsyncTask(func() {
-		defer close(responseChan)
-		defer close(errChan)
-		response, err := client.QueryStatistics(request)
-		if err != nil {
-			errChan <- err
-		} else {
-			responseChan <- response
-		}
-	})
-	if err != nil {
-		errChan <- err
-		close(responseChan)
-		close(errChan)
-	}
-	return responseChan, errChan
-}
-
-// QueryStatisticsWithCallback invokes the aliyuncvc.QueryStatistics API asynchronously
-// api document: https://help.aliyun.com/api/aliyuncvc/querystatistics.html
-// asynchronous document: https://help.aliyun.com/document_detail/66220.html
-func (client *Client) QueryStatisticsWithCallback(request *QueryStatisticsRequest, callback func(response *QueryStatisticsResponse, err error)) <-chan int {
-	result := make(chan int, 1)
-	err := client.AddAsyncTask(func() {
-		var response *QueryStatisticsResponse
-		var err error
-		defer close(result)
-		response, err = client.QueryStatistics(request)
-		callback(response, err)
-		result <- 1
-	})
-	if err != nil {
-		defer close(result)
-		callback(nil, err)
-		result <- 0
-	}
-	return result
-}
-
-// QueryStatisticsRequest is the request struct for api QueryStatistics
-type QueryStatisticsRequest struct {
-	*requests.RpcRequest
-	EndTime   string `position:"Query" name:"EndTime"`
-	StartTime string `position:"Query" name:"StartTime"`
-}
-
-// QueryStatisticsResponse is the response struct for api QueryStatistics
-type QueryStatisticsResponse struct {
-	*responses.BaseResponse
-	ErrorCode int    `json:"ErrorCode" xml:"ErrorCode"`
-	Message   string `json:"Message" xml:"Message"`
-	Success   bool   `json:"Success" xml:"Success"`
-	RequestId string `json:"RequestId" xml:"RequestId"`
-	Data      Data   `json:"Data" xml:"Data"`
-}
-
-// CreateQueryStatisticsRequest creates a request to invoke QueryStatistics API
-func CreateQueryStatisticsRequest() (request *QueryStatisticsRequest) {
-	request = &QueryStatisticsRequest{
-		RpcRequest: &requests.RpcRequest{},
-	}
-	request.InitWithApiInfo("aliyuncvc", "2019-09-19", "QueryStatistics", "aliyuncvc", "openAPI")
-	return
-}
-
-// CreateQueryStatisticsResponse creates a response to parse from QueryStatistics response
-func CreateQueryStatisticsResponse() (response *QueryStatisticsResponse) {
-	response = &QueryStatisticsResponse{
-		BaseResponse: &responses.BaseResponse{},
-	}
-	return
-}

+ 0 - 106
services/aliyuncvc/query_user_buy_attribute.go

@@ -1,106 +0,0 @@
-package aliyuncvc
-
-//Licensed under the Apache License, Version 2.0 (the "License");
-//you may not use this file except in compliance with the License.
-//You may obtain a copy of the License at
-//
-//http://www.apache.org/licenses/LICENSE-2.0
-//
-//Unless required by applicable law or agreed to in writing, software
-//distributed under the License is distributed on an "AS IS" BASIS,
-//WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-//See the License for the specific language governing permissions and
-//limitations under the License.
-//
-// Code generated by Alibaba Cloud SDK Code Generator.
-// Changes may cause incorrect behavior and will be lost if the code is regenerated.
-
-import (
-	"github.com/aliyun/alibaba-cloud-sdk-go/sdk/requests"
-	"github.com/aliyun/alibaba-cloud-sdk-go/sdk/responses"
-)
-
-// QueryUserBuyAttribute invokes the aliyuncvc.QueryUserBuyAttribute API synchronously
-// api document: https://help.aliyun.com/api/aliyuncvc/queryuserbuyattribute.html
-func (client *Client) QueryUserBuyAttribute(request *QueryUserBuyAttributeRequest) (response *QueryUserBuyAttributeResponse, err error) {
-	response = CreateQueryUserBuyAttributeResponse()
-	err = client.DoAction(request, response)
-	return
-}
-
-// QueryUserBuyAttributeWithChan invokes the aliyuncvc.QueryUserBuyAttribute API asynchronously
-// api document: https://help.aliyun.com/api/aliyuncvc/queryuserbuyattribute.html
-// asynchronous document: https://help.aliyun.com/document_detail/66220.html
-func (client *Client) QueryUserBuyAttributeWithChan(request *QueryUserBuyAttributeRequest) (<-chan *QueryUserBuyAttributeResponse, <-chan error) {
-	responseChan := make(chan *QueryUserBuyAttributeResponse, 1)
-	errChan := make(chan error, 1)
-	err := client.AddAsyncTask(func() {
-		defer close(responseChan)
-		defer close(errChan)
-		response, err := client.QueryUserBuyAttribute(request)
-		if err != nil {
-			errChan <- err
-		} else {
-			responseChan <- response
-		}
-	})
-	if err != nil {
-		errChan <- err
-		close(responseChan)
-		close(errChan)
-	}
-	return responseChan, errChan
-}
-
-// QueryUserBuyAttributeWithCallback invokes the aliyuncvc.QueryUserBuyAttribute API asynchronously
-// api document: https://help.aliyun.com/api/aliyuncvc/queryuserbuyattribute.html
-// asynchronous document: https://help.aliyun.com/document_detail/66220.html
-func (client *Client) QueryUserBuyAttributeWithCallback(request *QueryUserBuyAttributeRequest, callback func(response *QueryUserBuyAttributeResponse, err error)) <-chan int {
-	result := make(chan int, 1)
-	err := client.AddAsyncTask(func() {
-		var response *QueryUserBuyAttributeResponse
-		var err error
-		defer close(result)
-		response, err = client.QueryUserBuyAttribute(request)
-		callback(response, err)
-		result <- 1
-	})
-	if err != nil {
-		defer close(result)
-		callback(nil, err)
-		result <- 0
-	}
-	return result
-}
-
-// QueryUserBuyAttributeRequest is the request struct for api QueryUserBuyAttribute
-type QueryUserBuyAttributeRequest struct {
-	*requests.RpcRequest
-}
-
-// QueryUserBuyAttributeResponse is the response struct for api QueryUserBuyAttribute
-type QueryUserBuyAttributeResponse struct {
-	*responses.BaseResponse
-	ErrorCode        int    `json:"ErrorCode" xml:"ErrorCode"`
-	Message          string `json:"Message" xml:"Message"`
-	Success          bool   `json:"Success" xml:"Success"`
-	UserBuyAttribute bool   `json:"UserBuyAttribute" xml:"UserBuyAttribute"`
-	RequestId        string `json:"RequestId" xml:"RequestId"`
-}
-
-// CreateQueryUserBuyAttributeRequest creates a request to invoke QueryUserBuyAttribute API
-func CreateQueryUserBuyAttributeRequest() (request *QueryUserBuyAttributeRequest) {
-	request = &QueryUserBuyAttributeRequest{
-		RpcRequest: &requests.RpcRequest{},
-	}
-	request.InitWithApiInfo("aliyuncvc", "2019-09-19", "QueryUserBuyAttribute", "aliyuncvc", "openAPI")
-	return
-}
-
-// CreateQueryUserBuyAttributeResponse creates a response to parse from QueryUserBuyAttribute response
-func CreateQueryUserBuyAttributeResponse() (response *QueryUserBuyAttributeResponse) {
-	response = &QueryUserBuyAttributeResponse{
-		BaseResponse: &responses.BaseResponse{},
-	}
-	return
-}

+ 0 - 108
services/aliyuncvc/query_user_list.go

@@ -1,108 +0,0 @@
-package aliyuncvc
-
-//Licensed under the Apache License, Version 2.0 (the "License");
-//you may not use this file except in compliance with the License.
-//You may obtain a copy of the License at
-//
-//http://www.apache.org/licenses/LICENSE-2.0
-//
-//Unless required by applicable law or agreed to in writing, software
-//distributed under the License is distributed on an "AS IS" BASIS,
-//WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-//See the License for the specific language governing permissions and
-//limitations under the License.
-//
-// Code generated by Alibaba Cloud SDK Code Generator.
-// Changes may cause incorrect behavior and will be lost if the code is regenerated.
-
-import (
-	"github.com/aliyun/alibaba-cloud-sdk-go/sdk/requests"
-	"github.com/aliyun/alibaba-cloud-sdk-go/sdk/responses"
-)
-
-// QueryUserList invokes the aliyuncvc.QueryUserList API synchronously
-// api document: https://help.aliyun.com/api/aliyuncvc/queryuserlist.html
-func (client *Client) QueryUserList(request *QueryUserListRequest) (response *QueryUserListResponse, err error) {
-	response = CreateQueryUserListResponse()
-	err = client.DoAction(request, response)
-	return
-}
-
-// QueryUserListWithChan invokes the aliyuncvc.QueryUserList API asynchronously
-// api document: https://help.aliyun.com/api/aliyuncvc/queryuserlist.html
-// asynchronous document: https://help.aliyun.com/document_detail/66220.html
-func (client *Client) QueryUserListWithChan(request *QueryUserListRequest) (<-chan *QueryUserListResponse, <-chan error) {
-	responseChan := make(chan *QueryUserListResponse, 1)
-	errChan := make(chan error, 1)
-	err := client.AddAsyncTask(func() {
-		defer close(responseChan)
-		defer close(errChan)
-		response, err := client.QueryUserList(request)
-		if err != nil {
-			errChan <- err
-		} else {
-			responseChan <- response
-		}
-	})
-	if err != nil {
-		errChan <- err
-		close(responseChan)
-		close(errChan)
-	}
-	return responseChan, errChan
-}
-
-// QueryUserListWithCallback invokes the aliyuncvc.QueryUserList API asynchronously
-// api document: https://help.aliyun.com/api/aliyuncvc/queryuserlist.html
-// asynchronous document: https://help.aliyun.com/document_detail/66220.html
-func (client *Client) QueryUserListWithCallback(request *QueryUserListRequest, callback func(response *QueryUserListResponse, err error)) <-chan int {
-	result := make(chan int, 1)
-	err := client.AddAsyncTask(func() {
-		var response *QueryUserListResponse
-		var err error
-		defer close(result)
-		response, err = client.QueryUserList(request)
-		callback(response, err)
-		result <- 1
-	})
-	if err != nil {
-		defer close(result)
-		callback(nil, err)
-		result <- 0
-	}
-	return result
-}
-
-// QueryUserListRequest is the request struct for api QueryUserList
-type QueryUserListRequest struct {
-	*requests.RpcRequest
-	PageSize requests.Integer `position:"Query" name:"PageSize"`
-	PageNum  requests.Integer `position:"Query" name:"PageNum"`
-}
-
-// QueryUserListResponse is the response struct for api QueryUserList
-type QueryUserListResponse struct {
-	*responses.BaseResponse
-	ErrorCode int    `json:"ErrorCode" xml:"ErrorCode"`
-	Message   string `json:"Message" xml:"Message"`
-	Success   bool   `json:"Success" xml:"Success"`
-	RequestId string `json:"RequestId" xml:"RequestId"`
-	Data      Data   `json:"Data" xml:"Data"`
-}
-
-// CreateQueryUserListRequest creates a request to invoke QueryUserList API
-func CreateQueryUserListRequest() (request *QueryUserListRequest) {
-	request = &QueryUserListRequest{
-		RpcRequest: &requests.RpcRequest{},
-	}
-	request.InitWithApiInfo("aliyuncvc", "2019-09-19", "QueryUserList", "aliyuncvc", "openAPI")
-	return
-}
-
-// CreateQueryUserListResponse creates a response to parse from QueryUserList response
-func CreateQueryUserListResponse() (response *QueryUserListResponse) {
-	response = &QueryUserListResponse{
-		BaseResponse: &responses.BaseResponse{},
-	}
-	return
-}

+ 0 - 21
services/aliyuncvc/struct_commodities.go

@@ -1,21 +0,0 @@
-package aliyuncvc
-
-//Licensed under the Apache License, Version 2.0 (the "License");
-//you may not use this file except in compliance with the License.
-//You may obtain a copy of the License at
-//
-//http://www.apache.org/licenses/LICENSE-2.0
-//
-//Unless required by applicable law or agreed to in writing, software
-//distributed under the License is distributed on an "AS IS" BASIS,
-//WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-//See the License for the specific language governing permissions and
-//limitations under the License.
-//
-// Code generated by Alibaba Cloud SDK Code Generator.
-// Changes may cause incorrect behavior and will be lost if the code is regenerated.
-
-// Commodities is a nested struct in aliyuncvc response
-type Commodities struct {
-	Commodity []Commodity `json:"Commodity" xml:"Commodity"`
-}

+ 0 - 23
services/aliyuncvc/struct_commodity.go

@@ -1,23 +0,0 @@
-package aliyuncvc
-
-//Licensed under the Apache License, Version 2.0 (the "License");
-//you may not use this file except in compliance with the License.
-//You may obtain a copy of the License at
-//
-//http://www.apache.org/licenses/LICENSE-2.0
-//
-//Unless required by applicable law or agreed to in writing, software
-//distributed under the License is distributed on an "AS IS" BASIS,
-//WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-//See the License for the specific language governing permissions and
-//limitations under the License.
-//
-// Code generated by Alibaba Cloud SDK Code Generator.
-// Changes may cause incorrect behavior and will be lost if the code is regenerated.
-
-// Commodity is a nested struct in aliyuncvc response
-type Commodity struct {
-	EndTime               string `json:"EndTime" xml:"EndTime"`
-	Instancepropertyvalue string `json:"Instancepropertyvalue" xml:"Instancepropertyvalue"`
-	StartTime             string `json:"StartTime" xml:"StartTime"`
-}

+ 4 - 7
services/aliyuncvc/struct_data.go

@@ -17,11 +17,8 @@ package aliyuncvc
 
 // Data is a nested struct in aliyuncvc response
 type Data struct {
-	TotalCount  int           `json:"TotalCount" xml:"TotalCount"`
-	PageNumber  int           `json:"PageNumber" xml:"PageNumber"`
-	PageSize    int           `json:"PageSize" xml:"PageSize"`
-	Total       Total         `json:"Total" xml:"Total"`
-	DayInfo     []DayInfoItem `json:"DayInfo" xml:"DayInfo"`
-	Commodities []Commodity   `json:"Commodities" xml:"Commodities"`
-	UserInfos   []UserInfo    `json:"UserInfos" xml:"UserInfos"`
+	TotalCount int        `json:"TotalCount" xml:"TotalCount"`
+	PageSize   int        `json:"PageSize" xml:"PageSize"`
+	PageNumber int        `json:"PageNumber" xml:"PageNumber"`
+	UserInfos  []UserInfo `json:"UserInfos" xml:"UserInfos"`
 }

+ 0 - 21
services/aliyuncvc/struct_day_info.go

@@ -1,21 +0,0 @@
-package aliyuncvc
-
-//Licensed under the Apache License, Version 2.0 (the "License");
-//you may not use this file except in compliance with the License.
-//You may obtain a copy of the License at
-//
-//http://www.apache.org/licenses/LICENSE-2.0
-//
-//Unless required by applicable law or agreed to in writing, software
-//distributed under the License is distributed on an "AS IS" BASIS,
-//WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-//See the License for the specific language governing permissions and
-//limitations under the License.
-//
-// Code generated by Alibaba Cloud SDK Code Generator.
-// Changes may cause incorrect behavior and will be lost if the code is regenerated.
-
-// DayInfo is a nested struct in aliyuncvc response
-type DayInfo struct {
-	DayInfoItem []DayInfoItem `json:"DayInfo" xml:"DayInfo"`
-}

+ 0 - 24
services/aliyuncvc/struct_day_info_item.go

@@ -1,24 +0,0 @@
-package aliyuncvc
-
-//Licensed under the Apache License, Version 2.0 (the "License");
-//you may not use this file except in compliance with the License.
-//You may obtain a copy of the License at
-//
-//http://www.apache.org/licenses/LICENSE-2.0
-//
-//Unless required by applicable law or agreed to in writing, software
-//distributed under the License is distributed on an "AS IS" BASIS,
-//WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-//See the License for the specific language governing permissions and
-//limitations under the License.
-//
-// Code generated by Alibaba Cloud SDK Code Generator.
-// Changes may cause incorrect behavior and will be lost if the code is regenerated.
-
-// DayInfoItem is a nested struct in aliyuncvc response
-type DayInfoItem struct {
-	MeetingNum    string `json:"MeetingNum" xml:"MeetingNum"`
-	MeetingLength string `json:"MeetingLength" xml:"MeetingLength"`
-	MemberNum     string `json:"MemberNum" xml:"MemberNum"`
-	Day           string `json:"Day" xml:"Day"`
-}

+ 16 - 16
services/aliyuncvc/struct_meeting_info.go

@@ -17,20 +17,20 @@ package aliyuncvc
 
 // MeetingInfo is a nested struct in aliyuncvc response
 type MeetingInfo struct {
-	ValidDate         int64            `json:"ValidDate" xml:"ValidDate"`
-	MeetingToken      string           `json:"MeetingToken" xml:"MeetingToken"`
-	MeetingUUID       string           `json:"MeetingUUID" xml:"MeetingUUID"`
-	MeetingAppId      string           `json:"MeetingAppId" xml:"MeetingAppId"`
-	MeetingCode       string           `json:"MeetingCode" xml:"MeetingCode"`
-	MemberUUID        string           `json:"MemberUUID" xml:"MemberUUID"`
-	ClientAppId       string           `json:"ClientAppId" xml:"ClientAppId"`
-	UserId            string           `json:"UserId" xml:"UserId"`
-	MeetingName       string           `json:"MeetingName" xml:"MeetingName"`
-	UserName          string           `json:"UserName" xml:"UserName"`
-	MeetingDomain     string           `json:"MeetingDomain" xml:"MeetingDomain"`
-	Memo              string           `json:"Memo" xml:"Memo"`
-	CreateDate        int64            `json:"CreateDate" xml:"CreateDate"`
-	SlsInfo           SlsInfo          `json:"SlsInfo" xml:"SlsInfo"`
-	MemberList        []MemberListItem `json:"MemberList" xml:"MemberList"`
-	MemberRecordsList []MemberRecord   `json:"MemberRecordsList" xml:"MemberRecordsList"`
+	MeetingToken  string           `json:"MeetingToken" xml:"MeetingToken"`
+	MeetingUUID   string           `json:"MeetingUUID" xml:"MeetingUUID"`
+	CreateTime    int64            `json:"CreateTime" xml:"CreateTime"`
+	MeetingAppId  string           `json:"MeetingAppId" xml:"MeetingAppId"`
+	MeetingCode   string           `json:"MeetingCode" xml:"MeetingCode"`
+	MemberUUID    string           `json:"MemberUUID" xml:"MemberUUID"`
+	ValidTime     int64            `json:"ValidTime" xml:"ValidTime"`
+	ClientAppId   string           `json:"ClientAppId" xml:"ClientAppId"`
+	UserId        string           `json:"UserId" xml:"UserId"`
+	MeetingName   string           `json:"MeetingName" xml:"MeetingName"`
+	UserName      string           `json:"UserName" xml:"UserName"`
+	MeetingDomain string           `json:"MeetingDomain" xml:"MeetingDomain"`
+	Memo          string           `json:"Memo" xml:"Memo"`
+	SlsInfo       SlsInfo          `json:"SlsInfo" xml:"SlsInfo"`
+	MemberList    []MemberListItem `json:"MemberList" xml:"MemberList"`
+	MemberInfos   []MemberRecord   `json:"MemberInfos" xml:"MemberInfos"`
 }

+ 2 - 2
services/aliyuncvc/struct_member_records_list.go → services/aliyuncvc/struct_member_infos.go

@@ -15,7 +15,7 @@ package aliyuncvc
 // Code generated by Alibaba Cloud SDK Code Generator.
 // Changes may cause incorrect behavior and will be lost if the code is regenerated.
 
-// MemberRecordsList is a nested struct in aliyuncvc response
-type MemberRecordsList struct {
+// MemberInfos is a nested struct in aliyuncvc response
+type MemberInfos struct {
 	MemberRecord []MemberRecord `json:"MemberRecord" xml:"MemberRecord"`
 }

+ 3 - 0
services/aliyuncvc/struct_member_record.go

@@ -20,4 +20,7 @@ type MemberRecord struct {
 	MemberUUID string `json:"MemberUUID" xml:"MemberUUID"`
 	UserId     string `json:"UserId" xml:"UserId"`
 	Status     string `json:"Status" xml:"Status"`
+	BeginTime  int64  `json:"BeginTime" xml:"BeginTime"`
+	EndTime    int64  `json:"EndTime" xml:"EndTime"`
+	UserName   string `json:"UserName" xml:"UserName"`
 }

+ 0 - 23
services/aliyuncvc/struct_total.go

@@ -1,23 +0,0 @@
-package aliyuncvc
-
-//Licensed under the Apache License, Version 2.0 (the "License");
-//you may not use this file except in compliance with the License.
-//You may obtain a copy of the License at
-//
-//http://www.apache.org/licenses/LICENSE-2.0
-//
-//Unless required by applicable law or agreed to in writing, software
-//distributed under the License is distributed on an "AS IS" BASIS,
-//WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-//See the License for the specific language governing permissions and
-//limitations under the License.
-//
-// Code generated by Alibaba Cloud SDK Code Generator.
-// Changes may cause incorrect behavior and will be lost if the code is regenerated.
-
-// Total is a nested struct in aliyuncvc response
-type Total struct {
-	MeetingNum    int `json:"MeetingNum" xml:"MeetingNum"`
-	MeetingLength int `json:"MeetingLength" xml:"MeetingLength"`
-	MemberNum     int `json:"MemberNum" xml:"MemberNum"`
-}

+ 11 - 14
services/aliyuncvc/struct_user_info.go

@@ -17,18 +17,15 @@ package aliyuncvc
 
 // UserInfo is a nested struct in aliyuncvc response
 type UserInfo struct {
-	UserMobile          string `json:"UserMobile" xml:"UserMobile"`
-	CurNum              int    `json:"CurNum" xml:"CurNum"`
-	DepartName          string `json:"DepartName" xml:"DepartName"`
-	GroupName           string `json:"GroupName" xml:"GroupName"`
-	CreateTime          int64  `json:"CreateTime" xml:"CreateTime"`
-	UserTel             string `json:"UserTel" xml:"UserTel"`
-	UserAvatarUrl       string `json:"UserAvatarUrl" xml:"UserAvatarUrl"`
-	UserId              string `json:"UserId" xml:"UserId"`
-	UserName            string `json:"UserName" xml:"UserName"`
-	GroupId             string `json:"GroupId" xml:"GroupId"`
-	MaxNum              int    `json:"MaxNum" xml:"MaxNum"`
-	DepartId            string `json:"DepartId" xml:"DepartId"`
-	UserEmail           string `json:"UserEmail" xml:"UserEmail"`
-	MemberConcurrentMax int    `json:"MemberConcurrentMax" xml:"MemberConcurrentMax"`
+	UserMobile    string `json:"UserMobile" xml:"UserMobile"`
+	UserAvatarUrl string `json:"UserAvatarUrl" xml:"UserAvatarUrl"`
+	UserId        string `json:"UserId" xml:"UserId"`
+	DepartName    string `json:"DepartName" xml:"DepartName"`
+	UserName      string `json:"UserName" xml:"UserName"`
+	GroupName     string `json:"GroupName" xml:"GroupName"`
+	GroupId       string `json:"GroupId" xml:"GroupId"`
+	CreateTime    int64  `json:"CreateTime" xml:"CreateTime"`
+	DepartId      string `json:"DepartId" xml:"DepartId"`
+	UserTel       string `json:"UserTel" xml:"UserTel"`
+	UserEmail     string `json:"UserEmail" xml:"UserEmail"`
 }