index
int64 | repo_id
string | file_path
string | content
string |
|---|---|---|---|
0
|
java-sources/com/aliyun/aliyun-java-sdk-aliyuncvc-v5/1.0.9/com/aliyuncs/v5/aliyuncvc/model
|
java-sources/com/aliyun/aliyun-java-sdk-aliyuncvc-v5/1.0.9/com/aliyuncs/v5/aliyuncvc/model/v20191030/ActiveDeviceResponse.java
|
/*
* 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.
*/
package com.aliyuncs.v5.aliyuncvc.model.v20191030;
import com.aliyuncs.v5.AcsResponse;
import com.aliyuncs.v5.aliyuncvc.transform.v20191030.ActiveDeviceResponseUnmarshaller;
import com.aliyuncs.v5.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class ActiveDeviceResponse extends AcsResponse {
private Integer errorCode;
private String message;
private Boolean success;
private String requestId;
private String token;
public Integer getErrorCode() {
return this.errorCode;
}
public void setErrorCode(Integer errorCode) {
this.errorCode = errorCode;
}
public String getMessage() {
return this.message;
}
public void setMessage(String message) {
this.message = message;
}
public Boolean getSuccess() {
return this.success;
}
public void setSuccess(Boolean success) {
this.success = success;
}
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public String getToken() {
return this.token;
}
public void setToken(String token) {
this.token = token;
}
@Override
public ActiveDeviceResponse getInstance(UnmarshallerContext context) {
return ActiveDeviceResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-aliyuncvc-v5/1.0.9/com/aliyuncs/v5/aliyuncvc/model
|
java-sources/com/aliyun/aliyun-java-sdk-aliyuncvc-v5/1.0.9/com/aliyuncs/v5/aliyuncvc/model/v20191030/ActiveMeetingRequest.java
|
/*
* 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.
*/
package com.aliyuncs.v5.aliyuncvc.model.v20191030;
import com.aliyuncs.v5.RpcAcsRequest;
import com.aliyuncs.v5.http.MethodType;
import com.aliyuncs.v5.aliyuncvc.Endpoint;
/**
* @author auto create
* @version
*/
public class ActiveMeetingRequest extends RpcAcsRequest<ActiveMeetingResponse> {
private String meetingUUID;
private String meetingCode;
public ActiveMeetingRequest() {
super("aliyuncvc", "2019-10-30", "ActiveMeeting", "aliyuncvc");
setMethod(MethodType.POST);
try {
com.aliyuncs.v5.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap);
com.aliyuncs.v5.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType);
} catch (Exception e) {}
}
public String getMeetingUUID() {
return this.meetingUUID;
}
public void setMeetingUUID(String meetingUUID) {
this.meetingUUID = meetingUUID;
if(meetingUUID != null){
putQueryParameter("MeetingUUID", meetingUUID);
}
}
public String getMeetingCode() {
return this.meetingCode;
}
public void setMeetingCode(String meetingCode) {
this.meetingCode = meetingCode;
if(meetingCode != null){
putQueryParameter("MeetingCode", meetingCode);
}
}
@Override
public Class<ActiveMeetingResponse> getResponseClass() {
return ActiveMeetingResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-aliyuncvc-v5/1.0.9/com/aliyuncs/v5/aliyuncvc/model
|
java-sources/com/aliyun/aliyun-java-sdk-aliyuncvc-v5/1.0.9/com/aliyuncs/v5/aliyuncvc/model/v20191030/ActiveMeetingResponse.java
|
/*
* 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.
*/
package com.aliyuncs.v5.aliyuncvc.model.v20191030;
import com.aliyuncs.v5.AcsResponse;
import com.aliyuncs.v5.aliyuncvc.transform.v20191030.ActiveMeetingResponseUnmarshaller;
import com.aliyuncs.v5.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class ActiveMeetingResponse extends AcsResponse {
private Integer errorCode;
private String message;
private Boolean success;
private String requestId;
private MeetingInfo meetingInfo;
public Integer getErrorCode() {
return this.errorCode;
}
public void setErrorCode(Integer errorCode) {
this.errorCode = errorCode;
}
public String getMessage() {
return this.message;
}
public void setMessage(String message) {
this.message = message;
}
public Boolean getSuccess() {
return this.success;
}
public void setSuccess(Boolean success) {
this.success = success;
}
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public MeetingInfo getMeetingInfo() {
return this.meetingInfo;
}
public void setMeetingInfo(MeetingInfo meetingInfo) {
this.meetingInfo = meetingInfo;
}
public static class MeetingInfo {
private Long validTime;
private String meetingCode;
public Long getValidTime() {
return this.validTime;
}
public void setValidTime(Long validTime) {
this.validTime = validTime;
}
public String getMeetingCode() {
return this.meetingCode;
}
public void setMeetingCode(String meetingCode) {
this.meetingCode = meetingCode;
}
}
@Override
public ActiveMeetingResponse getInstance(UnmarshallerContext context) {
return ActiveMeetingResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-aliyuncvc-v5/1.0.9/com/aliyuncs/v5/aliyuncvc/model
|
java-sources/com/aliyun/aliyun-java-sdk-aliyuncvc-v5/1.0.9/com/aliyuncs/v5/aliyuncvc/model/v20191030/BatchCreateDeviceRequest.java
|
/*
* 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.
*/
package com.aliyuncs.v5.aliyuncvc.model.v20191030;
import com.aliyuncs.v5.RpcAcsRequest;
import com.aliyuncs.v5.http.MethodType;
import com.aliyuncs.v5.aliyuncvc.Endpoint;
/**
* @author auto create
* @version
*/
public class BatchCreateDeviceRequest extends RpcAcsRequest<BatchCreateDeviceResponse> {
private String sN;
public BatchCreateDeviceRequest() {
super("aliyuncvc", "2019-10-30", "BatchCreateDevice", "aliyuncvc");
setMethod(MethodType.POST);
try {
com.aliyuncs.v5.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap);
com.aliyuncs.v5.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType);
} catch (Exception e) {}
}
public String getSN() {
return this.sN;
}
public void setSN(String sN) {
this.sN = sN;
if(sN != null){
putBodyParameter("SN", sN);
}
}
@Override
public Class<BatchCreateDeviceResponse> getResponseClass() {
return BatchCreateDeviceResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-aliyuncvc-v5/1.0.9/com/aliyuncs/v5/aliyuncvc/model
|
java-sources/com/aliyun/aliyun-java-sdk-aliyuncvc-v5/1.0.9/com/aliyuncs/v5/aliyuncvc/model/v20191030/BatchCreateDeviceResponse.java
|
/*
* 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.
*/
package com.aliyuncs.v5.aliyuncvc.model.v20191030;
import java.util.List;
import com.aliyuncs.v5.AcsResponse;
import com.aliyuncs.v5.aliyuncvc.transform.v20191030.BatchCreateDeviceResponseUnmarshaller;
import com.aliyuncs.v5.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class BatchCreateDeviceResponse extends AcsResponse {
private Integer errorCode;
private String message;
private Boolean success;
private List<Data> devices;
public Integer getErrorCode() {
return this.errorCode;
}
public void setErrorCode(Integer errorCode) {
this.errorCode = errorCode;
}
public String getMessage() {
return this.message;
}
public void setMessage(String message) {
this.message = message;
}
public Boolean getSuccess() {
return this.success;
}
public void setSuccess(Boolean success) {
this.success = success;
}
public List<Data> getDevices() {
return this.devices;
}
public void setDevices(List<Data> devices) {
this.devices = devices;
}
public static class Data {
private Integer deviceErrorCode;
private String deviceMessage;
private String sN;
private String activeCode;
public Integer getDeviceErrorCode() {
return this.deviceErrorCode;
}
public void setDeviceErrorCode(Integer deviceErrorCode) {
this.deviceErrorCode = deviceErrorCode;
}
public String getDeviceMessage() {
return this.deviceMessage;
}
public void setDeviceMessage(String deviceMessage) {
this.deviceMessage = deviceMessage;
}
public String getSN() {
return this.sN;
}
public void setSN(String sN) {
this.sN = sN;
}
public String getActiveCode() {
return this.activeCode;
}
public void setActiveCode(String activeCode) {
this.activeCode = activeCode;
}
}
@Override
public BatchCreateDeviceResponse getInstance(UnmarshallerContext context) {
return BatchCreateDeviceResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-aliyuncvc-v5/1.0.9/com/aliyuncs/v5/aliyuncvc/model
|
java-sources/com/aliyun/aliyun-java-sdk-aliyuncvc-v5/1.0.9/com/aliyuncs/v5/aliyuncvc/model/v20191030/CreateDeviceMeetingRequest.java
|
/*
* 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.
*/
package com.aliyuncs.v5.aliyuncvc.model.v20191030;
import com.aliyuncs.v5.RpcAcsRequest;
import com.aliyuncs.v5.http.MethodType;
import com.aliyuncs.v5.aliyuncvc.Endpoint;
/**
* @author auto create
* @version
*/
public class CreateDeviceMeetingRequest extends RpcAcsRequest<CreateDeviceMeetingResponse> {
private String meetingName;
private Boolean openPasswordtag;
private String token;
private String password;
private String sN;
public CreateDeviceMeetingRequest() {
super("aliyuncvc", "2019-10-30", "CreateDeviceMeeting", "aliyuncvc");
setMethod(MethodType.POST);
try {
com.aliyuncs.v5.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap);
com.aliyuncs.v5.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType);
} catch (Exception e) {}
}
public String getMeetingName() {
return this.meetingName;
}
public void setMeetingName(String meetingName) {
this.meetingName = meetingName;
if(meetingName != null){
putBodyParameter("MeetingName", meetingName);
}
}
public Boolean getOpenPasswordtag() {
return this.openPasswordtag;
}
public void setOpenPasswordtag(Boolean openPasswordtag) {
this.openPasswordtag = openPasswordtag;
if(openPasswordtag != null){
putBodyParameter("OpenPasswordtag", openPasswordtag.toString());
}
}
public String getToken() {
return this.token;
}
public void setToken(String token) {
this.token = token;
if(token != null){
putBodyParameter("Token", token);
}
}
public String getPassword() {
return this.password;
}
public void setPassword(String password) {
this.password = password;
if(password != null){
putBodyParameter("Password", password);
}
}
public String getSN() {
return this.sN;
}
public void setSN(String sN) {
this.sN = sN;
if(sN != null){
putBodyParameter("SN", sN);
}
}
@Override
public Class<CreateDeviceMeetingResponse> getResponseClass() {
return CreateDeviceMeetingResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-aliyuncvc-v5/1.0.9/com/aliyuncs/v5/aliyuncvc/model
|
java-sources/com/aliyun/aliyun-java-sdk-aliyuncvc-v5/1.0.9/com/aliyuncs/v5/aliyuncvc/model/v20191030/CreateDeviceMeetingResponse.java
|
/*
* 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.
*/
package com.aliyuncs.v5.aliyuncvc.model.v20191030;
import com.aliyuncs.v5.AcsResponse;
import com.aliyuncs.v5.aliyuncvc.transform.v20191030.CreateDeviceMeetingResponseUnmarshaller;
import com.aliyuncs.v5.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class CreateDeviceMeetingResponse extends AcsResponse {
private Integer errorCode;
private String message;
private Boolean success;
private String requestId;
private Devices devices;
public Integer getErrorCode() {
return this.errorCode;
}
public void setErrorCode(Integer errorCode) {
this.errorCode = errorCode;
}
public String getMessage() {
return this.message;
}
public void setMessage(String message) {
this.message = message;
}
public Boolean getSuccess() {
return this.success;
}
public void setSuccess(Boolean success) {
this.success = success;
}
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public Devices getDevices() {
return this.devices;
}
public void setDevices(Devices devices) {
this.devices = devices;
}
public static class Devices {
private String meetingCode;
private String meetingUUID;
public String getMeetingCode() {
return this.meetingCode;
}
public void setMeetingCode(String meetingCode) {
this.meetingCode = meetingCode;
}
public String getMeetingUUID() {
return this.meetingUUID;
}
public void setMeetingUUID(String meetingUUID) {
this.meetingUUID = meetingUUID;
}
}
@Override
public CreateDeviceMeetingResponse getInstance(UnmarshallerContext context) {
return CreateDeviceMeetingResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-aliyuncvc-v5/1.0.9/com/aliyuncs/v5/aliyuncvc/model
|
java-sources/com/aliyun/aliyun-java-sdk-aliyuncvc-v5/1.0.9/com/aliyuncs/v5/aliyuncvc/model/v20191030/CreateEvaluationRequest.java
|
/*
* 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.
*/
package com.aliyuncs.v5.aliyuncvc.model.v20191030;
import com.aliyuncs.v5.RpcAcsRequest;
import com.aliyuncs.v5.http.MethodType;
import com.aliyuncs.v5.aliyuncvc.Endpoint;
/**
* @author auto create
* @version
*/
public class CreateEvaluationRequest extends RpcAcsRequest<CreateEvaluationResponse> {
private Long createTime;
private String memo;
private String description;
private String memberUUID;
private String userId;
private String evaluation;
private String score;
private String meetingUUID;
public CreateEvaluationRequest() {
super("aliyuncvc", "2019-10-30", "CreateEvaluation", "aliyuncvc");
setMethod(MethodType.POST);
try {
com.aliyuncs.v5.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap);
com.aliyuncs.v5.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType);
} catch (Exception e) {}
}
public Long getCreateTime() {
return this.createTime;
}
public void setCreateTime(Long createTime) {
this.createTime = createTime;
if(createTime != null){
putQueryParameter("CreateTime", createTime.toString());
}
}
public String getMemo() {
return this.memo;
}
public void setMemo(String memo) {
this.memo = memo;
if(memo != null){
putQueryParameter("Memo", memo);
}
}
public String getDescription() {
return this.description;
}
public void setDescription(String description) {
this.description = description;
if(description != null){
putQueryParameter("Description", description);
}
}
public String getMemberUUID() {
return this.memberUUID;
}
public void setMemberUUID(String memberUUID) {
this.memberUUID = memberUUID;
if(memberUUID != null){
putQueryParameter("MemberUUID", memberUUID);
}
}
public String getUserId() {
return this.userId;
}
public void setUserId(String userId) {
this.userId = userId;
if(userId != null){
putQueryParameter("UserId", userId);
}
}
public String getEvaluation() {
return this.evaluation;
}
public void setEvaluation(String evaluation) {
this.evaluation = evaluation;
if(evaluation != null){
putQueryParameter("Evaluation", evaluation);
}
}
public String getScore() {
return this.score;
}
public void setScore(String score) {
this.score = score;
if(score != null){
putQueryParameter("Score", score);
}
}
public String getMeetingUUID() {
return this.meetingUUID;
}
public void setMeetingUUID(String meetingUUID) {
this.meetingUUID = meetingUUID;
if(meetingUUID != null){
putQueryParameter("MeetingUUID", meetingUUID);
}
}
@Override
public Class<CreateEvaluationResponse> getResponseClass() {
return CreateEvaluationResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-aliyuncvc-v5/1.0.9/com/aliyuncs/v5/aliyuncvc/model
|
java-sources/com/aliyun/aliyun-java-sdk-aliyuncvc-v5/1.0.9/com/aliyuncs/v5/aliyuncvc/model/v20191030/CreateEvaluationResponse.java
|
/*
* 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.
*/
package com.aliyuncs.v5.aliyuncvc.model.v20191030;
import com.aliyuncs.v5.AcsResponse;
import com.aliyuncs.v5.aliyuncvc.transform.v20191030.CreateEvaluationResponseUnmarshaller;
import com.aliyuncs.v5.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class CreateEvaluationResponse extends AcsResponse {
private String requestId;
private Boolean success;
private String errorCode;
private String message;
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public Boolean getSuccess() {
return this.success;
}
public void setSuccess(Boolean success) {
this.success = success;
}
public String getErrorCode() {
return this.errorCode;
}
public void setErrorCode(String errorCode) {
this.errorCode = errorCode;
}
public String getMessage() {
return this.message;
}
public void setMessage(String message) {
this.message = message;
}
@Override
public CreateEvaluationResponse getInstance(UnmarshallerContext context) {
return CreateEvaluationResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-aliyuncvc-v5/1.0.9/com/aliyuncs/v5/aliyuncvc/model
|
java-sources/com/aliyun/aliyun-java-sdk-aliyuncvc-v5/1.0.9/com/aliyuncs/v5/aliyuncvc/model/v20191030/CreateLiveRequest.java
|
/*
* 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.
*/
package com.aliyuncs.v5.aliyuncvc.model.v20191030;
import com.aliyuncs.v5.RpcAcsRequest;
import com.aliyuncs.v5.http.MethodType;
import com.aliyuncs.v5.aliyuncvc.Endpoint;
/**
* @author auto create
* @version
*/
public class CreateLiveRequest extends RpcAcsRequest<CreateLiveResponse> {
private String memo;
private String userId;
private Boolean openPasswordFlag;
private String password;
private String liveName;
public CreateLiveRequest() {
super("aliyuncvc", "2019-10-30", "CreateLive", "aliyuncvc");
setMethod(MethodType.POST);
try {
com.aliyuncs.v5.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap);
com.aliyuncs.v5.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType);
} catch (Exception e) {}
}
public String getMemo() {
return this.memo;
}
public void setMemo(String memo) {
this.memo = memo;
if(memo != null){
putBodyParameter("Memo", memo);
}
}
public String getUserId() {
return this.userId;
}
public void setUserId(String userId) {
this.userId = userId;
if(userId != null){
putBodyParameter("UserId", userId);
}
}
public Boolean getOpenPasswordFlag() {
return this.openPasswordFlag;
}
public void setOpenPasswordFlag(Boolean openPasswordFlag) {
this.openPasswordFlag = openPasswordFlag;
if(openPasswordFlag != null){
putBodyParameter("OpenPasswordFlag", openPasswordFlag.toString());
}
}
public String getPassword() {
return this.password;
}
public void setPassword(String password) {
this.password = password;
if(password != null){
putBodyParameter("Password", password);
}
}
public String getLiveName() {
return this.liveName;
}
public void setLiveName(String liveName) {
this.liveName = liveName;
if(liveName != null){
putBodyParameter("LiveName", liveName);
}
}
@Override
public Class<CreateLiveResponse> getResponseClass() {
return CreateLiveResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-aliyuncvc-v5/1.0.9/com/aliyuncs/v5/aliyuncvc/model
|
java-sources/com/aliyun/aliyun-java-sdk-aliyuncvc-v5/1.0.9/com/aliyuncs/v5/aliyuncvc/model/v20191030/CreateLiveResponse.java
|
/*
* 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.
*/
package com.aliyuncs.v5.aliyuncvc.model.v20191030;
import com.aliyuncs.v5.AcsResponse;
import com.aliyuncs.v5.aliyuncvc.transform.v20191030.CreateLiveResponseUnmarshaller;
import com.aliyuncs.v5.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class CreateLiveResponse extends AcsResponse {
private Integer errorCode;
private String message;
private Boolean success;
private String requestId;
private LiveInfo liveInfo;
public Integer getErrorCode() {
return this.errorCode;
}
public void setErrorCode(Integer errorCode) {
this.errorCode = errorCode;
}
public String getMessage() {
return this.message;
}
public void setMessage(String message) {
this.message = message;
}
public Boolean getSuccess() {
return this.success;
}
public void setSuccess(Boolean success) {
this.success = success;
}
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public LiveInfo getLiveInfo() {
return this.liveInfo;
}
public void setLiveInfo(LiveInfo liveInfo) {
this.liveInfo = liveInfo;
}
public static class LiveInfo {
private String liveUUID;
private String streamUUID;
public String getLiveUUID() {
return this.liveUUID;
}
public void setLiveUUID(String liveUUID) {
this.liveUUID = liveUUID;
}
public String getStreamUUID() {
return this.streamUUID;
}
public void setStreamUUID(String streamUUID) {
this.streamUUID = streamUUID;
}
}
@Override
public CreateLiveResponse getInstance(UnmarshallerContext context) {
return CreateLiveResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-aliyuncvc-v5/1.0.9/com/aliyuncs/v5/aliyuncvc/model
|
java-sources/com/aliyun/aliyun-java-sdk-aliyuncvc-v5/1.0.9/com/aliyuncs/v5/aliyuncvc/model/v20191030/CreateMeetingInternationalRequest.java
|
/*
* 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.
*/
package com.aliyuncs.v5.aliyuncvc.model.v20191030;
import com.aliyuncs.v5.RpcAcsRequest;
import com.aliyuncs.v5.http.MethodType;
import com.aliyuncs.v5.aliyuncvc.Endpoint;
/**
* @author auto create
* @version
*/
public class CreateMeetingInternationalRequest extends RpcAcsRequest<CreateMeetingInternationalResponse> {
private String meetingName;
private String userId;
private String openPasswordFlag;
private String password;
public CreateMeetingInternationalRequest() {
super("aliyuncvc", "2019-10-30", "CreateMeetingInternational", "aliyuncvc");
setMethod(MethodType.POST);
try {
com.aliyuncs.v5.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap);
com.aliyuncs.v5.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType);
} catch (Exception e) {}
}
public String getMeetingName() {
return this.meetingName;
}
public void setMeetingName(String meetingName) {
this.meetingName = meetingName;
if(meetingName != null){
putBodyParameter("MeetingName", meetingName);
}
}
public String getUserId() {
return this.userId;
}
public void setUserId(String userId) {
this.userId = userId;
if(userId != null){
putBodyParameter("UserId", userId);
}
}
public String getOpenPasswordFlag() {
return this.openPasswordFlag;
}
public void setOpenPasswordFlag(String openPasswordFlag) {
this.openPasswordFlag = openPasswordFlag;
if(openPasswordFlag != null){
putBodyParameter("OpenPasswordFlag", openPasswordFlag);
}
}
public String getPassword() {
return this.password;
}
public void setPassword(String password) {
this.password = password;
if(password != null){
putBodyParameter("Password", password);
}
}
@Override
public Class<CreateMeetingInternationalResponse> getResponseClass() {
return CreateMeetingInternationalResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-aliyuncvc-v5/1.0.9/com/aliyuncs/v5/aliyuncvc/model
|
java-sources/com/aliyun/aliyun-java-sdk-aliyuncvc-v5/1.0.9/com/aliyuncs/v5/aliyuncvc/model/v20191030/CreateMeetingInternationalResponse.java
|
/*
* 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.
*/
package com.aliyuncs.v5.aliyuncvc.model.v20191030;
import com.aliyuncs.v5.AcsResponse;
import com.aliyuncs.v5.aliyuncvc.transform.v20191030.CreateMeetingInternationalResponseUnmarshaller;
import com.aliyuncs.v5.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class CreateMeetingInternationalResponse extends AcsResponse {
private Integer errorCode;
private String message;
private Boolean success;
private String requestId;
private MeetingInfo meetingInfo;
public Integer getErrorCode() {
return this.errorCode;
}
public void setErrorCode(Integer errorCode) {
this.errorCode = errorCode;
}
public String getMessage() {
return this.message;
}
public void setMessage(String message) {
this.message = message;
}
public Boolean getSuccess() {
return this.success;
}
public void setSuccess(Boolean success) {
this.success = success;
}
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public MeetingInfo getMeetingInfo() {
return this.meetingInfo;
}
public void setMeetingInfo(MeetingInfo meetingInfo) {
this.meetingInfo = meetingInfo;
}
public static class MeetingInfo {
private String meetingCode;
private String meetingUUID;
public String getMeetingCode() {
return this.meetingCode;
}
public void setMeetingCode(String meetingCode) {
this.meetingCode = meetingCode;
}
public String getMeetingUUID() {
return this.meetingUUID;
}
public void setMeetingUUID(String meetingUUID) {
this.meetingUUID = meetingUUID;
}
}
@Override
public CreateMeetingInternationalResponse getInstance(UnmarshallerContext context) {
return CreateMeetingInternationalResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-aliyuncvc-v5/1.0.9/com/aliyuncs/v5/aliyuncvc/model
|
java-sources/com/aliyun/aliyun-java-sdk-aliyuncvc-v5/1.0.9/com/aliyuncs/v5/aliyuncvc/model/v20191030/CreateMeetingRequest.java
|
/*
* 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.
*/
package com.aliyuncs.v5.aliyuncvc.model.v20191030;
import com.aliyuncs.v5.RpcAcsRequest;
import com.aliyuncs.v5.http.MethodType;
import com.aliyuncs.v5.aliyuncvc.Endpoint;
/**
* @author auto create
* @version
*/
public class CreateMeetingRequest extends RpcAcsRequest<CreateMeetingResponse> {
private String meetingName;
private String userId;
private Boolean openPasswordFlag;
private String password;
private Boolean masterEnableFlag;
private String meetingMode;
public CreateMeetingRequest() {
super("aliyuncvc", "2019-10-30", "CreateMeeting", "aliyuncvc");
setMethod(MethodType.POST);
try {
com.aliyuncs.v5.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap);
com.aliyuncs.v5.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType);
} catch (Exception e) {}
}
public String getMeetingName() {
return this.meetingName;
}
public void setMeetingName(String meetingName) {
this.meetingName = meetingName;
if(meetingName != null){
putBodyParameter("MeetingName", meetingName);
}
}
public String getUserId() {
return this.userId;
}
public void setUserId(String userId) {
this.userId = userId;
if(userId != null){
putBodyParameter("UserId", userId);
}
}
public Boolean getOpenPasswordFlag() {
return this.openPasswordFlag;
}
public void setOpenPasswordFlag(Boolean openPasswordFlag) {
this.openPasswordFlag = openPasswordFlag;
if(openPasswordFlag != null){
putBodyParameter("OpenPasswordFlag", openPasswordFlag.toString());
}
}
public String getPassword() {
return this.password;
}
public void setPassword(String password) {
this.password = password;
if(password != null){
putBodyParameter("Password", password);
}
}
public Boolean getMasterEnableFlag() {
return this.masterEnableFlag;
}
public void setMasterEnableFlag(Boolean masterEnableFlag) {
this.masterEnableFlag = masterEnableFlag;
if(masterEnableFlag != null){
putBodyParameter("MasterEnableFlag", masterEnableFlag.toString());
}
}
public String getMeetingMode() {
return this.meetingMode;
}
public void setMeetingMode(String meetingMode) {
this.meetingMode = meetingMode;
if(meetingMode != null){
putBodyParameter("MeetingMode", meetingMode);
}
}
@Override
public Class<CreateMeetingResponse> getResponseClass() {
return CreateMeetingResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-aliyuncvc-v5/1.0.9/com/aliyuncs/v5/aliyuncvc/model
|
java-sources/com/aliyun/aliyun-java-sdk-aliyuncvc-v5/1.0.9/com/aliyuncs/v5/aliyuncvc/model/v20191030/CreateMeetingResponse.java
|
/*
* 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.
*/
package com.aliyuncs.v5.aliyuncvc.model.v20191030;
import com.aliyuncs.v5.AcsResponse;
import com.aliyuncs.v5.aliyuncvc.transform.v20191030.CreateMeetingResponseUnmarshaller;
import com.aliyuncs.v5.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class CreateMeetingResponse extends AcsResponse {
private Integer errorCode;
private String message;
private Boolean success;
private String requestId;
private MeetingInfo meetingInfo;
public Integer getErrorCode() {
return this.errorCode;
}
public void setErrorCode(Integer errorCode) {
this.errorCode = errorCode;
}
public String getMessage() {
return this.message;
}
public void setMessage(String message) {
this.message = message;
}
public Boolean getSuccess() {
return this.success;
}
public void setSuccess(Boolean success) {
this.success = success;
}
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public MeetingInfo getMeetingInfo() {
return this.meetingInfo;
}
public void setMeetingInfo(MeetingInfo meetingInfo) {
this.meetingInfo = meetingInfo;
}
public static class MeetingInfo {
private String meetingCode;
private String meetingUUID;
public String getMeetingCode() {
return this.meetingCode;
}
public void setMeetingCode(String meetingCode) {
this.meetingCode = meetingCode;
}
public String getMeetingUUID() {
return this.meetingUUID;
}
public void setMeetingUUID(String meetingUUID) {
this.meetingUUID = meetingUUID;
}
}
@Override
public CreateMeetingResponse getInstance(UnmarshallerContext context) {
return CreateMeetingResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-aliyuncvc-v5/1.0.9/com/aliyuncs/v5/aliyuncvc/model
|
java-sources/com/aliyun/aliyun-java-sdk-aliyuncvc-v5/1.0.9/com/aliyuncs/v5/aliyuncvc/model/v20191030/CreateUserInternationalRequest.java
|
/*
* 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.
*/
package com.aliyuncs.v5.aliyuncvc.model.v20191030;
import com.aliyuncs.v5.RpcAcsRequest;
import com.aliyuncs.v5.http.MethodType;
import com.aliyuncs.v5.aliyuncvc.Endpoint;
/**
* @author auto create
* @version
*/
public class CreateUserInternationalRequest extends RpcAcsRequest<CreateUserInternationalResponse> {
private Integer count;
private String userInfo;
public CreateUserInternationalRequest() {
super("aliyuncvc", "2019-10-30", "CreateUserInternational", "aliyuncvc");
setMethod(MethodType.POST);
try {
com.aliyuncs.v5.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap);
com.aliyuncs.v5.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType);
} catch (Exception e) {}
}
public Integer getCount() {
return this.count;
}
public void setCount(Integer count) {
this.count = count;
if(count != null){
putBodyParameter("Count", count.toString());
}
}
public String getUserInfo() {
return this.userInfo;
}
public void setUserInfo(String userInfo) {
this.userInfo = userInfo;
if(userInfo != null){
putBodyParameter("UserInfo", userInfo);
}
}
@Override
public Class<CreateUserInternationalResponse> getResponseClass() {
return CreateUserInternationalResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-aliyuncvc-v5/1.0.9/com/aliyuncs/v5/aliyuncvc/model
|
java-sources/com/aliyun/aliyun-java-sdk-aliyuncvc-v5/1.0.9/com/aliyuncs/v5/aliyuncvc/model/v20191030/CreateUserInternationalResponse.java
|
/*
* 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.
*/
package com.aliyuncs.v5.aliyuncvc.model.v20191030;
import com.aliyuncs.v5.AcsResponse;
import com.aliyuncs.v5.aliyuncvc.transform.v20191030.CreateUserInternationalResponseUnmarshaller;
import com.aliyuncs.v5.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class CreateUserInternationalResponse extends AcsResponse {
private Integer errorCode;
private String message;
private Boolean success;
private String requestId;
private String userId;
public Integer getErrorCode() {
return this.errorCode;
}
public void setErrorCode(Integer errorCode) {
this.errorCode = errorCode;
}
public String getMessage() {
return this.message;
}
public void setMessage(String message) {
this.message = message;
}
public Boolean getSuccess() {
return this.success;
}
public void setSuccess(Boolean success) {
this.success = success;
}
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public String getUserId() {
return this.userId;
}
public void setUserId(String userId) {
this.userId = userId;
}
@Override
public CreateUserInternationalResponse getInstance(UnmarshallerContext context) {
return CreateUserInternationalResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-aliyuncvc-v5/1.0.9/com/aliyuncs/v5/aliyuncvc/model
|
java-sources/com/aliyun/aliyun-java-sdk-aliyuncvc-v5/1.0.9/com/aliyuncs/v5/aliyuncvc/model/v20191030/CreateUserRequest.java
|
/*
* 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.
*/
package com.aliyuncs.v5.aliyuncvc.model.v20191030;
import com.aliyuncs.v5.RpcAcsRequest;
import com.aliyuncs.v5.http.MethodType;
import com.aliyuncs.v5.aliyuncvc.Endpoint;
/**
* @author auto create
* @version
*/
public class CreateUserRequest extends RpcAcsRequest<CreateUserResponse> {
private Integer count;
private String userInfo;
public CreateUserRequest() {
super("aliyuncvc", "2019-10-30", "CreateUser", "aliyuncvc");
setMethod(MethodType.POST);
try {
com.aliyuncs.v5.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap);
com.aliyuncs.v5.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType);
} catch (Exception e) {}
}
public Integer getCount() {
return this.count;
}
public void setCount(Integer count) {
this.count = count;
if(count != null){
putBodyParameter("Count", count.toString());
}
}
public String getUserInfo() {
return this.userInfo;
}
public void setUserInfo(String userInfo) {
this.userInfo = userInfo;
if(userInfo != null){
putBodyParameter("UserInfo", userInfo);
}
}
@Override
public Class<CreateUserResponse> getResponseClass() {
return CreateUserResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-aliyuncvc-v5/1.0.9/com/aliyuncs/v5/aliyuncvc/model
|
java-sources/com/aliyun/aliyun-java-sdk-aliyuncvc-v5/1.0.9/com/aliyuncs/v5/aliyuncvc/model/v20191030/CreateUserResponse.java
|
/*
* 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.
*/
package com.aliyuncs.v5.aliyuncvc.model.v20191030;
import com.aliyuncs.v5.AcsResponse;
import com.aliyuncs.v5.aliyuncvc.transform.v20191030.CreateUserResponseUnmarshaller;
import com.aliyuncs.v5.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class CreateUserResponse extends AcsResponse {
private Integer errorCode;
private String message;
private Boolean success;
private String requestId;
private String userId;
public Integer getErrorCode() {
return this.errorCode;
}
public void setErrorCode(Integer errorCode) {
this.errorCode = errorCode;
}
public String getMessage() {
return this.message;
}
public void setMessage(String message) {
this.message = message;
}
public Boolean getSuccess() {
return this.success;
}
public void setSuccess(Boolean success) {
this.success = success;
}
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public String getUserId() {
return this.userId;
}
public void setUserId(String userId) {
this.userId = userId;
}
@Override
public CreateUserResponse getInstance(UnmarshallerContext context) {
return CreateUserResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-aliyuncvc-v5/1.0.9/com/aliyuncs/v5/aliyuncvc/model
|
java-sources/com/aliyun/aliyun-java-sdk-aliyuncvc-v5/1.0.9/com/aliyuncs/v5/aliyuncvc/model/v20191030/DeleteDeviceRequest.java
|
/*
* 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.
*/
package com.aliyuncs.v5.aliyuncvc.model.v20191030;
import com.aliyuncs.v5.RpcAcsRequest;
import com.aliyuncs.v5.http.MethodType;
import com.aliyuncs.v5.aliyuncvc.Endpoint;
/**
* @author auto create
* @version
*/
public class DeleteDeviceRequest extends RpcAcsRequest<DeleteDeviceResponse> {
private String groupId;
private String sN;
public DeleteDeviceRequest() {
super("aliyuncvc", "2019-10-30", "DeleteDevice", "aliyuncvc");
setMethod(MethodType.POST);
try {
com.aliyuncs.v5.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap);
com.aliyuncs.v5.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType);
} catch (Exception e) {}
}
public String getGroupId() {
return this.groupId;
}
public void setGroupId(String groupId) {
this.groupId = groupId;
if(groupId != null){
putBodyParameter("GroupId", groupId);
}
}
public String getSN() {
return this.sN;
}
public void setSN(String sN) {
this.sN = sN;
if(sN != null){
putBodyParameter("SN", sN);
}
}
@Override
public Class<DeleteDeviceResponse> getResponseClass() {
return DeleteDeviceResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-aliyuncvc-v5/1.0.9/com/aliyuncs/v5/aliyuncvc/model
|
java-sources/com/aliyun/aliyun-java-sdk-aliyuncvc-v5/1.0.9/com/aliyuncs/v5/aliyuncvc/model/v20191030/DeleteDeviceResponse.java
|
/*
* 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.
*/
package com.aliyuncs.v5.aliyuncvc.model.v20191030;
import com.aliyuncs.v5.AcsResponse;
import com.aliyuncs.v5.aliyuncvc.transform.v20191030.DeleteDeviceResponseUnmarshaller;
import com.aliyuncs.v5.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class DeleteDeviceResponse extends AcsResponse {
private Integer errorCode;
private String message;
private Boolean success;
private String requestId;
public Integer getErrorCode() {
return this.errorCode;
}
public void setErrorCode(Integer errorCode) {
this.errorCode = errorCode;
}
public String getMessage() {
return this.message;
}
public void setMessage(String message) {
this.message = message;
}
public Boolean getSuccess() {
return this.success;
}
public void setSuccess(Boolean success) {
this.success = success;
}
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
@Override
public DeleteDeviceResponse getInstance(UnmarshallerContext context) {
return DeleteDeviceResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-aliyuncvc-v5/1.0.9/com/aliyuncs/v5/aliyuncvc/model
|
java-sources/com/aliyun/aliyun-java-sdk-aliyuncvc-v5/1.0.9/com/aliyuncs/v5/aliyuncvc/model/v20191030/DeleteLiveRequest.java
|
/*
* 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.
*/
package com.aliyuncs.v5.aliyuncvc.model.v20191030;
import com.aliyuncs.v5.RpcAcsRequest;
import com.aliyuncs.v5.http.MethodType;
import com.aliyuncs.v5.aliyuncvc.Endpoint;
/**
* @author auto create
* @version
*/
public class DeleteLiveRequest extends RpcAcsRequest<DeleteLiveResponse> {
private String liveUUID;
private String userId;
public DeleteLiveRequest() {
super("aliyuncvc", "2019-10-30", "DeleteLive", "aliyuncvc");
setMethod(MethodType.POST);
try {
com.aliyuncs.v5.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap);
com.aliyuncs.v5.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType);
} catch (Exception e) {}
}
public String getLiveUUID() {
return this.liveUUID;
}
public void setLiveUUID(String liveUUID) {
this.liveUUID = liveUUID;
if(liveUUID != null){
putBodyParameter("LiveUUID", liveUUID);
}
}
public String getUserId() {
return this.userId;
}
public void setUserId(String userId) {
this.userId = userId;
if(userId != null){
putBodyParameter("UserId", userId);
}
}
@Override
public Class<DeleteLiveResponse> getResponseClass() {
return DeleteLiveResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-aliyuncvc-v5/1.0.9/com/aliyuncs/v5/aliyuncvc/model
|
java-sources/com/aliyun/aliyun-java-sdk-aliyuncvc-v5/1.0.9/com/aliyuncs/v5/aliyuncvc/model/v20191030/DeleteLiveResponse.java
|
/*
* 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.
*/
package com.aliyuncs.v5.aliyuncvc.model.v20191030;
import com.aliyuncs.v5.AcsResponse;
import com.aliyuncs.v5.aliyuncvc.transform.v20191030.DeleteLiveResponseUnmarshaller;
import com.aliyuncs.v5.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class DeleteLiveResponse extends AcsResponse {
private Integer errorCode;
private String message;
private Boolean success;
private String requestId;
public Integer getErrorCode() {
return this.errorCode;
}
public void setErrorCode(Integer errorCode) {
this.errorCode = errorCode;
}
public String getMessage() {
return this.message;
}
public void setMessage(String message) {
this.message = message;
}
public Boolean getSuccess() {
return this.success;
}
public void setSuccess(Boolean success) {
this.success = success;
}
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
@Override
public DeleteLiveResponse getInstance(UnmarshallerContext context) {
return DeleteLiveResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-aliyuncvc-v5/1.0.9/com/aliyuncs/v5/aliyuncvc/model
|
java-sources/com/aliyun/aliyun-java-sdk-aliyuncvc-v5/1.0.9/com/aliyuncs/v5/aliyuncvc/model/v20191030/DeleteMeetingRequest.java
|
/*
* 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.
*/
package com.aliyuncs.v5.aliyuncvc.model.v20191030;
import com.aliyuncs.v5.RpcAcsRequest;
import com.aliyuncs.v5.http.MethodType;
import com.aliyuncs.v5.aliyuncvc.Endpoint;
/**
* @author auto create
* @version
*/
public class DeleteMeetingRequest extends RpcAcsRequest<DeleteMeetingResponse> {
private String meetingUUID;
public DeleteMeetingRequest() {
super("aliyuncvc", "2019-10-30", "DeleteMeeting", "aliyuncvc");
setMethod(MethodType.POST);
try {
com.aliyuncs.v5.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap);
com.aliyuncs.v5.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType);
} catch (Exception e) {}
}
public String getMeetingUUID() {
return this.meetingUUID;
}
public void setMeetingUUID(String meetingUUID) {
this.meetingUUID = meetingUUID;
if(meetingUUID != null){
putBodyParameter("MeetingUUID", meetingUUID);
}
}
@Override
public Class<DeleteMeetingResponse> getResponseClass() {
return DeleteMeetingResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-aliyuncvc-v5/1.0.9/com/aliyuncs/v5/aliyuncvc/model
|
java-sources/com/aliyun/aliyun-java-sdk-aliyuncvc-v5/1.0.9/com/aliyuncs/v5/aliyuncvc/model/v20191030/DeleteMeetingResponse.java
|
/*
* 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.
*/
package com.aliyuncs.v5.aliyuncvc.model.v20191030;
import com.aliyuncs.v5.AcsResponse;
import com.aliyuncs.v5.aliyuncvc.transform.v20191030.DeleteMeetingResponseUnmarshaller;
import com.aliyuncs.v5.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class DeleteMeetingResponse extends AcsResponse {
private Integer errorCode;
private String message;
private Boolean success;
private String requestId;
public Integer getErrorCode() {
return this.errorCode;
}
public void setErrorCode(Integer errorCode) {
this.errorCode = errorCode;
}
public String getMessage() {
return this.message;
}
public void setMessage(String message) {
this.message = message;
}
public Boolean getSuccess() {
return this.success;
}
public void setSuccess(Boolean success) {
this.success = success;
}
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
@Override
public DeleteMeetingResponse getInstance(UnmarshallerContext context) {
return DeleteMeetingResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-aliyuncvc-v5/1.0.9/com/aliyuncs/v5/aliyuncvc/model
|
java-sources/com/aliyun/aliyun-java-sdk-aliyuncvc-v5/1.0.9/com/aliyuncs/v5/aliyuncvc/model/v20191030/DeleteUserRequest.java
|
/*
* 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.
*/
package com.aliyuncs.v5.aliyuncvc.model.v20191030;
import com.aliyuncs.v5.RpcAcsRequest;
import com.aliyuncs.v5.http.MethodType;
import com.aliyuncs.v5.aliyuncvc.Endpoint;
/**
* @author auto create
* @version
*/
public class DeleteUserRequest extends RpcAcsRequest<DeleteUserResponse> {
private Integer count;
private String userInfo;
public DeleteUserRequest() {
super("aliyuncvc", "2019-10-30", "DeleteUser", "aliyuncvc");
setMethod(MethodType.POST);
try {
com.aliyuncs.v5.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap);
com.aliyuncs.v5.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType);
} catch (Exception e) {}
}
public Integer getCount() {
return this.count;
}
public void setCount(Integer count) {
this.count = count;
if(count != null){
putBodyParameter("Count", count.toString());
}
}
public String getUserInfo() {
return this.userInfo;
}
public void setUserInfo(String userInfo) {
this.userInfo = userInfo;
if(userInfo != null){
putBodyParameter("UserInfo", userInfo);
}
}
@Override
public Class<DeleteUserResponse> getResponseClass() {
return DeleteUserResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-aliyuncvc-v5/1.0.9/com/aliyuncs/v5/aliyuncvc/model
|
java-sources/com/aliyun/aliyun-java-sdk-aliyuncvc-v5/1.0.9/com/aliyuncs/v5/aliyuncvc/model/v20191030/DeleteUserResponse.java
|
/*
* 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.
*/
package com.aliyuncs.v5.aliyuncvc.model.v20191030;
import com.aliyuncs.v5.AcsResponse;
import com.aliyuncs.v5.aliyuncvc.transform.v20191030.DeleteUserResponseUnmarshaller;
import com.aliyuncs.v5.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class DeleteUserResponse extends AcsResponse {
private String requestId;
private String success;
private Integer errorCode;
private String message;
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public String getSuccess() {
return this.success;
}
public void setSuccess(String success) {
this.success = success;
}
public Integer getErrorCode() {
return this.errorCode;
}
public void setErrorCode(Integer errorCode) {
this.errorCode = errorCode;
}
public String getMessage() {
return this.message;
}
public void setMessage(String message) {
this.message = message;
}
@Override
public DeleteUserResponse getInstance(UnmarshallerContext context) {
return DeleteUserResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-aliyuncvc-v5/1.0.9/com/aliyuncs/v5/aliyuncvc/model
|
java-sources/com/aliyun/aliyun-java-sdk-aliyuncvc-v5/1.0.9/com/aliyuncs/v5/aliyuncvc/model/v20191030/EndDeviceMeetingRequest.java
|
/*
* 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.
*/
package com.aliyuncs.v5.aliyuncvc.model.v20191030;
import com.aliyuncs.v5.RpcAcsRequest;
import com.aliyuncs.v5.http.MethodType;
import com.aliyuncs.v5.aliyuncvc.Endpoint;
/**
* @author auto create
* @version
*/
public class EndDeviceMeetingRequest extends RpcAcsRequest<EndDeviceMeetingResponse> {
private String meetingUUID;
private String sN;
public EndDeviceMeetingRequest() {
super("aliyuncvc", "2019-10-30", "EndDeviceMeeting", "aliyuncvc");
setMethod(MethodType.POST);
try {
com.aliyuncs.v5.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap);
com.aliyuncs.v5.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType);
} catch (Exception e) {}
}
public String getMeetingUUID() {
return this.meetingUUID;
}
public void setMeetingUUID(String meetingUUID) {
this.meetingUUID = meetingUUID;
if(meetingUUID != null){
putBodyParameter("MeetingUUID", meetingUUID);
}
}
public String getSN() {
return this.sN;
}
public void setSN(String sN) {
this.sN = sN;
if(sN != null){
putBodyParameter("SN", sN);
}
}
@Override
public Class<EndDeviceMeetingResponse> getResponseClass() {
return EndDeviceMeetingResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-aliyuncvc-v5/1.0.9/com/aliyuncs/v5/aliyuncvc/model
|
java-sources/com/aliyun/aliyun-java-sdk-aliyuncvc-v5/1.0.9/com/aliyuncs/v5/aliyuncvc/model/v20191030/EndDeviceMeetingResponse.java
|
/*
* 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.
*/
package com.aliyuncs.v5.aliyuncvc.model.v20191030;
import com.aliyuncs.v5.AcsResponse;
import com.aliyuncs.v5.aliyuncvc.transform.v20191030.EndDeviceMeetingResponseUnmarshaller;
import com.aliyuncs.v5.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class EndDeviceMeetingResponse extends AcsResponse {
private Integer errorCode;
private String message;
private Boolean success;
private String requestId;
public Integer getErrorCode() {
return this.errorCode;
}
public void setErrorCode(Integer errorCode) {
this.errorCode = errorCode;
}
public String getMessage() {
return this.message;
}
public void setMessage(String message) {
this.message = message;
}
public Boolean getSuccess() {
return this.success;
}
public void setSuccess(Boolean success) {
this.success = success;
}
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
@Override
public EndDeviceMeetingResponse getInstance(UnmarshallerContext context) {
return EndDeviceMeetingResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-aliyuncvc-v5/1.0.9/com/aliyuncs/v5/aliyuncvc/model
|
java-sources/com/aliyun/aliyun-java-sdk-aliyuncvc-v5/1.0.9/com/aliyuncs/v5/aliyuncvc/model/v20191030/EndLiveRequest.java
|
/*
* 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.
*/
package com.aliyuncs.v5.aliyuncvc.model.v20191030;
import com.aliyuncs.v5.RpcAcsRequest;
import com.aliyuncs.v5.http.MethodType;
import com.aliyuncs.v5.aliyuncvc.Endpoint;
/**
* @author auto create
* @version
*/
public class EndLiveRequest extends RpcAcsRequest<EndLiveResponse> {
private String liveUUID;
private String userId;
public EndLiveRequest() {
super("aliyuncvc", "2019-10-30", "EndLive", "aliyuncvc");
setMethod(MethodType.POST);
try {
com.aliyuncs.v5.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap);
com.aliyuncs.v5.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType);
} catch (Exception e) {}
}
public String getLiveUUID() {
return this.liveUUID;
}
public void setLiveUUID(String liveUUID) {
this.liveUUID = liveUUID;
if(liveUUID != null){
putBodyParameter("LiveUUID", liveUUID);
}
}
public String getUserId() {
return this.userId;
}
public void setUserId(String userId) {
this.userId = userId;
if(userId != null){
putBodyParameter("UserId", userId);
}
}
@Override
public Class<EndLiveResponse> getResponseClass() {
return EndLiveResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-aliyuncvc-v5/1.0.9/com/aliyuncs/v5/aliyuncvc/model
|
java-sources/com/aliyun/aliyun-java-sdk-aliyuncvc-v5/1.0.9/com/aliyuncs/v5/aliyuncvc/model/v20191030/EndLiveResponse.java
|
/*
* 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.
*/
package com.aliyuncs.v5.aliyuncvc.model.v20191030;
import com.aliyuncs.v5.AcsResponse;
import com.aliyuncs.v5.aliyuncvc.transform.v20191030.EndLiveResponseUnmarshaller;
import com.aliyuncs.v5.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class EndLiveResponse extends AcsResponse {
private Integer errorCode;
private String message;
private Boolean success;
private String requestId;
public Integer getErrorCode() {
return this.errorCode;
}
public void setErrorCode(Integer errorCode) {
this.errorCode = errorCode;
}
public String getMessage() {
return this.message;
}
public void setMessage(String message) {
this.message = message;
}
public Boolean getSuccess() {
return this.success;
}
public void setSuccess(Boolean success) {
this.success = success;
}
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
@Override
public EndLiveResponse getInstance(UnmarshallerContext context) {
return EndLiveResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-aliyuncvc-v5/1.0.9/com/aliyuncs/v5/aliyuncvc/model
|
java-sources/com/aliyun/aliyun-java-sdk-aliyuncvc-v5/1.0.9/com/aliyuncs/v5/aliyuncvc/model/v20191030/GetDeviceActiveCodeRequest.java
|
/*
* 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.
*/
package com.aliyuncs.v5.aliyuncvc.model.v20191030;
import com.aliyuncs.v5.RpcAcsRequest;
import com.aliyuncs.v5.http.MethodType;
import com.aliyuncs.v5.aliyuncvc.Endpoint;
/**
* @author auto create
* @version
*/
public class GetDeviceActiveCodeRequest extends RpcAcsRequest<GetDeviceActiveCodeResponse> {
private String sN;
public GetDeviceActiveCodeRequest() {
super("aliyuncvc", "2019-10-30", "GetDeviceActiveCode", "aliyuncvc");
setMethod(MethodType.POST);
try {
com.aliyuncs.v5.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap);
com.aliyuncs.v5.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType);
} catch (Exception e) {}
}
public String getSN() {
return this.sN;
}
public void setSN(String sN) {
this.sN = sN;
if(sN != null){
putBodyParameter("SN", sN);
}
}
@Override
public Class<GetDeviceActiveCodeResponse> getResponseClass() {
return GetDeviceActiveCodeResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-aliyuncvc-v5/1.0.9/com/aliyuncs/v5/aliyuncvc/model
|
java-sources/com/aliyun/aliyun-java-sdk-aliyuncvc-v5/1.0.9/com/aliyuncs/v5/aliyuncvc/model/v20191030/GetDeviceActiveCodeResponse.java
|
/*
* 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.
*/
package com.aliyuncs.v5.aliyuncvc.model.v20191030;
import java.util.List;
import com.aliyuncs.v5.AcsResponse;
import com.aliyuncs.v5.aliyuncvc.transform.v20191030.GetDeviceActiveCodeResponseUnmarshaller;
import com.aliyuncs.v5.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class GetDeviceActiveCodeResponse extends AcsResponse {
private Integer errorCode;
private String message;
private Boolean success;
private List<Data> devices;
public Integer getErrorCode() {
return this.errorCode;
}
public void setErrorCode(Integer errorCode) {
this.errorCode = errorCode;
}
public String getMessage() {
return this.message;
}
public void setMessage(String message) {
this.message = message;
}
public Boolean getSuccess() {
return this.success;
}
public void setSuccess(Boolean success) {
this.success = success;
}
public List<Data> getDevices() {
return this.devices;
}
public void setDevices(List<Data> devices) {
this.devices = devices;
}
public static class Data {
private Integer deviceErrorCode;
private String deviceMessage;
private String sN;
private String activeCode;
public Integer getDeviceErrorCode() {
return this.deviceErrorCode;
}
public void setDeviceErrorCode(Integer deviceErrorCode) {
this.deviceErrorCode = deviceErrorCode;
}
public String getDeviceMessage() {
return this.deviceMessage;
}
public void setDeviceMessage(String deviceMessage) {
this.deviceMessage = deviceMessage;
}
public String getSN() {
return this.sN;
}
public void setSN(String sN) {
this.sN = sN;
}
public String getActiveCode() {
return this.activeCode;
}
public void setActiveCode(String activeCode) {
this.activeCode = activeCode;
}
}
@Override
public GetDeviceActiveCodeResponse getInstance(UnmarshallerContext context) {
return GetDeviceActiveCodeResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-aliyuncvc-v5/1.0.9/com/aliyuncs/v5/aliyuncvc/model
|
java-sources/com/aliyun/aliyun-java-sdk-aliyuncvc-v5/1.0.9/com/aliyuncs/v5/aliyuncvc/model/v20191030/GetDeviceTokenRequest.java
|
/*
* 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.
*/
package com.aliyuncs.v5.aliyuncvc.model.v20191030;
import com.aliyuncs.v5.RpcAcsRequest;
import com.aliyuncs.v5.http.MethodType;
import com.aliyuncs.v5.aliyuncvc.Endpoint;
/**
* @author auto create
* @version
*/
public class GetDeviceTokenRequest extends RpcAcsRequest<GetDeviceTokenResponse> {
private String token;
private String sN;
public GetDeviceTokenRequest() {
super("aliyuncvc", "2019-10-30", "GetDeviceToken", "aliyuncvc");
setMethod(MethodType.POST);
try {
com.aliyuncs.v5.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap);
com.aliyuncs.v5.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType);
} catch (Exception e) {}
}
public String getToken() {
return this.token;
}
public void setToken(String token) {
this.token = token;
if(token != null){
putQueryParameter("Token", token);
}
}
public String getSN() {
return this.sN;
}
public void setSN(String sN) {
this.sN = sN;
if(sN != null){
putQueryParameter("SN", sN);
}
}
@Override
public Class<GetDeviceTokenResponse> getResponseClass() {
return GetDeviceTokenResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-aliyuncvc-v5/1.0.9/com/aliyuncs/v5/aliyuncvc/model
|
java-sources/com/aliyun/aliyun-java-sdk-aliyuncvc-v5/1.0.9/com/aliyuncs/v5/aliyuncvc/model/v20191030/GetDeviceTokenResponse.java
|
/*
* 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.
*/
package com.aliyuncs.v5.aliyuncvc.model.v20191030;
import com.aliyuncs.v5.AcsResponse;
import com.aliyuncs.v5.aliyuncvc.transform.v20191030.GetDeviceTokenResponseUnmarshaller;
import com.aliyuncs.v5.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class GetDeviceTokenResponse extends AcsResponse {
private Integer errorCode;
private String message;
private Boolean success;
private String requestId;
private String token;
public Integer getErrorCode() {
return this.errorCode;
}
public void setErrorCode(Integer errorCode) {
this.errorCode = errorCode;
}
public String getMessage() {
return this.message;
}
public void setMessage(String message) {
this.message = message;
}
public Boolean getSuccess() {
return this.success;
}
public void setSuccess(Boolean success) {
this.success = success;
}
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public String getToken() {
return this.token;
}
public void setToken(String token) {
this.token = token;
}
@Override
public GetDeviceTokenResponse getInstance(UnmarshallerContext context) {
return GetDeviceTokenResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-aliyuncvc-v5/1.0.9/com/aliyuncs/v5/aliyuncvc/model
|
java-sources/com/aliyun/aliyun-java-sdk-aliyuncvc-v5/1.0.9/com/aliyuncs/v5/aliyuncvc/model/v20191030/GetMeetingInternationalRequest.java
|
/*
* 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.
*/
package com.aliyuncs.v5.aliyuncvc.model.v20191030;
import com.aliyuncs.v5.RpcAcsRequest;
import com.aliyuncs.v5.http.MethodType;
import com.aliyuncs.v5.aliyuncvc.Endpoint;
/**
* @author auto create
* @version
*/
public class GetMeetingInternationalRequest extends RpcAcsRequest<GetMeetingInternationalResponse> {
private String meetingUUID;
public GetMeetingInternationalRequest() {
super("aliyuncvc", "2019-10-30", "GetMeetingInternational", "aliyuncvc");
setMethod(MethodType.POST);
try {
com.aliyuncs.v5.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap);
com.aliyuncs.v5.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType);
} catch (Exception e) {}
}
public String getMeetingUUID() {
return this.meetingUUID;
}
public void setMeetingUUID(String meetingUUID) {
this.meetingUUID = meetingUUID;
if(meetingUUID != null){
putBodyParameter("MeetingUUID", meetingUUID);
}
}
@Override
public Class<GetMeetingInternationalResponse> getResponseClass() {
return GetMeetingInternationalResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-aliyuncvc-v5/1.0.9/com/aliyuncs/v5/aliyuncvc/model
|
java-sources/com/aliyun/aliyun-java-sdk-aliyuncvc-v5/1.0.9/com/aliyuncs/v5/aliyuncvc/model/v20191030/GetMeetingInternationalResponse.java
|
/*
* 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.
*/
package com.aliyuncs.v5.aliyuncvc.model.v20191030;
import java.util.List;
import com.aliyuncs.v5.AcsResponse;
import com.aliyuncs.v5.aliyuncvc.transform.v20191030.GetMeetingInternationalResponseUnmarshaller;
import com.aliyuncs.v5.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class GetMeetingInternationalResponse extends AcsResponse {
private Integer errorCode;
private String message;
private Boolean success;
private String requestId;
private MeetingInfo meetingInfo;
public Integer getErrorCode() {
return this.errorCode;
}
public void setErrorCode(Integer errorCode) {
this.errorCode = errorCode;
}
public String getMessage() {
return this.message;
}
public void setMessage(String message) {
this.message = message;
}
public Boolean getSuccess() {
return this.success;
}
public void setSuccess(Boolean success) {
this.success = success;
}
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public MeetingInfo getMeetingInfo() {
return this.meetingInfo;
}
public void setMeetingInfo(MeetingInfo meetingInfo) {
this.meetingInfo = meetingInfo;
}
public static class MeetingInfo {
private String meetingName;
private Long validTime;
private String meetingCode;
private Long createTime;
private String userId;
private String meetingUUID;
private String password;
private List<MemberListItem> memberList;
public String getMeetingName() {
return this.meetingName;
}
public void setMeetingName(String meetingName) {
this.meetingName = meetingName;
}
public Long getValidTime() {
return this.validTime;
}
public void setValidTime(Long validTime) {
this.validTime = validTime;
}
public String getMeetingCode() {
return this.meetingCode;
}
public void setMeetingCode(String meetingCode) {
this.meetingCode = meetingCode;
}
public Long getCreateTime() {
return this.createTime;
}
public void setCreateTime(Long createTime) {
this.createTime = createTime;
}
public String getUserId() {
return this.userId;
}
public void setUserId(String userId) {
this.userId = userId;
}
public String getMeetingUUID() {
return this.meetingUUID;
}
public void setMeetingUUID(String meetingUUID) {
this.meetingUUID = meetingUUID;
}
public String getPassword() {
return this.password;
}
public void setPassword(String password) {
this.password = password;
}
public List<MemberListItem> getMemberList() {
return this.memberList;
}
public void setMemberList(List<MemberListItem> memberList) {
this.memberList = memberList;
}
public static class MemberListItem {
private String userAvatarUrl;
private String memberUUID;
private String userName;
private String userId;
private String status;
public String getUserAvatarUrl() {
return this.userAvatarUrl;
}
public void setUserAvatarUrl(String userAvatarUrl) {
this.userAvatarUrl = userAvatarUrl;
}
public String getMemberUUID() {
return this.memberUUID;
}
public void setMemberUUID(String memberUUID) {
this.memberUUID = memberUUID;
}
public String getUserName() {
return this.userName;
}
public void setUserName(String userName) {
this.userName = userName;
}
public String getUserId() {
return this.userId;
}
public void setUserId(String userId) {
this.userId = userId;
}
public String getStatus() {
return this.status;
}
public void setStatus(String status) {
this.status = status;
}
}
}
@Override
public GetMeetingInternationalResponse getInstance(UnmarshallerContext context) {
return GetMeetingInternationalResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-aliyuncvc-v5/1.0.9/com/aliyuncs/v5/aliyuncvc/model
|
java-sources/com/aliyun/aliyun-java-sdk-aliyuncvc-v5/1.0.9/com/aliyuncs/v5/aliyuncvc/model/v20191030/GetMeetingMemberRequest.java
|
/*
* 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.
*/
package com.aliyuncs.v5.aliyuncvc.model.v20191030;
import com.aliyuncs.v5.RpcAcsRequest;
import com.aliyuncs.v5.http.MethodType;
import com.aliyuncs.v5.aliyuncvc.Endpoint;
/**
* @author auto create
* @version
*/
public class GetMeetingMemberRequest extends RpcAcsRequest<GetMeetingMemberResponse> {
private String meetingUUID;
public GetMeetingMemberRequest() {
super("aliyuncvc", "2019-10-30", "GetMeetingMember", "aliyuncvc");
setMethod(MethodType.POST);
try {
com.aliyuncs.v5.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap);
com.aliyuncs.v5.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType);
} catch (Exception e) {}
}
public String getMeetingUUID() {
return this.meetingUUID;
}
public void setMeetingUUID(String meetingUUID) {
this.meetingUUID = meetingUUID;
if(meetingUUID != null){
putQueryParameter("MeetingUUID", meetingUUID);
}
}
@Override
public Class<GetMeetingMemberResponse> getResponseClass() {
return GetMeetingMemberResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-aliyuncvc-v5/1.0.9/com/aliyuncs/v5/aliyuncvc/model
|
java-sources/com/aliyun/aliyun-java-sdk-aliyuncvc-v5/1.0.9/com/aliyuncs/v5/aliyuncvc/model/v20191030/GetMeetingMemberResponse.java
|
/*
* 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.
*/
package com.aliyuncs.v5.aliyuncvc.model.v20191030;
import com.aliyuncs.v5.AcsResponse;
import com.aliyuncs.v5.aliyuncvc.transform.v20191030.GetMeetingMemberResponseUnmarshaller;
import com.aliyuncs.v5.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class GetMeetingMemberResponse extends AcsResponse {
private String requestId;
private String message;
private Boolean success;
private Integer errorCode;
private String members;
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public String getMessage() {
return this.message;
}
public void setMessage(String message) {
this.message = message;
}
public Boolean getSuccess() {
return this.success;
}
public void setSuccess(Boolean success) {
this.success = success;
}
public Integer getErrorCode() {
return this.errorCode;
}
public void setErrorCode(Integer errorCode) {
this.errorCode = errorCode;
}
public String getMembers() {
return this.members;
}
public void setMembers(String members) {
this.members = members;
}
@Override
public GetMeetingMemberResponse getInstance(UnmarshallerContext context) {
return GetMeetingMemberResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-aliyuncvc-v5/1.0.9/com/aliyuncs/v5/aliyuncvc/model
|
java-sources/com/aliyun/aliyun-java-sdk-aliyuncvc-v5/1.0.9/com/aliyuncs/v5/aliyuncvc/model/v20191030/GetMeetingRequest.java
|
/*
* 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.
*/
package com.aliyuncs.v5.aliyuncvc.model.v20191030;
import com.aliyuncs.v5.RpcAcsRequest;
import com.aliyuncs.v5.http.MethodType;
import com.aliyuncs.v5.aliyuncvc.Endpoint;
/**
* @author auto create
* @version
*/
public class GetMeetingRequest extends RpcAcsRequest<GetMeetingResponse> {
private String meetingUUID;
public GetMeetingRequest() {
super("aliyuncvc", "2019-10-30", "GetMeeting", "aliyuncvc");
setMethod(MethodType.POST);
try {
com.aliyuncs.v5.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap);
com.aliyuncs.v5.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType);
} catch (Exception e) {}
}
public String getMeetingUUID() {
return this.meetingUUID;
}
public void setMeetingUUID(String meetingUUID) {
this.meetingUUID = meetingUUID;
if(meetingUUID != null){
putBodyParameter("MeetingUUID", meetingUUID);
}
}
@Override
public Class<GetMeetingResponse> getResponseClass() {
return GetMeetingResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-aliyuncvc-v5/1.0.9/com/aliyuncs/v5/aliyuncvc/model
|
java-sources/com/aliyun/aliyun-java-sdk-aliyuncvc-v5/1.0.9/com/aliyuncs/v5/aliyuncvc/model/v20191030/GetMeetingResponse.java
|
/*
* 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.
*/
package com.aliyuncs.v5.aliyuncvc.model.v20191030;
import java.util.List;
import com.aliyuncs.v5.AcsResponse;
import com.aliyuncs.v5.aliyuncvc.transform.v20191030.GetMeetingResponseUnmarshaller;
import com.aliyuncs.v5.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class GetMeetingResponse extends AcsResponse {
private Integer errorCode;
private String message;
private Boolean success;
private String requestId;
private MeetingInfo meetingInfo;
public Integer getErrorCode() {
return this.errorCode;
}
public void setErrorCode(Integer errorCode) {
this.errorCode = errorCode;
}
public String getMessage() {
return this.message;
}
public void setMessage(String message) {
this.message = message;
}
public Boolean getSuccess() {
return this.success;
}
public void setSuccess(Boolean success) {
this.success = success;
}
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public MeetingInfo getMeetingInfo() {
return this.meetingInfo;
}
public void setMeetingInfo(MeetingInfo meetingInfo) {
this.meetingInfo = meetingInfo;
}
public static class MeetingInfo {
private String meetingName;
private Long validTime;
private String meetingCode;
private Long createTime;
private String userId;
private String meetingUUID;
private String password;
private List<MemberListItem> memberList;
public String getMeetingName() {
return this.meetingName;
}
public void setMeetingName(String meetingName) {
this.meetingName = meetingName;
}
public Long getValidTime() {
return this.validTime;
}
public void setValidTime(Long validTime) {
this.validTime = validTime;
}
public String getMeetingCode() {
return this.meetingCode;
}
public void setMeetingCode(String meetingCode) {
this.meetingCode = meetingCode;
}
public Long getCreateTime() {
return this.createTime;
}
public void setCreateTime(Long createTime) {
this.createTime = createTime;
}
public String getUserId() {
return this.userId;
}
public void setUserId(String userId) {
this.userId = userId;
}
public String getMeetingUUID() {
return this.meetingUUID;
}
public void setMeetingUUID(String meetingUUID) {
this.meetingUUID = meetingUUID;
}
public String getPassword() {
return this.password;
}
public void setPassword(String password) {
this.password = password;
}
public List<MemberListItem> getMemberList() {
return this.memberList;
}
public void setMemberList(List<MemberListItem> memberList) {
this.memberList = memberList;
}
public static class MemberListItem {
private String userAvatarUrl;
private String memberUUID;
private String userName;
private String userId;
private String status;
public String getUserAvatarUrl() {
return this.userAvatarUrl;
}
public void setUserAvatarUrl(String userAvatarUrl) {
this.userAvatarUrl = userAvatarUrl;
}
public String getMemberUUID() {
return this.memberUUID;
}
public void setMemberUUID(String memberUUID) {
this.memberUUID = memberUUID;
}
public String getUserName() {
return this.userName;
}
public void setUserName(String userName) {
this.userName = userName;
}
public String getUserId() {
return this.userId;
}
public void setUserId(String userId) {
this.userId = userId;
}
public String getStatus() {
return this.status;
}
public void setStatus(String status) {
this.status = status;
}
}
}
@Override
public GetMeetingResponse getInstance(UnmarshallerContext context) {
return GetMeetingResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-aliyuncvc-v5/1.0.9/com/aliyuncs/v5/aliyuncvc/model
|
java-sources/com/aliyun/aliyun-java-sdk-aliyuncvc-v5/1.0.9/com/aliyuncs/v5/aliyuncvc/model/v20191030/GetUserRequest.java
|
/*
* 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.
*/
package com.aliyuncs.v5.aliyuncvc.model.v20191030;
import com.aliyuncs.v5.RpcAcsRequest;
import com.aliyuncs.v5.http.MethodType;
import com.aliyuncs.v5.aliyuncvc.Endpoint;
/**
* @author auto create
* @version
*/
public class GetUserRequest extends RpcAcsRequest<GetUserResponse> {
private String userId;
public GetUserRequest() {
super("aliyuncvc", "2019-10-30", "GetUser", "aliyuncvc");
setMethod(MethodType.POST);
try {
com.aliyuncs.v5.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap);
com.aliyuncs.v5.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType);
} catch (Exception e) {}
}
public String getUserId() {
return this.userId;
}
public void setUserId(String userId) {
this.userId = userId;
if(userId != null){
putQueryParameter("UserId", userId);
}
}
@Override
public Class<GetUserResponse> getResponseClass() {
return GetUserResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-aliyuncvc-v5/1.0.9/com/aliyuncs/v5/aliyuncvc/model
|
java-sources/com/aliyun/aliyun-java-sdk-aliyuncvc-v5/1.0.9/com/aliyuncs/v5/aliyuncvc/model/v20191030/GetUserResponse.java
|
/*
* 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.
*/
package com.aliyuncs.v5.aliyuncvc.model.v20191030;
import com.aliyuncs.v5.AcsResponse;
import com.aliyuncs.v5.aliyuncvc.transform.v20191030.GetUserResponseUnmarshaller;
import com.aliyuncs.v5.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class GetUserResponse extends AcsResponse {
private Integer errorCode;
private String message;
private Boolean success;
private String requestId;
private UserInfo userInfo;
public Integer getErrorCode() {
return this.errorCode;
}
public void setErrorCode(Integer errorCode) {
this.errorCode = errorCode;
}
public String getMessage() {
return this.message;
}
public void setMessage(String message) {
this.message = message;
}
public Boolean getSuccess() {
return this.success;
}
public void setSuccess(Boolean success) {
this.success = success;
}
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public UserInfo getUserInfo() {
return this.userInfo;
}
public void setUserInfo(UserInfo userInfo) {
this.userInfo = userInfo;
}
public static class UserInfo {
private String userName;
private Long createTime;
private String groupId;
private String groupName;
private String userId;
private String userTel;
private String userEmail;
private String userMobile;
private String userAvatarUrl;
private String departId;
private String departName;
private String jobName;
public String getUserName() {
return this.userName;
}
public void setUserName(String userName) {
this.userName = userName;
}
public Long getCreateTime() {
return this.createTime;
}
public void setCreateTime(Long createTime) {
this.createTime = createTime;
}
public String getGroupId() {
return this.groupId;
}
public void setGroupId(String groupId) {
this.groupId = groupId;
}
public String getGroupName() {
return this.groupName;
}
public void setGroupName(String groupName) {
this.groupName = groupName;
}
public String getUserId() {
return this.userId;
}
public void setUserId(String userId) {
this.userId = userId;
}
public String getUserTel() {
return this.userTel;
}
public void setUserTel(String userTel) {
this.userTel = userTel;
}
public String getUserEmail() {
return this.userEmail;
}
public void setUserEmail(String userEmail) {
this.userEmail = userEmail;
}
public String getUserMobile() {
return this.userMobile;
}
public void setUserMobile(String userMobile) {
this.userMobile = userMobile;
}
public String getUserAvatarUrl() {
return this.userAvatarUrl;
}
public void setUserAvatarUrl(String userAvatarUrl) {
this.userAvatarUrl = userAvatarUrl;
}
public String getDepartId() {
return this.departId;
}
public void setDepartId(String departId) {
this.departId = departId;
}
public String getDepartName() {
return this.departName;
}
public void setDepartName(String departName) {
this.departName = departName;
}
public String getJobName() {
return this.jobName;
}
public void setJobName(String jobName) {
this.jobName = jobName;
}
}
@Override
public GetUserResponse getInstance(UnmarshallerContext context) {
return GetUserResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-aliyuncvc-v5/1.0.9/com/aliyuncs/v5/aliyuncvc/model
|
java-sources/com/aliyun/aliyun-java-sdk-aliyuncvc-v5/1.0.9/com/aliyuncs/v5/aliyuncvc/model/v20191030/JoinDeviceMeetingRequest.java
|
/*
* 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.
*/
package com.aliyuncs.v5.aliyuncvc.model.v20191030;
import com.aliyuncs.v5.RpcAcsRequest;
import com.aliyuncs.v5.http.MethodType;
import com.aliyuncs.v5.aliyuncvc.Endpoint;
/**
* @author auto create
* @version
*/
public class JoinDeviceMeetingRequest extends RpcAcsRequest<JoinDeviceMeetingResponse> {
private String token;
private String password;
private String meetingCode;
private String sN;
public JoinDeviceMeetingRequest() {
super("aliyuncvc", "2019-10-30", "JoinDeviceMeeting", "aliyuncvc");
setMethod(MethodType.POST);
try {
com.aliyuncs.v5.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap);
com.aliyuncs.v5.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType);
} catch (Exception e) {}
}
public String getToken() {
return this.token;
}
public void setToken(String token) {
this.token = token;
if(token != null){
putBodyParameter("Token", token);
}
}
public String getPassword() {
return this.password;
}
public void setPassword(String password) {
this.password = password;
if(password != null){
putBodyParameter("Password", password);
}
}
public String getMeetingCode() {
return this.meetingCode;
}
public void setMeetingCode(String meetingCode) {
this.meetingCode = meetingCode;
if(meetingCode != null){
putBodyParameter("MeetingCode", meetingCode);
}
}
public String getSN() {
return this.sN;
}
public void setSN(String sN) {
this.sN = sN;
if(sN != null){
putBodyParameter("SN", sN);
}
}
@Override
public Class<JoinDeviceMeetingResponse> getResponseClass() {
return JoinDeviceMeetingResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-aliyuncvc-v5/1.0.9/com/aliyuncs/v5/aliyuncvc/model
|
java-sources/com/aliyun/aliyun-java-sdk-aliyuncvc-v5/1.0.9/com/aliyuncs/v5/aliyuncvc/model/v20191030/JoinDeviceMeetingResponse.java
|
/*
* 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.
*/
package com.aliyuncs.v5.aliyuncvc.model.v20191030;
import com.aliyuncs.v5.AcsResponse;
import com.aliyuncs.v5.aliyuncvc.transform.v20191030.JoinDeviceMeetingResponseUnmarshaller;
import com.aliyuncs.v5.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class JoinDeviceMeetingResponse extends AcsResponse {
private Integer errorCode;
private String message;
private Boolean success;
private String requestId;
private Device device;
public Integer getErrorCode() {
return this.errorCode;
}
public void setErrorCode(Integer errorCode) {
this.errorCode = errorCode;
}
public String getMessage() {
return this.message;
}
public void setMessage(String message) {
this.message = message;
}
public Boolean getSuccess() {
return this.success;
}
public void setSuccess(Boolean success) {
this.success = success;
}
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public Device getDevice() {
return this.device;
}
public void setDevice(Device device) {
this.device = device;
}
public static class Device {
private String meetingDomain;
private String meetingToken;
private String meetingCode;
private String memberUUID;
private String clientAppId;
private String meetingUUID;
private String meetingAppId;
private SlsInfo slsInfo;
public String getMeetingDomain() {
return this.meetingDomain;
}
public void setMeetingDomain(String meetingDomain) {
this.meetingDomain = meetingDomain;
}
public String getMeetingToken() {
return this.meetingToken;
}
public void setMeetingToken(String meetingToken) {
this.meetingToken = meetingToken;
}
public String getMeetingCode() {
return this.meetingCode;
}
public void setMeetingCode(String meetingCode) {
this.meetingCode = meetingCode;
}
public String getMemberUUID() {
return this.memberUUID;
}
public void setMemberUUID(String memberUUID) {
this.memberUUID = memberUUID;
}
public String getClientAppId() {
return this.clientAppId;
}
public void setClientAppId(String clientAppId) {
this.clientAppId = clientAppId;
}
public String getMeetingUUID() {
return this.meetingUUID;
}
public void setMeetingUUID(String meetingUUID) {
this.meetingUUID = meetingUUID;
}
public String getMeetingAppId() {
return this.meetingAppId;
}
public void setMeetingAppId(String meetingAppId) {
this.meetingAppId = meetingAppId;
}
public SlsInfo getSlsInfo() {
return this.slsInfo;
}
public void setSlsInfo(SlsInfo slsInfo) {
this.slsInfo = slsInfo;
}
public static class SlsInfo {
private String logServiceEndpoint;
private String project;
private String logstore;
public String getLogServiceEndpoint() {
return this.logServiceEndpoint;
}
public void setLogServiceEndpoint(String logServiceEndpoint) {
this.logServiceEndpoint = logServiceEndpoint;
}
public String getProject() {
return this.project;
}
public void setProject(String project) {
this.project = project;
}
public String getLogstore() {
return this.logstore;
}
public void setLogstore(String logstore) {
this.logstore = logstore;
}
}
}
@Override
public JoinDeviceMeetingResponse getInstance(UnmarshallerContext context) {
return JoinDeviceMeetingResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-aliyuncvc-v5/1.0.9/com/aliyuncs/v5/aliyuncvc/model
|
java-sources/com/aliyun/aliyun-java-sdk-aliyuncvc-v5/1.0.9/com/aliyuncs/v5/aliyuncvc/model/v20191030/JoinLiveRequest.java
|
/*
* 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.
*/
package com.aliyuncs.v5.aliyuncvc.model.v20191030;
import com.aliyuncs.v5.RpcAcsRequest;
import com.aliyuncs.v5.http.MethodType;
import com.aliyuncs.v5.aliyuncvc.Endpoint;
/**
* @author auto create
* @version
*/
public class JoinLiveRequest extends RpcAcsRequest<JoinLiveResponse> {
private String liveUUID;
private String userId;
private String password;
public JoinLiveRequest() {
super("aliyuncvc", "2019-10-30", "JoinLive", "aliyuncvc");
setMethod(MethodType.POST);
try {
com.aliyuncs.v5.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap);
com.aliyuncs.v5.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType);
} catch (Exception e) {}
}
public String getLiveUUID() {
return this.liveUUID;
}
public void setLiveUUID(String liveUUID) {
this.liveUUID = liveUUID;
if(liveUUID != null){
putBodyParameter("LiveUUID", liveUUID);
}
}
public String getUserId() {
return this.userId;
}
public void setUserId(String userId) {
this.userId = userId;
if(userId != null){
putBodyParameter("UserId", userId);
}
}
public String getPassword() {
return this.password;
}
public void setPassword(String password) {
this.password = password;
if(password != null){
putBodyParameter("Password", password);
}
}
@Override
public Class<JoinLiveResponse> getResponseClass() {
return JoinLiveResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-aliyuncvc-v5/1.0.9/com/aliyuncs/v5/aliyuncvc/model
|
java-sources/com/aliyun/aliyun-java-sdk-aliyuncvc-v5/1.0.9/com/aliyuncs/v5/aliyuncvc/model/v20191030/JoinLiveResponse.java
|
/*
* 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.
*/
package com.aliyuncs.v5.aliyuncvc.model.v20191030;
import com.aliyuncs.v5.AcsResponse;
import com.aliyuncs.v5.aliyuncvc.transform.v20191030.JoinLiveResponseUnmarshaller;
import com.aliyuncs.v5.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class JoinLiveResponse extends AcsResponse {
private Integer errorCode;
private Boolean success;
private String requestId;
private String message;
private MeetingInfo meetingInfo;
public Integer getErrorCode() {
return this.errorCode;
}
public void setErrorCode(Integer errorCode) {
this.errorCode = errorCode;
}
public Boolean getSuccess() {
return this.success;
}
public void setSuccess(Boolean success) {
this.success = success;
}
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public String getMessage() {
return this.message;
}
public void setMessage(String message) {
this.message = message;
}
public MeetingInfo getMeetingInfo() {
return this.meetingInfo;
}
public void setMeetingInfo(MeetingInfo meetingInfo) {
this.meetingInfo = meetingInfo;
}
public static class MeetingInfo {
private String meetingDomain;
private String meetingToken;
private String meetingCode;
private String memberUUID;
private String clientAppId;
private String meetingUUID;
private String meetingAppId;
private SlsInfo slsInfo;
public String getMeetingDomain() {
return this.meetingDomain;
}
public void setMeetingDomain(String meetingDomain) {
this.meetingDomain = meetingDomain;
}
public String getMeetingToken() {
return this.meetingToken;
}
public void setMeetingToken(String meetingToken) {
this.meetingToken = meetingToken;
}
public String getMeetingCode() {
return this.meetingCode;
}
public void setMeetingCode(String meetingCode) {
this.meetingCode = meetingCode;
}
public String getMemberUUID() {
return this.memberUUID;
}
public void setMemberUUID(String memberUUID) {
this.memberUUID = memberUUID;
}
public String getClientAppId() {
return this.clientAppId;
}
public void setClientAppId(String clientAppId) {
this.clientAppId = clientAppId;
}
public String getMeetingUUID() {
return this.meetingUUID;
}
public void setMeetingUUID(String meetingUUID) {
this.meetingUUID = meetingUUID;
}
public String getMeetingAppId() {
return this.meetingAppId;
}
public void setMeetingAppId(String meetingAppId) {
this.meetingAppId = meetingAppId;
}
public SlsInfo getSlsInfo() {
return this.slsInfo;
}
public void setSlsInfo(SlsInfo slsInfo) {
this.slsInfo = slsInfo;
}
public static class SlsInfo {
private String logServiceEndpoint;
private String logstore;
private String project;
public String getLogServiceEndpoint() {
return this.logServiceEndpoint;
}
public void setLogServiceEndpoint(String logServiceEndpoint) {
this.logServiceEndpoint = logServiceEndpoint;
}
public String getLogstore() {
return this.logstore;
}
public void setLogstore(String logstore) {
this.logstore = logstore;
}
public String getProject() {
return this.project;
}
public void setProject(String project) {
this.project = project;
}
}
}
@Override
public JoinLiveResponse getInstance(UnmarshallerContext context) {
return JoinLiveResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-aliyuncvc-v5/1.0.9/com/aliyuncs/v5/aliyuncvc/model
|
java-sources/com/aliyun/aliyun-java-sdk-aliyuncvc-v5/1.0.9/com/aliyuncs/v5/aliyuncvc/model/v20191030/JoinMeetingInternationalRequest.java
|
/*
* 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.
*/
package com.aliyuncs.v5.aliyuncvc.model.v20191030;
import com.aliyuncs.v5.RpcAcsRequest;
import com.aliyuncs.v5.http.MethodType;
import com.aliyuncs.v5.aliyuncvc.Endpoint;
/**
* @author auto create
* @version
*/
public class JoinMeetingInternationalRequest extends RpcAcsRequest<JoinMeetingInternationalResponse> {
private String userId;
private String password;
private String meetingCode;
public JoinMeetingInternationalRequest() {
super("aliyuncvc", "2019-10-30", "JoinMeetingInternational", "aliyuncvc");
setMethod(MethodType.POST);
try {
com.aliyuncs.v5.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap);
com.aliyuncs.v5.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType);
} catch (Exception e) {}
}
public String getUserId() {
return this.userId;
}
public void setUserId(String userId) {
this.userId = userId;
if(userId != null){
putBodyParameter("UserId", userId);
}
}
public String getPassword() {
return this.password;
}
public void setPassword(String password) {
this.password = password;
if(password != null){
putBodyParameter("Password", password);
}
}
public String getMeetingCode() {
return this.meetingCode;
}
public void setMeetingCode(String meetingCode) {
this.meetingCode = meetingCode;
if(meetingCode != null){
putBodyParameter("MeetingCode", meetingCode);
}
}
@Override
public Class<JoinMeetingInternationalResponse> getResponseClass() {
return JoinMeetingInternationalResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-aliyuncvc-v5/1.0.9/com/aliyuncs/v5/aliyuncvc/model
|
java-sources/com/aliyun/aliyun-java-sdk-aliyuncvc-v5/1.0.9/com/aliyuncs/v5/aliyuncvc/model/v20191030/JoinMeetingInternationalResponse.java
|
/*
* 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.
*/
package com.aliyuncs.v5.aliyuncvc.model.v20191030;
import com.aliyuncs.v5.AcsResponse;
import com.aliyuncs.v5.aliyuncvc.transform.v20191030.JoinMeetingInternationalResponseUnmarshaller;
import com.aliyuncs.v5.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class JoinMeetingInternationalResponse extends AcsResponse {
private Integer errorCode;
private Boolean success;
private String requestId;
private String message;
private MeetingInfo meetingInfo;
public Integer getErrorCode() {
return this.errorCode;
}
public void setErrorCode(Integer errorCode) {
this.errorCode = errorCode;
}
public Boolean getSuccess() {
return this.success;
}
public void setSuccess(Boolean success) {
this.success = success;
}
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public String getMessage() {
return this.message;
}
public void setMessage(String message) {
this.message = message;
}
public MeetingInfo getMeetingInfo() {
return this.meetingInfo;
}
public void setMeetingInfo(MeetingInfo meetingInfo) {
this.meetingInfo = meetingInfo;
}
public static class MeetingInfo {
private String meetingDomain;
private String meetingToken;
private String meetingCode;
private String memberUUID;
private String clientAppId;
private String meetingUUID;
private String meetingAppId;
private SlsInfo slsInfo;
public String getMeetingDomain() {
return this.meetingDomain;
}
public void setMeetingDomain(String meetingDomain) {
this.meetingDomain = meetingDomain;
}
public String getMeetingToken() {
return this.meetingToken;
}
public void setMeetingToken(String meetingToken) {
this.meetingToken = meetingToken;
}
public String getMeetingCode() {
return this.meetingCode;
}
public void setMeetingCode(String meetingCode) {
this.meetingCode = meetingCode;
}
public String getMemberUUID() {
return this.memberUUID;
}
public void setMemberUUID(String memberUUID) {
this.memberUUID = memberUUID;
}
public String getClientAppId() {
return this.clientAppId;
}
public void setClientAppId(String clientAppId) {
this.clientAppId = clientAppId;
}
public String getMeetingUUID() {
return this.meetingUUID;
}
public void setMeetingUUID(String meetingUUID) {
this.meetingUUID = meetingUUID;
}
public String getMeetingAppId() {
return this.meetingAppId;
}
public void setMeetingAppId(String meetingAppId) {
this.meetingAppId = meetingAppId;
}
public SlsInfo getSlsInfo() {
return this.slsInfo;
}
public void setSlsInfo(SlsInfo slsInfo) {
this.slsInfo = slsInfo;
}
public static class SlsInfo {
private String logServiceEndpoint;
private String logstore;
private String project;
public String getLogServiceEndpoint() {
return this.logServiceEndpoint;
}
public void setLogServiceEndpoint(String logServiceEndpoint) {
this.logServiceEndpoint = logServiceEndpoint;
}
public String getLogstore() {
return this.logstore;
}
public void setLogstore(String logstore) {
this.logstore = logstore;
}
public String getProject() {
return this.project;
}
public void setProject(String project) {
this.project = project;
}
}
}
@Override
public JoinMeetingInternationalResponse getInstance(UnmarshallerContext context) {
return JoinMeetingInternationalResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-aliyuncvc-v5/1.0.9/com/aliyuncs/v5/aliyuncvc/model
|
java-sources/com/aliyun/aliyun-java-sdk-aliyuncvc-v5/1.0.9/com/aliyuncs/v5/aliyuncvc/model/v20191030/JoinMeetingRequest.java
|
/*
* 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.
*/
package com.aliyuncs.v5.aliyuncvc.model.v20191030;
import com.aliyuncs.v5.RpcAcsRequest;
import com.aliyuncs.v5.http.MethodType;
import com.aliyuncs.v5.aliyuncvc.Endpoint;
/**
* @author auto create
* @version
*/
public class JoinMeetingRequest extends RpcAcsRequest<JoinMeetingResponse> {
private String userId;
private String password;
private String meetingCode;
public JoinMeetingRequest() {
super("aliyuncvc", "2019-10-30", "JoinMeeting", "aliyuncvc");
setMethod(MethodType.POST);
try {
com.aliyuncs.v5.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap);
com.aliyuncs.v5.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType);
} catch (Exception e) {}
}
public String getUserId() {
return this.userId;
}
public void setUserId(String userId) {
this.userId = userId;
if(userId != null){
putBodyParameter("UserId", userId);
}
}
public String getPassword() {
return this.password;
}
public void setPassword(String password) {
this.password = password;
if(password != null){
putBodyParameter("Password", password);
}
}
public String getMeetingCode() {
return this.meetingCode;
}
public void setMeetingCode(String meetingCode) {
this.meetingCode = meetingCode;
if(meetingCode != null){
putBodyParameter("MeetingCode", meetingCode);
}
}
@Override
public Class<JoinMeetingResponse> getResponseClass() {
return JoinMeetingResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-aliyuncvc-v5/1.0.9/com/aliyuncs/v5/aliyuncvc/model
|
java-sources/com/aliyun/aliyun-java-sdk-aliyuncvc-v5/1.0.9/com/aliyuncs/v5/aliyuncvc/model/v20191030/JoinMeetingResponse.java
|
/*
* 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.
*/
package com.aliyuncs.v5.aliyuncvc.model.v20191030;
import com.aliyuncs.v5.AcsResponse;
import com.aliyuncs.v5.aliyuncvc.transform.v20191030.JoinMeetingResponseUnmarshaller;
import com.aliyuncs.v5.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class JoinMeetingResponse extends AcsResponse {
private Integer errorCode;
private Boolean success;
private String requestId;
private String message;
private MeetingInfo meetingInfo;
public Integer getErrorCode() {
return this.errorCode;
}
public void setErrorCode(Integer errorCode) {
this.errorCode = errorCode;
}
public Boolean getSuccess() {
return this.success;
}
public void setSuccess(Boolean success) {
this.success = success;
}
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public String getMessage() {
return this.message;
}
public void setMessage(String message) {
this.message = message;
}
public MeetingInfo getMeetingInfo() {
return this.meetingInfo;
}
public void setMeetingInfo(MeetingInfo meetingInfo) {
this.meetingInfo = meetingInfo;
}
public static class MeetingInfo {
private String meetingDomain;
private String meetingToken;
private String meetingCode;
private String memberUUID;
private String clientAppId;
private String meetingUUID;
private String meetingAppId;
private SlsInfo slsInfo;
public String getMeetingDomain() {
return this.meetingDomain;
}
public void setMeetingDomain(String meetingDomain) {
this.meetingDomain = meetingDomain;
}
public String getMeetingToken() {
return this.meetingToken;
}
public void setMeetingToken(String meetingToken) {
this.meetingToken = meetingToken;
}
public String getMeetingCode() {
return this.meetingCode;
}
public void setMeetingCode(String meetingCode) {
this.meetingCode = meetingCode;
}
public String getMemberUUID() {
return this.memberUUID;
}
public void setMemberUUID(String memberUUID) {
this.memberUUID = memberUUID;
}
public String getClientAppId() {
return this.clientAppId;
}
public void setClientAppId(String clientAppId) {
this.clientAppId = clientAppId;
}
public String getMeetingUUID() {
return this.meetingUUID;
}
public void setMeetingUUID(String meetingUUID) {
this.meetingUUID = meetingUUID;
}
public String getMeetingAppId() {
return this.meetingAppId;
}
public void setMeetingAppId(String meetingAppId) {
this.meetingAppId = meetingAppId;
}
public SlsInfo getSlsInfo() {
return this.slsInfo;
}
public void setSlsInfo(SlsInfo slsInfo) {
this.slsInfo = slsInfo;
}
public static class SlsInfo {
private String logServiceEndpoint;
private String logstore;
private String project;
public String getLogServiceEndpoint() {
return this.logServiceEndpoint;
}
public void setLogServiceEndpoint(String logServiceEndpoint) {
this.logServiceEndpoint = logServiceEndpoint;
}
public String getLogstore() {
return this.logstore;
}
public void setLogstore(String logstore) {
this.logstore = logstore;
}
public String getProject() {
return this.project;
}
public void setProject(String project) {
this.project = project;
}
}
}
@Override
public JoinMeetingResponse getInstance(UnmarshallerContext context) {
return JoinMeetingResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-aliyuncvc-v5/1.0.9/com/aliyuncs/v5/aliyuncvc/model
|
java-sources/com/aliyun/aliyun-java-sdk-aliyuncvc-v5/1.0.9/com/aliyuncs/v5/aliyuncvc/model/v20191030/ListDeviceIpRequest.java
|
/*
* 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.
*/
package com.aliyuncs.v5.aliyuncvc.model.v20191030;
import com.aliyuncs.v5.RpcAcsRequest;
import com.aliyuncs.v5.http.MethodType;
import com.aliyuncs.v5.aliyuncvc.Endpoint;
/**
* @author auto create
* @version
*/
public class ListDeviceIpRequest extends RpcAcsRequest<ListDeviceIpResponse> {
private String groupId;
private String sN;
public ListDeviceIpRequest() {
super("aliyuncvc", "2019-10-30", "ListDeviceIp", "aliyuncvc");
setMethod(MethodType.POST);
try {
com.aliyuncs.v5.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap);
com.aliyuncs.v5.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType);
} catch (Exception e) {}
}
public String getGroupId() {
return this.groupId;
}
public void setGroupId(String groupId) {
this.groupId = groupId;
if(groupId != null){
putBodyParameter("GroupId", groupId);
}
}
public String getSN() {
return this.sN;
}
public void setSN(String sN) {
this.sN = sN;
if(sN != null){
putBodyParameter("SN", sN);
}
}
@Override
public Class<ListDeviceIpResponse> getResponseClass() {
return ListDeviceIpResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-aliyuncvc-v5/1.0.9/com/aliyuncs/v5/aliyuncvc/model
|
java-sources/com/aliyun/aliyun-java-sdk-aliyuncvc-v5/1.0.9/com/aliyuncs/v5/aliyuncvc/model/v20191030/ListDeviceIpResponse.java
|
/*
* 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.
*/
package com.aliyuncs.v5.aliyuncvc.model.v20191030;
import java.util.List;
import com.aliyuncs.v5.AcsResponse;
import com.aliyuncs.v5.aliyuncvc.transform.v20191030.ListDeviceIpResponseUnmarshaller;
import com.aliyuncs.v5.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class ListDeviceIpResponse extends AcsResponse {
private Integer errorCode;
private String message;
private Boolean success;
private String requestId;
private List<DevicesItem> devices;
public Integer getErrorCode() {
return this.errorCode;
}
public void setErrorCode(Integer errorCode) {
this.errorCode = errorCode;
}
public String getMessage() {
return this.message;
}
public void setMessage(String message) {
this.message = message;
}
public Boolean getSuccess() {
return this.success;
}
public void setSuccess(Boolean success) {
this.success = success;
}
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public List<DevicesItem> getDevices() {
return this.devices;
}
public void setDevices(List<DevicesItem> devices) {
this.devices = devices;
}
public static class DevicesItem {
private String screenCode;
private String ip;
private String mac;
private String ssId;
public String getScreenCode() {
return this.screenCode;
}
public void setScreenCode(String screenCode) {
this.screenCode = screenCode;
}
public String getIp() {
return this.ip;
}
public void setIp(String ip) {
this.ip = ip;
}
public String getMac() {
return this.mac;
}
public void setMac(String mac) {
this.mac = mac;
}
public String getSsId() {
return this.ssId;
}
public void setSsId(String ssId) {
this.ssId = ssId;
}
}
@Override
public ListDeviceIpResponse getInstance(UnmarshallerContext context) {
return ListDeviceIpResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-aliyuncvc-v5/1.0.9/com/aliyuncs/v5/aliyuncvc/model
|
java-sources/com/aliyun/aliyun-java-sdk-aliyuncvc-v5/1.0.9/com/aliyuncs/v5/aliyuncvc/model/v20191030/ListEvaluationsRequest.java
|
/*
* 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.
*/
package com.aliyuncs.v5.aliyuncvc.model.v20191030;
import com.aliyuncs.v5.RpcAcsRequest;
import com.aliyuncs.v5.http.MethodType;
import com.aliyuncs.v5.aliyuncvc.Endpoint;
/**
* @author auto create
* @version
*/
public class ListEvaluationsRequest extends RpcAcsRequest<ListEvaluationsResponse> {
public ListEvaluationsRequest() {
super("aliyuncvc", "2019-10-30", "ListEvaluations", "aliyuncvc");
setMethod(MethodType.POST);
try {
com.aliyuncs.v5.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap);
com.aliyuncs.v5.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType);
} catch (Exception e) {}
}
@Override
public Class<ListEvaluationsResponse> getResponseClass() {
return ListEvaluationsResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-aliyuncvc-v5/1.0.9/com/aliyuncs/v5/aliyuncvc/model
|
java-sources/com/aliyun/aliyun-java-sdk-aliyuncvc-v5/1.0.9/com/aliyuncs/v5/aliyuncvc/model/v20191030/ListEvaluationsResponse.java
|
/*
* 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.
*/
package com.aliyuncs.v5.aliyuncvc.model.v20191030;
import com.aliyuncs.v5.AcsResponse;
import com.aliyuncs.v5.aliyuncvc.transform.v20191030.ListEvaluationsResponseUnmarshaller;
import com.aliyuncs.v5.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class ListEvaluationsResponse extends AcsResponse {
private String userEvaluation;
private Integer errorCode;
private String message;
private Boolean success;
private String requestId;
public String getUserEvaluation() {
return this.userEvaluation;
}
public void setUserEvaluation(String userEvaluation) {
this.userEvaluation = userEvaluation;
}
public Integer getErrorCode() {
return this.errorCode;
}
public void setErrorCode(Integer errorCode) {
this.errorCode = errorCode;
}
public String getMessage() {
return this.message;
}
public void setMessage(String message) {
this.message = message;
}
public Boolean getSuccess() {
return this.success;
}
public void setSuccess(Boolean success) {
this.success = success;
}
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
@Override
public ListEvaluationsResponse getInstance(UnmarshallerContext context) {
return ListEvaluationsResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-aliyuncvc-v5/1.0.9/com/aliyuncs/v5/aliyuncvc/model
|
java-sources/com/aliyun/aliyun-java-sdk-aliyuncvc-v5/1.0.9/com/aliyuncs/v5/aliyuncvc/model/v20191030/ListIsvStatisticsRequest.java
|
/*
* 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.
*/
package com.aliyuncs.v5.aliyuncvc.model.v20191030;
import com.aliyuncs.v5.RpcAcsRequest;
import com.aliyuncs.v5.http.MethodType;
import com.aliyuncs.v5.aliyuncvc.Endpoint;
/**
* @author auto create
* @version
*/
public class ListIsvStatisticsRequest extends RpcAcsRequest<ListIsvStatisticsResponse> {
private Long endTime;
private Long startTime;
public ListIsvStatisticsRequest() {
super("aliyuncvc", "2019-10-30", "ListIsvStatistics", "aliyuncvc");
setMethod(MethodType.POST);
try {
com.aliyuncs.v5.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap);
com.aliyuncs.v5.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType);
} catch (Exception e) {}
}
public Long getEndTime() {
return this.endTime;
}
public void setEndTime(Long endTime) {
this.endTime = endTime;
if(endTime != null){
putQueryParameter("EndTime", endTime.toString());
}
}
public Long getStartTime() {
return this.startTime;
}
public void setStartTime(Long startTime) {
this.startTime = startTime;
if(startTime != null){
putQueryParameter("StartTime", startTime.toString());
}
}
@Override
public Class<ListIsvStatisticsResponse> getResponseClass() {
return ListIsvStatisticsResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-aliyuncvc-v5/1.0.9/com/aliyuncs/v5/aliyuncvc/model
|
java-sources/com/aliyun/aliyun-java-sdk-aliyuncvc-v5/1.0.9/com/aliyuncs/v5/aliyuncvc/model/v20191030/ListIsvStatisticsResponse.java
|
/*
* 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.
*/
package com.aliyuncs.v5.aliyuncvc.model.v20191030;
import java.util.List;
import com.aliyuncs.v5.AcsResponse;
import com.aliyuncs.v5.aliyuncvc.transform.v20191030.ListIsvStatisticsResponseUnmarshaller;
import com.aliyuncs.v5.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class ListIsvStatisticsResponse extends AcsResponse {
private Integer errorCode;
private String message;
private Boolean success;
private String requestId;
private Data data;
public Integer getErrorCode() {
return this.errorCode;
}
public void setErrorCode(Integer errorCode) {
this.errorCode = errorCode;
}
public String getMessage() {
return this.message;
}
public void setMessage(String message) {
this.message = message;
}
public Boolean getSuccess() {
return this.success;
}
public void setSuccess(Boolean success) {
this.success = success;
}
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public Data getData() {
return this.data;
}
public void setData(Data data) {
this.data = data;
}
public static class Data {
private List<Statistic> statistics;
private Total total;
public List<Statistic> getStatistics() {
return this.statistics;
}
public void setStatistics(List<Statistic> statistics) {
this.statistics = statistics;
}
public Total getTotal() {
return this.total;
}
public void setTotal(Total total) {
this.total = total;
}
public static class Statistic {
private String meetingNumber;
private String meetingLength;
private String memberNumber;
private String day;
public String getMeetingNumber() {
return this.meetingNumber;
}
public void setMeetingNumber(String meetingNumber) {
this.meetingNumber = meetingNumber;
}
public String getMeetingLength() {
return this.meetingLength;
}
public void setMeetingLength(String meetingLength) {
this.meetingLength = meetingLength;
}
public String getMemberNumber() {
return this.memberNumber;
}
public void setMemberNumber(String memberNumber) {
this.memberNumber = memberNumber;
}
public String getDay() {
return this.day;
}
public void setDay(String day) {
this.day = day;
}
}
public static class Total {
private Integer meetingNumber;
private Integer meetingLength;
private Integer memberNumber;
public Integer getMeetingNumber() {
return this.meetingNumber;
}
public void setMeetingNumber(Integer meetingNumber) {
this.meetingNumber = meetingNumber;
}
public Integer getMeetingLength() {
return this.meetingLength;
}
public void setMeetingLength(Integer meetingLength) {
this.meetingLength = meetingLength;
}
public Integer getMemberNumber() {
return this.memberNumber;
}
public void setMemberNumber(Integer memberNumber) {
this.memberNumber = memberNumber;
}
}
}
@Override
public ListIsvStatisticsResponse getInstance(UnmarshallerContext context) {
return ListIsvStatisticsResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-aliyuncvc-v5/1.0.9/com/aliyuncs/v5/aliyuncvc/model
|
java-sources/com/aliyun/aliyun-java-sdk-aliyuncvc-v5/1.0.9/com/aliyuncs/v5/aliyuncvc/model/v20191030/ListMembersRequest.java
|
/*
* 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.
*/
package com.aliyuncs.v5.aliyuncvc.model.v20191030;
import com.aliyuncs.v5.RpcAcsRequest;
import com.aliyuncs.v5.http.MethodType;
import com.aliyuncs.v5.aliyuncvc.Endpoint;
/**
* @author auto create
* @version
*/
public class ListMembersRequest extends RpcAcsRequest<ListMembersResponse> {
private String meetingUUID;
public ListMembersRequest() {
super("aliyuncvc", "2019-10-30", "ListMembers", "aliyuncvc");
setMethod(MethodType.POST);
try {
com.aliyuncs.v5.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap);
com.aliyuncs.v5.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType);
} catch (Exception e) {}
}
public String getMeetingUUID() {
return this.meetingUUID;
}
public void setMeetingUUID(String meetingUUID) {
this.meetingUUID = meetingUUID;
if(meetingUUID != null){
putQueryParameter("MeetingUUID", meetingUUID);
}
}
@Override
public Class<ListMembersResponse> getResponseClass() {
return ListMembersResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-aliyuncvc-v5/1.0.9/com/aliyuncs/v5/aliyuncvc/model
|
java-sources/com/aliyun/aliyun-java-sdk-aliyuncvc-v5/1.0.9/com/aliyuncs/v5/aliyuncvc/model/v20191030/ListMembersResponse.java
|
/*
* 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.
*/
package com.aliyuncs.v5.aliyuncvc.model.v20191030;
import java.util.List;
import com.aliyuncs.v5.AcsResponse;
import com.aliyuncs.v5.aliyuncvc.transform.v20191030.ListMembersResponseUnmarshaller;
import com.aliyuncs.v5.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class ListMembersResponse extends AcsResponse {
private Integer errorCode;
private String message;
private Boolean success;
private String requestId;
private MeetingInfo meetingInfo;
public Integer getErrorCode() {
return this.errorCode;
}
public void setErrorCode(Integer errorCode) {
this.errorCode = errorCode;
}
public String getMessage() {
return this.message;
}
public void setMessage(String message) {
this.message = message;
}
public Boolean getSuccess() {
return this.success;
}
public void setSuccess(Boolean success) {
this.success = success;
}
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public MeetingInfo getMeetingInfo() {
return this.meetingInfo;
}
public void setMeetingInfo(MeetingInfo meetingInfo) {
this.meetingInfo = meetingInfo;
}
public static class MeetingInfo {
private String meetingName;
private String meetingCode;
private String memo;
private String userName;
private Long createTime;
private String userId;
private String meetingUUID;
private List<MemberRecord> memberInfos;
public String getMeetingName() {
return this.meetingName;
}
public void setMeetingName(String meetingName) {
this.meetingName = meetingName;
}
public String getMeetingCode() {
return this.meetingCode;
}
public void setMeetingCode(String meetingCode) {
this.meetingCode = meetingCode;
}
public String getMemo() {
return this.memo;
}
public void setMemo(String memo) {
this.memo = memo;
}
public String getUserName() {
return this.userName;
}
public void setUserName(String userName) {
this.userName = userName;
}
public Long getCreateTime() {
return this.createTime;
}
public void setCreateTime(Long createTime) {
this.createTime = createTime;
}
public String getUserId() {
return this.userId;
}
public void setUserId(String userId) {
this.userId = userId;
}
public String getMeetingUUID() {
return this.meetingUUID;
}
public void setMeetingUUID(String meetingUUID) {
this.meetingUUID = meetingUUID;
}
public List<MemberRecord> getMemberInfos() {
return this.memberInfos;
}
public void setMemberInfos(List<MemberRecord> memberInfos) {
this.memberInfos = memberInfos;
}
public static class MemberRecord {
private String memberUUID;
private String userId;
private String status;
private Long beginTime;
private Long endTime;
private String userName;
public String getMemberUUID() {
return this.memberUUID;
}
public void setMemberUUID(String memberUUID) {
this.memberUUID = memberUUID;
}
public String getUserId() {
return this.userId;
}
public void setUserId(String userId) {
this.userId = userId;
}
public String getStatus() {
return this.status;
}
public void setStatus(String status) {
this.status = status;
}
public Long getBeginTime() {
return this.beginTime;
}
public void setBeginTime(Long beginTime) {
this.beginTime = beginTime;
}
public Long getEndTime() {
return this.endTime;
}
public void setEndTime(Long endTime) {
this.endTime = endTime;
}
public String getUserName() {
return this.userName;
}
public void setUserName(String userName) {
this.userName = userName;
}
}
}
@Override
public ListMembersResponse getInstance(UnmarshallerContext context) {
return ListMembersResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-aliyuncvc-v5/1.0.9/com/aliyuncs/v5/aliyuncvc/model
|
java-sources/com/aliyun/aliyun-java-sdk-aliyuncvc-v5/1.0.9/com/aliyuncs/v5/aliyuncvc/model/v20191030/ListUsersRequest.java
|
/*
* 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.
*/
package com.aliyuncs.v5.aliyuncvc.model.v20191030;
import com.aliyuncs.v5.RpcAcsRequest;
import com.aliyuncs.v5.http.MethodType;
import com.aliyuncs.v5.aliyuncvc.Endpoint;
/**
* @author auto create
* @version
*/
public class ListUsersRequest extends RpcAcsRequest<ListUsersResponse> {
private Integer pageNumber;
private Integer pageSize;
public ListUsersRequest() {
super("aliyuncvc", "2019-10-30", "ListUsers", "aliyuncvc");
setMethod(MethodType.POST);
try {
com.aliyuncs.v5.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap);
com.aliyuncs.v5.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType);
} catch (Exception e) {}
}
public Integer getPageNumber() {
return this.pageNumber;
}
public void setPageNumber(Integer pageNumber) {
this.pageNumber = pageNumber;
if(pageNumber != null){
putQueryParameter("PageNumber", pageNumber.toString());
}
}
public Integer getPageSize() {
return this.pageSize;
}
public void setPageSize(Integer pageSize) {
this.pageSize = pageSize;
if(pageSize != null){
putQueryParameter("PageSize", pageSize.toString());
}
}
@Override
public Class<ListUsersResponse> getResponseClass() {
return ListUsersResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-aliyuncvc-v5/1.0.9/com/aliyuncs/v5/aliyuncvc/model
|
java-sources/com/aliyun/aliyun-java-sdk-aliyuncvc-v5/1.0.9/com/aliyuncs/v5/aliyuncvc/model/v20191030/ListUsersResponse.java
|
/*
* 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.
*/
package com.aliyuncs.v5.aliyuncvc.model.v20191030;
import java.util.List;
import com.aliyuncs.v5.AcsResponse;
import com.aliyuncs.v5.aliyuncvc.transform.v20191030.ListUsersResponseUnmarshaller;
import com.aliyuncs.v5.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class ListUsersResponse extends AcsResponse {
private Integer errorCode;
private String message;
private Boolean success;
private String requestId;
private Data data;
public Integer getErrorCode() {
return this.errorCode;
}
public void setErrorCode(Integer errorCode) {
this.errorCode = errorCode;
}
public String getMessage() {
return this.message;
}
public void setMessage(String message) {
this.message = message;
}
public Boolean getSuccess() {
return this.success;
}
public void setSuccess(Boolean success) {
this.success = success;
}
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public Data getData() {
return this.data;
}
public void setData(Data data) {
this.data = data;
}
public static class Data {
private Integer totalCount;
private Integer pageSize;
private Integer pageNumber;
private List<UserInfo> userInfos;
public Integer getTotalCount() {
return this.totalCount;
}
public void setTotalCount(Integer totalCount) {
this.totalCount = totalCount;
}
public Integer getPageSize() {
return this.pageSize;
}
public void setPageSize(Integer pageSize) {
this.pageSize = pageSize;
}
public Integer getPageNumber() {
return this.pageNumber;
}
public void setPageNumber(Integer pageNumber) {
this.pageNumber = pageNumber;
}
public List<UserInfo> getUserInfos() {
return this.userInfos;
}
public void setUserInfos(List<UserInfo> userInfos) {
this.userInfos = userInfos;
}
public static class UserInfo {
private Long createTime;
private String groupName;
private String userName;
private String groupId;
private String departName;
private String departId;
private String userEmail;
private String userTel;
private String userMobile;
private String userAvatarUrl;
private String jobName;
private String userId;
public Long getCreateTime() {
return this.createTime;
}
public void setCreateTime(Long createTime) {
this.createTime = createTime;
}
public String getGroupName() {
return this.groupName;
}
public void setGroupName(String groupName) {
this.groupName = groupName;
}
public String getUserName() {
return this.userName;
}
public void setUserName(String userName) {
this.userName = userName;
}
public String getGroupId() {
return this.groupId;
}
public void setGroupId(String groupId) {
this.groupId = groupId;
}
public String getDepartName() {
return this.departName;
}
public void setDepartName(String departName) {
this.departName = departName;
}
public String getDepartId() {
return this.departId;
}
public void setDepartId(String departId) {
this.departId = departId;
}
public String getUserEmail() {
return this.userEmail;
}
public void setUserEmail(String userEmail) {
this.userEmail = userEmail;
}
public String getUserTel() {
return this.userTel;
}
public void setUserTel(String userTel) {
this.userTel = userTel;
}
public String getUserMobile() {
return this.userMobile;
}
public void setUserMobile(String userMobile) {
this.userMobile = userMobile;
}
public String getUserAvatarUrl() {
return this.userAvatarUrl;
}
public void setUserAvatarUrl(String userAvatarUrl) {
this.userAvatarUrl = userAvatarUrl;
}
public String getJobName() {
return this.jobName;
}
public void setJobName(String jobName) {
this.jobName = jobName;
}
public String getUserId() {
return this.userId;
}
public void setUserId(String userId) {
this.userId = userId;
}
}
}
@Override
public ListUsersResponse getInstance(UnmarshallerContext context) {
return ListUsersResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-aliyuncvc-v5/1.0.9/com/aliyuncs/v5/aliyuncvc/model
|
java-sources/com/aliyun/aliyun-java-sdk-aliyuncvc-v5/1.0.9/com/aliyuncs/v5/aliyuncvc/model/v20191030/ModifyMeetingPasswordInternationalRequest.java
|
/*
* 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.
*/
package com.aliyuncs.v5.aliyuncvc.model.v20191030;
import com.aliyuncs.v5.RpcAcsRequest;
import com.aliyuncs.v5.http.MethodType;
import com.aliyuncs.v5.aliyuncvc.Endpoint;
/**
* @author auto create
* @version
*/
public class ModifyMeetingPasswordInternationalRequest extends RpcAcsRequest<ModifyMeetingPasswordInternationalResponse> {
private String userId;
private Boolean openPasswordFlag;
private String meetingUUID;
private String password;
public ModifyMeetingPasswordInternationalRequest() {
super("aliyuncvc", "2019-10-30", "ModifyMeetingPasswordInternational", "aliyuncvc");
setMethod(MethodType.POST);
try {
com.aliyuncs.v5.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap);
com.aliyuncs.v5.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType);
} catch (Exception e) {}
}
public String getUserId() {
return this.userId;
}
public void setUserId(String userId) {
this.userId = userId;
if(userId != null){
putBodyParameter("UserId", userId);
}
}
public Boolean getOpenPasswordFlag() {
return this.openPasswordFlag;
}
public void setOpenPasswordFlag(Boolean openPasswordFlag) {
this.openPasswordFlag = openPasswordFlag;
if(openPasswordFlag != null){
putBodyParameter("OpenPasswordFlag", openPasswordFlag.toString());
}
}
public String getMeetingUUID() {
return this.meetingUUID;
}
public void setMeetingUUID(String meetingUUID) {
this.meetingUUID = meetingUUID;
if(meetingUUID != null){
putBodyParameter("MeetingUUID", meetingUUID);
}
}
public String getPassword() {
return this.password;
}
public void setPassword(String password) {
this.password = password;
if(password != null){
putBodyParameter("Password", password);
}
}
@Override
public Class<ModifyMeetingPasswordInternationalResponse> getResponseClass() {
return ModifyMeetingPasswordInternationalResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-aliyuncvc-v5/1.0.9/com/aliyuncs/v5/aliyuncvc/model
|
java-sources/com/aliyun/aliyun-java-sdk-aliyuncvc-v5/1.0.9/com/aliyuncs/v5/aliyuncvc/model/v20191030/ModifyMeetingPasswordInternationalResponse.java
|
/*
* 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.
*/
package com.aliyuncs.v5.aliyuncvc.model.v20191030;
import com.aliyuncs.v5.AcsResponse;
import com.aliyuncs.v5.aliyuncvc.transform.v20191030.ModifyMeetingPasswordInternationalResponseUnmarshaller;
import com.aliyuncs.v5.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class ModifyMeetingPasswordInternationalResponse extends AcsResponse {
private Integer errorCode;
private String message;
private Boolean success;
private String requestId;
public Integer getErrorCode() {
return this.errorCode;
}
public void setErrorCode(Integer errorCode) {
this.errorCode = errorCode;
}
public String getMessage() {
return this.message;
}
public void setMessage(String message) {
this.message = message;
}
public Boolean getSuccess() {
return this.success;
}
public void setSuccess(Boolean success) {
this.success = success;
}
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
@Override
public ModifyMeetingPasswordInternationalResponse getInstance(UnmarshallerContext context) {
return ModifyMeetingPasswordInternationalResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-aliyuncvc-v5/1.0.9/com/aliyuncs/v5/aliyuncvc/model
|
java-sources/com/aliyun/aliyun-java-sdk-aliyuncvc-v5/1.0.9/com/aliyuncs/v5/aliyuncvc/model/v20191030/ModifyMeetingPasswordRequest.java
|
/*
* 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.
*/
package com.aliyuncs.v5.aliyuncvc.model.v20191030;
import com.aliyuncs.v5.RpcAcsRequest;
import com.aliyuncs.v5.http.MethodType;
import com.aliyuncs.v5.aliyuncvc.Endpoint;
/**
* @author auto create
* @version
*/
public class ModifyMeetingPasswordRequest extends RpcAcsRequest<ModifyMeetingPasswordResponse> {
private String userId;
private Boolean openPasswordFlag;
private String meetingUUID;
private String password;
public ModifyMeetingPasswordRequest() {
super("aliyuncvc", "2019-10-30", "ModifyMeetingPassword", "aliyuncvc");
setMethod(MethodType.POST);
try {
com.aliyuncs.v5.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap);
com.aliyuncs.v5.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType);
} catch (Exception e) {}
}
public String getUserId() {
return this.userId;
}
public void setUserId(String userId) {
this.userId = userId;
if(userId != null){
putBodyParameter("UserId", userId);
}
}
public Boolean getOpenPasswordFlag() {
return this.openPasswordFlag;
}
public void setOpenPasswordFlag(Boolean openPasswordFlag) {
this.openPasswordFlag = openPasswordFlag;
if(openPasswordFlag != null){
putBodyParameter("OpenPasswordFlag", openPasswordFlag.toString());
}
}
public String getMeetingUUID() {
return this.meetingUUID;
}
public void setMeetingUUID(String meetingUUID) {
this.meetingUUID = meetingUUID;
if(meetingUUID != null){
putBodyParameter("MeetingUUID", meetingUUID);
}
}
public String getPassword() {
return this.password;
}
public void setPassword(String password) {
this.password = password;
if(password != null){
putBodyParameter("Password", password);
}
}
@Override
public Class<ModifyMeetingPasswordResponse> getResponseClass() {
return ModifyMeetingPasswordResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-aliyuncvc-v5/1.0.9/com/aliyuncs/v5/aliyuncvc/model
|
java-sources/com/aliyun/aliyun-java-sdk-aliyuncvc-v5/1.0.9/com/aliyuncs/v5/aliyuncvc/model/v20191030/ModifyMeetingPasswordResponse.java
|
/*
* 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.
*/
package com.aliyuncs.v5.aliyuncvc.model.v20191030;
import com.aliyuncs.v5.AcsResponse;
import com.aliyuncs.v5.aliyuncvc.transform.v20191030.ModifyMeetingPasswordResponseUnmarshaller;
import com.aliyuncs.v5.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class ModifyMeetingPasswordResponse extends AcsResponse {
private Integer errorCode;
private String message;
private Boolean success;
private String requestId;
public Integer getErrorCode() {
return this.errorCode;
}
public void setErrorCode(Integer errorCode) {
this.errorCode = errorCode;
}
public String getMessage() {
return this.message;
}
public void setMessage(String message) {
this.message = message;
}
public Boolean getSuccess() {
return this.success;
}
public void setSuccess(Boolean success) {
this.success = success;
}
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
@Override
public ModifyMeetingPasswordResponse getInstance(UnmarshallerContext context) {
return ModifyMeetingPasswordResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-aliyuncvc-v5/1.0.9/com/aliyuncs/v5/aliyuncvc/model
|
java-sources/com/aliyun/aliyun-java-sdk-aliyuncvc-v5/1.0.9/com/aliyuncs/v5/aliyuncvc/model/v20191030/RegisterDeviceRequest.java
|
/*
* 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.
*/
package com.aliyuncs.v5.aliyuncvc.model.v20191030;
import com.aliyuncs.v5.RpcAcsRequest;
import com.aliyuncs.v5.http.MethodType;
import com.aliyuncs.v5.aliyuncvc.Endpoint;
/**
* @author auto create
* @version
*/
public class RegisterDeviceRequest extends RpcAcsRequest<RegisterDeviceResponse> {
private String iP;
private String mac;
private String token;
private String deviceVersion;
private String sN;
public RegisterDeviceRequest() {
super("aliyuncvc", "2019-10-30", "RegisterDevice", "aliyuncvc");
setMethod(MethodType.POST);
try {
com.aliyuncs.v5.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap);
com.aliyuncs.v5.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType);
} catch (Exception e) {}
}
public String getIP() {
return this.iP;
}
public void setIP(String iP) {
this.iP = iP;
if(iP != null){
putQueryParameter("IP", iP);
}
}
public String getMac() {
return this.mac;
}
public void setMac(String mac) {
this.mac = mac;
if(mac != null){
putQueryParameter("Mac", mac);
}
}
public String getToken() {
return this.token;
}
public void setToken(String token) {
this.token = token;
if(token != null){
putQueryParameter("Token", token);
}
}
public String getDeviceVersion() {
return this.deviceVersion;
}
public void setDeviceVersion(String deviceVersion) {
this.deviceVersion = deviceVersion;
if(deviceVersion != null){
putQueryParameter("DeviceVersion", deviceVersion);
}
}
public String getSN() {
return this.sN;
}
public void setSN(String sN) {
this.sN = sN;
if(sN != null){
putQueryParameter("SN", sN);
}
}
@Override
public Class<RegisterDeviceResponse> getResponseClass() {
return RegisterDeviceResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-aliyuncvc-v5/1.0.9/com/aliyuncs/v5/aliyuncvc/model
|
java-sources/com/aliyun/aliyun-java-sdk-aliyuncvc-v5/1.0.9/com/aliyuncs/v5/aliyuncvc/model/v20191030/RegisterDeviceResponse.java
|
/*
* 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.
*/
package com.aliyuncs.v5.aliyuncvc.model.v20191030;
import com.aliyuncs.v5.AcsResponse;
import com.aliyuncs.v5.aliyuncvc.transform.v20191030.RegisterDeviceResponseUnmarshaller;
import com.aliyuncs.v5.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class RegisterDeviceResponse extends AcsResponse {
private Integer errorCode;
private Boolean success;
private String requestId;
private String message;
private DeviceInfo deviceInfo;
public Integer getErrorCode() {
return this.errorCode;
}
public void setErrorCode(Integer errorCode) {
this.errorCode = errorCode;
}
public Boolean getSuccess() {
return this.success;
}
public void setSuccess(Boolean success) {
this.success = success;
}
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public String getMessage() {
return this.message;
}
public void setMessage(String message) {
this.message = message;
}
public DeviceInfo getDeviceInfo() {
return this.deviceInfo;
}
public void setDeviceInfo(DeviceInfo deviceInfo) {
this.deviceInfo = deviceInfo;
}
public static class DeviceInfo {
private String channelType;
private Long registerTime;
private String deviceName;
private String deviceSessionId;
private String messageKey;
private String screenCode;
private MqttParam mqttParam;
private AuthWsChannelConfig authWsChannelConfig;
private SlsConfig slsConfig;
public String getChannelType() {
return this.channelType;
}
public void setChannelType(String channelType) {
this.channelType = channelType;
}
public Long getRegisterTime() {
return this.registerTime;
}
public void setRegisterTime(Long registerTime) {
this.registerTime = registerTime;
}
public String getDeviceName() {
return this.deviceName;
}
public void setDeviceName(String deviceName) {
this.deviceName = deviceName;
}
public String getDeviceSessionId() {
return this.deviceSessionId;
}
public void setDeviceSessionId(String deviceSessionId) {
this.deviceSessionId = deviceSessionId;
}
public String getMessageKey() {
return this.messageKey;
}
public void setMessageKey(String messageKey) {
this.messageKey = messageKey;
}
public String getScreenCode() {
return this.screenCode;
}
public void setScreenCode(String screenCode) {
this.screenCode = screenCode;
}
public MqttParam getMqttParam() {
return this.mqttParam;
}
public void setMqttParam(MqttParam mqttParam) {
this.mqttParam = mqttParam;
}
public AuthWsChannelConfig getAuthWsChannelConfig() {
return this.authWsChannelConfig;
}
public void setAuthWsChannelConfig(AuthWsChannelConfig authWsChannelConfig) {
this.authWsChannelConfig = authWsChannelConfig;
}
public SlsConfig getSlsConfig() {
return this.slsConfig;
}
public void setSlsConfig(SlsConfig slsConfig) {
this.slsConfig = slsConfig;
}
public static class MqttParam {
private String clientId;
private String groupId;
private String cleanSession;
private String password;
private String port;
private String host;
private String topic;
private String sDKClientPort;
private String tLSPort;
private String useTLS;
private String userName;
private String reconnectTimeout;
public String getClientId() {
return this.clientId;
}
public void setClientId(String clientId) {
this.clientId = clientId;
}
public String getGroupId() {
return this.groupId;
}
public void setGroupId(String groupId) {
this.groupId = groupId;
}
public String getCleanSession() {
return this.cleanSession;
}
public void setCleanSession(String cleanSession) {
this.cleanSession = cleanSession;
}
public String getPassword() {
return this.password;
}
public void setPassword(String password) {
this.password = password;
}
public String getPort() {
return this.port;
}
public void setPort(String port) {
this.port = port;
}
public String getHost() {
return this.host;
}
public void setHost(String host) {
this.host = host;
}
public String getTopic() {
return this.topic;
}
public void setTopic(String topic) {
this.topic = topic;
}
public String getSDKClientPort() {
return this.sDKClientPort;
}
public void setSDKClientPort(String sDKClientPort) {
this.sDKClientPort = sDKClientPort;
}
public String getTLSPort() {
return this.tLSPort;
}
public void setTLSPort(String tLSPort) {
this.tLSPort = tLSPort;
}
public String getUseTLS() {
return this.useTLS;
}
public void setUseTLS(String useTLS) {
this.useTLS = useTLS;
}
public String getUserName() {
return this.userName;
}
public void setUserName(String userName) {
this.userName = userName;
}
public String getReconnectTimeout() {
return this.reconnectTimeout;
}
public void setReconnectTimeout(String reconnectTimeout) {
this.reconnectTimeout = reconnectTimeout;
}
}
public static class AuthWsChannelConfig {
private String authWsUrl;
private Integer wsOuterReconnTime;
private String token;
public String getAuthWsUrl() {
return this.authWsUrl;
}
public void setAuthWsUrl(String authWsUrl) {
this.authWsUrl = authWsUrl;
}
public Integer getWsOuterReconnTime() {
return this.wsOuterReconnTime;
}
public void setWsOuterReconnTime(Integer wsOuterReconnTime) {
this.wsOuterReconnTime = wsOuterReconnTime;
}
public String getToken() {
return this.token;
}
public void setToken(String token) {
this.token = token;
}
}
public static class SlsConfig {
private String project;
private String logStore;
private String logServiceEndpoint;
public String getProject() {
return this.project;
}
public void setProject(String project) {
this.project = project;
}
public String getLogStore() {
return this.logStore;
}
public void setLogStore(String logStore) {
this.logStore = logStore;
}
public String getLogServiceEndpoint() {
return this.logServiceEndpoint;
}
public void setLogServiceEndpoint(String logServiceEndpoint) {
this.logServiceEndpoint = logServiceEndpoint;
}
}
}
@Override
public RegisterDeviceResponse getInstance(UnmarshallerContext context) {
return RegisterDeviceResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-aliyuncvc-v5/1.0.9/com/aliyuncs/v5/aliyuncvc/model
|
java-sources/com/aliyun/aliyun-java-sdk-aliyuncvc-v5/1.0.9/com/aliyuncs/v5/aliyuncvc/model/v20191030/RegisterUemDeviceRequest.java
|
/*
* 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.
*/
package com.aliyuncs.v5.aliyuncvc.model.v20191030;
import com.aliyuncs.v5.RpcAcsRequest;
import com.aliyuncs.v5.http.MethodType;
import com.aliyuncs.v5.aliyuncvc.Endpoint;
/**
* @author auto create
* @version
*/
public class RegisterUemDeviceRequest extends RpcAcsRequest<RegisterUemDeviceResponse> {
private String iP;
private String groupId;
private String deviceId;
private String groupName;
private String mac;
private String deviceVersion;
public RegisterUemDeviceRequest() {
super("aliyuncvc", "2019-10-30", "RegisterUemDevice", "aliyuncvc");
setMethod(MethodType.POST);
try {
com.aliyuncs.v5.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap);
com.aliyuncs.v5.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType);
} catch (Exception e) {}
}
public String getIP() {
return this.iP;
}
public void setIP(String iP) {
this.iP = iP;
if(iP != null){
putQueryParameter("IP", iP);
}
}
public String getGroupId() {
return this.groupId;
}
public void setGroupId(String groupId) {
this.groupId = groupId;
if(groupId != null){
putQueryParameter("GroupId", groupId);
}
}
public String getDeviceId() {
return this.deviceId;
}
public void setDeviceId(String deviceId) {
this.deviceId = deviceId;
if(deviceId != null){
putQueryParameter("DeviceId", deviceId);
}
}
public String getGroupName() {
return this.groupName;
}
public void setGroupName(String groupName) {
this.groupName = groupName;
if(groupName != null){
putQueryParameter("GroupName", groupName);
}
}
public String getMac() {
return this.mac;
}
public void setMac(String mac) {
this.mac = mac;
if(mac != null){
putQueryParameter("Mac", mac);
}
}
public String getDeviceVersion() {
return this.deviceVersion;
}
public void setDeviceVersion(String deviceVersion) {
this.deviceVersion = deviceVersion;
if(deviceVersion != null){
putQueryParameter("DeviceVersion", deviceVersion);
}
}
@Override
public Class<RegisterUemDeviceResponse> getResponseClass() {
return RegisterUemDeviceResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-aliyuncvc-v5/1.0.9/com/aliyuncs/v5/aliyuncvc/model
|
java-sources/com/aliyun/aliyun-java-sdk-aliyuncvc-v5/1.0.9/com/aliyuncs/v5/aliyuncvc/model/v20191030/RegisterUemDeviceResponse.java
|
/*
* 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.
*/
package com.aliyuncs.v5.aliyuncvc.model.v20191030;
import com.aliyuncs.v5.AcsResponse;
import com.aliyuncs.v5.aliyuncvc.transform.v20191030.RegisterUemDeviceResponseUnmarshaller;
import com.aliyuncs.v5.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class RegisterUemDeviceResponse extends AcsResponse {
private Integer errorCode;
private Boolean success;
private String requestId;
private String message;
private DeviceInfo deviceInfo;
public Integer getErrorCode() {
return this.errorCode;
}
public void setErrorCode(Integer errorCode) {
this.errorCode = errorCode;
}
public Boolean getSuccess() {
return this.success;
}
public void setSuccess(Boolean success) {
this.success = success;
}
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public String getMessage() {
return this.message;
}
public void setMessage(String message) {
this.message = message;
}
public DeviceInfo getDeviceInfo() {
return this.deviceInfo;
}
public void setDeviceInfo(DeviceInfo deviceInfo) {
this.deviceInfo = deviceInfo;
}
public static class DeviceInfo {
private String channelType;
private Long registerTime;
private String deviceName;
private String deviceSessionId;
private String messageKey;
private String screenCode;
private String token;
private MqttParam mqttParam;
private AuthWsChannelConfig authWsChannelConfig;
private SlsConfig slsConfig;
public String getChannelType() {
return this.channelType;
}
public void setChannelType(String channelType) {
this.channelType = channelType;
}
public Long getRegisterTime() {
return this.registerTime;
}
public void setRegisterTime(Long registerTime) {
this.registerTime = registerTime;
}
public String getDeviceName() {
return this.deviceName;
}
public void setDeviceName(String deviceName) {
this.deviceName = deviceName;
}
public String getDeviceSessionId() {
return this.deviceSessionId;
}
public void setDeviceSessionId(String deviceSessionId) {
this.deviceSessionId = deviceSessionId;
}
public String getMessageKey() {
return this.messageKey;
}
public void setMessageKey(String messageKey) {
this.messageKey = messageKey;
}
public String getScreenCode() {
return this.screenCode;
}
public void setScreenCode(String screenCode) {
this.screenCode = screenCode;
}
public String getToken() {
return this.token;
}
public void setToken(String token) {
this.token = token;
}
public MqttParam getMqttParam() {
return this.mqttParam;
}
public void setMqttParam(MqttParam mqttParam) {
this.mqttParam = mqttParam;
}
public AuthWsChannelConfig getAuthWsChannelConfig() {
return this.authWsChannelConfig;
}
public void setAuthWsChannelConfig(AuthWsChannelConfig authWsChannelConfig) {
this.authWsChannelConfig = authWsChannelConfig;
}
public SlsConfig getSlsConfig() {
return this.slsConfig;
}
public void setSlsConfig(SlsConfig slsConfig) {
this.slsConfig = slsConfig;
}
public static class MqttParam {
private String clientId;
private String groupId;
private String cleanSession;
private String password;
private String port;
private String host;
private String topic;
private String sDKClientPort;
private String tLSPort;
private String useTLS;
private String userName;
private String reconnectTimeout;
public String getClientId() {
return this.clientId;
}
public void setClientId(String clientId) {
this.clientId = clientId;
}
public String getGroupId() {
return this.groupId;
}
public void setGroupId(String groupId) {
this.groupId = groupId;
}
public String getCleanSession() {
return this.cleanSession;
}
public void setCleanSession(String cleanSession) {
this.cleanSession = cleanSession;
}
public String getPassword() {
return this.password;
}
public void setPassword(String password) {
this.password = password;
}
public String getPort() {
return this.port;
}
public void setPort(String port) {
this.port = port;
}
public String getHost() {
return this.host;
}
public void setHost(String host) {
this.host = host;
}
public String getTopic() {
return this.topic;
}
public void setTopic(String topic) {
this.topic = topic;
}
public String getSDKClientPort() {
return this.sDKClientPort;
}
public void setSDKClientPort(String sDKClientPort) {
this.sDKClientPort = sDKClientPort;
}
public String getTLSPort() {
return this.tLSPort;
}
public void setTLSPort(String tLSPort) {
this.tLSPort = tLSPort;
}
public String getUseTLS() {
return this.useTLS;
}
public void setUseTLS(String useTLS) {
this.useTLS = useTLS;
}
public String getUserName() {
return this.userName;
}
public void setUserName(String userName) {
this.userName = userName;
}
public String getReconnectTimeout() {
return this.reconnectTimeout;
}
public void setReconnectTimeout(String reconnectTimeout) {
this.reconnectTimeout = reconnectTimeout;
}
}
public static class AuthWsChannelConfig {
private String authWsUrl;
private Integer wsOuterReconnTime;
private String token;
public String getAuthWsUrl() {
return this.authWsUrl;
}
public void setAuthWsUrl(String authWsUrl) {
this.authWsUrl = authWsUrl;
}
public Integer getWsOuterReconnTime() {
return this.wsOuterReconnTime;
}
public void setWsOuterReconnTime(Integer wsOuterReconnTime) {
this.wsOuterReconnTime = wsOuterReconnTime;
}
public String getToken() {
return this.token;
}
public void setToken(String token) {
this.token = token;
}
}
public static class SlsConfig {
private String project;
private String logStore;
private String logServiceEndpoint;
public String getProject() {
return this.project;
}
public void setProject(String project) {
this.project = project;
}
public String getLogStore() {
return this.logStore;
}
public void setLogStore(String logStore) {
this.logStore = logStore;
}
public String getLogServiceEndpoint() {
return this.logServiceEndpoint;
}
public void setLogServiceEndpoint(String logServiceEndpoint) {
this.logServiceEndpoint = logServiceEndpoint;
}
}
}
@Override
public RegisterUemDeviceResponse getInstance(UnmarshallerContext context) {
return RegisterUemDeviceResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-aliyuncvc-v5/1.0.9/com/aliyuncs/v5/aliyuncvc/model
|
java-sources/com/aliyun/aliyun-java-sdk-aliyuncvc-v5/1.0.9/com/aliyuncs/v5/aliyuncvc/model/v20191030/StartLiveRequest.java
|
/*
* 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.
*/
package com.aliyuncs.v5.aliyuncvc.model.v20191030;
import com.aliyuncs.v5.RpcAcsRequest;
import com.aliyuncs.v5.http.MethodType;
import com.aliyuncs.v5.aliyuncvc.Endpoint;
/**
* @author auto create
* @version
*/
public class StartLiveRequest extends RpcAcsRequest<StartLiveResponse> {
private String liveUUID;
private String userId;
public StartLiveRequest() {
super("aliyuncvc", "2019-10-30", "StartLive", "aliyuncvc");
setMethod(MethodType.POST);
try {
com.aliyuncs.v5.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap);
com.aliyuncs.v5.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType);
} catch (Exception e) {}
}
public String getLiveUUID() {
return this.liveUUID;
}
public void setLiveUUID(String liveUUID) {
this.liveUUID = liveUUID;
if(liveUUID != null){
putBodyParameter("LiveUUID", liveUUID);
}
}
public String getUserId() {
return this.userId;
}
public void setUserId(String userId) {
this.userId = userId;
if(userId != null){
putBodyParameter("UserId", userId);
}
}
@Override
public Class<StartLiveResponse> getResponseClass() {
return StartLiveResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-aliyuncvc-v5/1.0.9/com/aliyuncs/v5/aliyuncvc/model
|
java-sources/com/aliyun/aliyun-java-sdk-aliyuncvc-v5/1.0.9/com/aliyuncs/v5/aliyuncvc/model/v20191030/StartLiveResponse.java
|
/*
* 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.
*/
package com.aliyuncs.v5.aliyuncvc.model.v20191030;
import com.aliyuncs.v5.AcsResponse;
import com.aliyuncs.v5.aliyuncvc.transform.v20191030.StartLiveResponseUnmarshaller;
import com.aliyuncs.v5.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class StartLiveResponse extends AcsResponse {
private Integer errorCode;
private String message;
private Boolean success;
private String requestId;
public Integer getErrorCode() {
return this.errorCode;
}
public void setErrorCode(Integer errorCode) {
this.errorCode = errorCode;
}
public String getMessage() {
return this.message;
}
public void setMessage(String message) {
this.message = message;
}
public Boolean getSuccess() {
return this.success;
}
public void setSuccess(Boolean success) {
this.success = success;
}
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
@Override
public StartLiveResponse getInstance(UnmarshallerContext context) {
return StartLiveResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-aliyuncvc-v5/1.0.9/com/aliyuncs/v5/aliyuncvc/model
|
java-sources/com/aliyun/aliyun-java-sdk-aliyuncvc-v5/1.0.9/com/aliyuncs/v5/aliyuncvc/model/v20191030/UpdateDeviceHeartBeatRequest.java
|
/*
* 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.
*/
package com.aliyuncs.v5.aliyuncvc.model.v20191030;
import com.aliyuncs.v5.RpcAcsRequest;
import com.aliyuncs.v5.http.MethodType;
import com.aliyuncs.v5.aliyuncvc.Endpoint;
/**
* @author auto create
* @version
*/
public class UpdateDeviceHeartBeatRequest extends RpcAcsRequest<UpdateDeviceHeartBeatResponse> {
private String message;
public UpdateDeviceHeartBeatRequest() {
super("aliyuncvc", "2019-10-30", "UpdateDeviceHeartBeat", "aliyuncvc");
setMethod(MethodType.POST);
try {
com.aliyuncs.v5.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap);
com.aliyuncs.v5.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType);
} catch (Exception e) {}
}
public String getMessage() {
return this.message;
}
public void setMessage(String message) {
this.message = message;
if(message != null){
putQueryParameter("Message", message);
}
}
@Override
public Class<UpdateDeviceHeartBeatResponse> getResponseClass() {
return UpdateDeviceHeartBeatResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-aliyuncvc-v5/1.0.9/com/aliyuncs/v5/aliyuncvc/model
|
java-sources/com/aliyun/aliyun-java-sdk-aliyuncvc-v5/1.0.9/com/aliyuncs/v5/aliyuncvc/model/v20191030/UpdateDeviceHeartBeatResponse.java
|
/*
* 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.
*/
package com.aliyuncs.v5.aliyuncvc.model.v20191030;
import com.aliyuncs.v5.AcsResponse;
import com.aliyuncs.v5.aliyuncvc.transform.v20191030.UpdateDeviceHeartBeatResponseUnmarshaller;
import com.aliyuncs.v5.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class UpdateDeviceHeartBeatResponse extends AcsResponse {
private Integer errorCode;
private String message;
private Boolean success;
private String requestId;
private DeviceInfo deviceInfo;
public Integer getErrorCode() {
return this.errorCode;
}
public void setErrorCode(Integer errorCode) {
this.errorCode = errorCode;
}
public String getMessage() {
return this.message;
}
public void setMessage(String message) {
this.message = message;
}
public Boolean getSuccess() {
return this.success;
}
public void setSuccess(Boolean success) {
this.success = success;
}
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public DeviceInfo getDeviceInfo() {
return this.deviceInfo;
}
public void setDeviceInfo(DeviceInfo deviceInfo) {
this.deviceInfo = deviceInfo;
}
public static class DeviceInfo {
private String channelType;
public String getChannelType() {
return this.channelType;
}
public void setChannelType(String channelType) {
this.channelType = channelType;
}
}
@Override
public UpdateDeviceHeartBeatResponse getInstance(UnmarshallerContext context) {
return UpdateDeviceHeartBeatResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-aliyuncvc-v5/1.0.9/com/aliyuncs/v5/aliyuncvc/model
|
java-sources/com/aliyun/aliyun-java-sdk-aliyuncvc-v5/1.0.9/com/aliyuncs/v5/aliyuncvc/model/v20191030/UpdateLivePasswordRequest.java
|
/*
* 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.
*/
package com.aliyuncs.v5.aliyuncvc.model.v20191030;
import com.aliyuncs.v5.RpcAcsRequest;
import com.aliyuncs.v5.http.MethodType;
import com.aliyuncs.v5.aliyuncvc.Endpoint;
/**
* @author auto create
* @version
*/
public class UpdateLivePasswordRequest extends RpcAcsRequest<UpdateLivePasswordResponse> {
private String liveUUID;
private String userId;
private Boolean openPasswordFlag;
private String password;
public UpdateLivePasswordRequest() {
super("aliyuncvc", "2019-10-30", "UpdateLivePassword", "aliyuncvc");
setMethod(MethodType.POST);
try {
com.aliyuncs.v5.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap);
com.aliyuncs.v5.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType);
} catch (Exception e) {}
}
public String getLiveUUID() {
return this.liveUUID;
}
public void setLiveUUID(String liveUUID) {
this.liveUUID = liveUUID;
if(liveUUID != null){
putBodyParameter("LiveUUID", liveUUID);
}
}
public String getUserId() {
return this.userId;
}
public void setUserId(String userId) {
this.userId = userId;
if(userId != null){
putBodyParameter("UserId", userId);
}
}
public Boolean getOpenPasswordFlag() {
return this.openPasswordFlag;
}
public void setOpenPasswordFlag(Boolean openPasswordFlag) {
this.openPasswordFlag = openPasswordFlag;
if(openPasswordFlag != null){
putBodyParameter("OpenPasswordFlag", openPasswordFlag.toString());
}
}
public String getPassword() {
return this.password;
}
public void setPassword(String password) {
this.password = password;
if(password != null){
putBodyParameter("Password", password);
}
}
@Override
public Class<UpdateLivePasswordResponse> getResponseClass() {
return UpdateLivePasswordResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-aliyuncvc-v5/1.0.9/com/aliyuncs/v5/aliyuncvc/model
|
java-sources/com/aliyun/aliyun-java-sdk-aliyuncvc-v5/1.0.9/com/aliyuncs/v5/aliyuncvc/model/v20191030/UpdateLivePasswordResponse.java
|
/*
* 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.
*/
package com.aliyuncs.v5.aliyuncvc.model.v20191030;
import com.aliyuncs.v5.AcsResponse;
import com.aliyuncs.v5.aliyuncvc.transform.v20191030.UpdateLivePasswordResponseUnmarshaller;
import com.aliyuncs.v5.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class UpdateLivePasswordResponse extends AcsResponse {
private Integer errorCode;
private String message;
private Boolean success;
private String requestId;
public Integer getErrorCode() {
return this.errorCode;
}
public void setErrorCode(Integer errorCode) {
this.errorCode = errorCode;
}
public String getMessage() {
return this.message;
}
public void setMessage(String message) {
this.message = message;
}
public Boolean getSuccess() {
return this.success;
}
public void setSuccess(Boolean success) {
this.success = success;
}
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
@Override
public UpdateLivePasswordResponse getInstance(UnmarshallerContext context) {
return UpdateLivePasswordResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-aliyuncvc-v5/1.0.9/com/aliyuncs/v5/aliyuncvc/transform
|
java-sources/com/aliyun/aliyun-java-sdk-aliyuncvc-v5/1.0.9/com/aliyuncs/v5/aliyuncvc/transform/v20191030/ActiveDeviceResponseUnmarshaller.java
|
/*
* 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.
*/
package com.aliyuncs.v5.aliyuncvc.transform.v20191030;
import com.aliyuncs.v5.aliyuncvc.model.v20191030.ActiveDeviceResponse;
import com.aliyuncs.v5.transform.UnmarshallerContext;
public class ActiveDeviceResponseUnmarshaller {
public static ActiveDeviceResponse unmarshall(ActiveDeviceResponse activeDeviceResponse, UnmarshallerContext _ctx) {
activeDeviceResponse.setRequestId(_ctx.stringValue("ActiveDeviceResponse.RequestId"));
activeDeviceResponse.setErrorCode(_ctx.integerValue("ActiveDeviceResponse.ErrorCode"));
activeDeviceResponse.setMessage(_ctx.stringValue("ActiveDeviceResponse.Message"));
activeDeviceResponse.setSuccess(_ctx.booleanValue("ActiveDeviceResponse.Success"));
activeDeviceResponse.setToken(_ctx.stringValue("ActiveDeviceResponse.Token"));
return activeDeviceResponse;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-aliyuncvc-v5/1.0.9/com/aliyuncs/v5/aliyuncvc/transform
|
java-sources/com/aliyun/aliyun-java-sdk-aliyuncvc-v5/1.0.9/com/aliyuncs/v5/aliyuncvc/transform/v20191030/ActiveMeetingResponseUnmarshaller.java
|
/*
* 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.
*/
package com.aliyuncs.v5.aliyuncvc.transform.v20191030;
import com.aliyuncs.v5.aliyuncvc.model.v20191030.ActiveMeetingResponse;
import com.aliyuncs.v5.aliyuncvc.model.v20191030.ActiveMeetingResponse.MeetingInfo;
import com.aliyuncs.v5.transform.UnmarshallerContext;
public class ActiveMeetingResponseUnmarshaller {
public static ActiveMeetingResponse unmarshall(ActiveMeetingResponse activeMeetingResponse, UnmarshallerContext _ctx) {
activeMeetingResponse.setRequestId(_ctx.stringValue("ActiveMeetingResponse.RequestId"));
activeMeetingResponse.setErrorCode(_ctx.integerValue("ActiveMeetingResponse.ErrorCode"));
activeMeetingResponse.setMessage(_ctx.stringValue("ActiveMeetingResponse.Message"));
activeMeetingResponse.setSuccess(_ctx.booleanValue("ActiveMeetingResponse.Success"));
MeetingInfo meetingInfo = new MeetingInfo();
meetingInfo.setValidTime(_ctx.longValue("ActiveMeetingResponse.MeetingInfo.ValidTime"));
meetingInfo.setMeetingCode(_ctx.stringValue("ActiveMeetingResponse.MeetingInfo.MeetingCode"));
activeMeetingResponse.setMeetingInfo(meetingInfo);
return activeMeetingResponse;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-aliyuncvc-v5/1.0.9/com/aliyuncs/v5/aliyuncvc/transform
|
java-sources/com/aliyun/aliyun-java-sdk-aliyuncvc-v5/1.0.9/com/aliyuncs/v5/aliyuncvc/transform/v20191030/BatchCreateDeviceResponseUnmarshaller.java
|
/*
* 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.
*/
package com.aliyuncs.v5.aliyuncvc.transform.v20191030;
import java.util.ArrayList;
import java.util.List;
import com.aliyuncs.v5.aliyuncvc.model.v20191030.BatchCreateDeviceResponse;
import com.aliyuncs.v5.aliyuncvc.model.v20191030.BatchCreateDeviceResponse.Data;
import com.aliyuncs.v5.transform.UnmarshallerContext;
public class BatchCreateDeviceResponseUnmarshaller {
public static BatchCreateDeviceResponse unmarshall(BatchCreateDeviceResponse batchCreateDeviceResponse, UnmarshallerContext _ctx) {
batchCreateDeviceResponse.setErrorCode(_ctx.integerValue("BatchCreateDeviceResponse.ErrorCode"));
batchCreateDeviceResponse.setMessage(_ctx.stringValue("BatchCreateDeviceResponse.Message"));
batchCreateDeviceResponse.setSuccess(_ctx.booleanValue("BatchCreateDeviceResponse.Success"));
List<Data> devicesList = new ArrayList<Data>();
for (int i = 0; i < _ctx.lengthValue("BatchCreateDeviceResponse.Devices.Length"); i++) {
Data data = new Data();
data.setDeviceErrorCode(_ctx.integerValue("BatchCreateDeviceResponse.Devices["+ i +"].DeviceErrorCode"));
data.setDeviceMessage(_ctx.stringValue("BatchCreateDeviceResponse.Devices["+ i +"].DeviceMessage"));
data.setSN(_ctx.stringValue("BatchCreateDeviceResponse.Devices["+ i +"].SN"));
data.setActiveCode(_ctx.stringValue("BatchCreateDeviceResponse.Devices["+ i +"].ActiveCode"));
devicesList.add(data);
}
batchCreateDeviceResponse.setDevices(devicesList);
return batchCreateDeviceResponse;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-aliyuncvc-v5/1.0.9/com/aliyuncs/v5/aliyuncvc/transform
|
java-sources/com/aliyun/aliyun-java-sdk-aliyuncvc-v5/1.0.9/com/aliyuncs/v5/aliyuncvc/transform/v20191030/CreateDeviceMeetingResponseUnmarshaller.java
|
/*
* 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.
*/
package com.aliyuncs.v5.aliyuncvc.transform.v20191030;
import com.aliyuncs.v5.aliyuncvc.model.v20191030.CreateDeviceMeetingResponse;
import com.aliyuncs.v5.aliyuncvc.model.v20191030.CreateDeviceMeetingResponse.Devices;
import com.aliyuncs.v5.transform.UnmarshallerContext;
public class CreateDeviceMeetingResponseUnmarshaller {
public static CreateDeviceMeetingResponse unmarshall(CreateDeviceMeetingResponse createDeviceMeetingResponse, UnmarshallerContext _ctx) {
createDeviceMeetingResponse.setRequestId(_ctx.stringValue("CreateDeviceMeetingResponse.RequestId"));
createDeviceMeetingResponse.setErrorCode(_ctx.integerValue("CreateDeviceMeetingResponse.ErrorCode"));
createDeviceMeetingResponse.setMessage(_ctx.stringValue("CreateDeviceMeetingResponse.Message"));
createDeviceMeetingResponse.setSuccess(_ctx.booleanValue("CreateDeviceMeetingResponse.Success"));
Devices devices = new Devices();
devices.setMeetingCode(_ctx.stringValue("CreateDeviceMeetingResponse.Devices.MeetingCode"));
devices.setMeetingUUID(_ctx.stringValue("CreateDeviceMeetingResponse.Devices.MeetingUUID"));
createDeviceMeetingResponse.setDevices(devices);
return createDeviceMeetingResponse;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-aliyuncvc-v5/1.0.9/com/aliyuncs/v5/aliyuncvc/transform
|
java-sources/com/aliyun/aliyun-java-sdk-aliyuncvc-v5/1.0.9/com/aliyuncs/v5/aliyuncvc/transform/v20191030/CreateEvaluationResponseUnmarshaller.java
|
/*
* 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.
*/
package com.aliyuncs.v5.aliyuncvc.transform.v20191030;
import com.aliyuncs.v5.aliyuncvc.model.v20191030.CreateEvaluationResponse;
import com.aliyuncs.v5.transform.UnmarshallerContext;
public class CreateEvaluationResponseUnmarshaller {
public static CreateEvaluationResponse unmarshall(CreateEvaluationResponse createEvaluationResponse, UnmarshallerContext _ctx) {
createEvaluationResponse.setRequestId(_ctx.stringValue("CreateEvaluationResponse.RequestId"));
createEvaluationResponse.setSuccess(_ctx.booleanValue("CreateEvaluationResponse.Success"));
createEvaluationResponse.setErrorCode(_ctx.stringValue("CreateEvaluationResponse.ErrorCode"));
createEvaluationResponse.setMessage(_ctx.stringValue("CreateEvaluationResponse.Message"));
return createEvaluationResponse;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-aliyuncvc-v5/1.0.9/com/aliyuncs/v5/aliyuncvc/transform
|
java-sources/com/aliyun/aliyun-java-sdk-aliyuncvc-v5/1.0.9/com/aliyuncs/v5/aliyuncvc/transform/v20191030/CreateLiveResponseUnmarshaller.java
|
/*
* 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.
*/
package com.aliyuncs.v5.aliyuncvc.transform.v20191030;
import com.aliyuncs.v5.aliyuncvc.model.v20191030.CreateLiveResponse;
import com.aliyuncs.v5.aliyuncvc.model.v20191030.CreateLiveResponse.LiveInfo;
import com.aliyuncs.v5.transform.UnmarshallerContext;
public class CreateLiveResponseUnmarshaller {
public static CreateLiveResponse unmarshall(CreateLiveResponse createLiveResponse, UnmarshallerContext _ctx) {
createLiveResponse.setRequestId(_ctx.stringValue("CreateLiveResponse.RequestId"));
createLiveResponse.setErrorCode(_ctx.integerValue("CreateLiveResponse.ErrorCode"));
createLiveResponse.setMessage(_ctx.stringValue("CreateLiveResponse.Message"));
createLiveResponse.setSuccess(_ctx.booleanValue("CreateLiveResponse.Success"));
LiveInfo liveInfo = new LiveInfo();
liveInfo.setLiveUUID(_ctx.stringValue("CreateLiveResponse.LiveInfo.LiveUUID"));
liveInfo.setStreamUUID(_ctx.stringValue("CreateLiveResponse.LiveInfo.StreamUUID"));
createLiveResponse.setLiveInfo(liveInfo);
return createLiveResponse;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-aliyuncvc-v5/1.0.9/com/aliyuncs/v5/aliyuncvc/transform
|
java-sources/com/aliyun/aliyun-java-sdk-aliyuncvc-v5/1.0.9/com/aliyuncs/v5/aliyuncvc/transform/v20191030/CreateMeetingInternationalResponseUnmarshaller.java
|
/*
* 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.
*/
package com.aliyuncs.v5.aliyuncvc.transform.v20191030;
import com.aliyuncs.v5.aliyuncvc.model.v20191030.CreateMeetingInternationalResponse;
import com.aliyuncs.v5.aliyuncvc.model.v20191030.CreateMeetingInternationalResponse.MeetingInfo;
import com.aliyuncs.v5.transform.UnmarshallerContext;
public class CreateMeetingInternationalResponseUnmarshaller {
public static CreateMeetingInternationalResponse unmarshall(CreateMeetingInternationalResponse createMeetingInternationalResponse, UnmarshallerContext _ctx) {
createMeetingInternationalResponse.setRequestId(_ctx.stringValue("CreateMeetingInternationalResponse.RequestId"));
createMeetingInternationalResponse.setErrorCode(_ctx.integerValue("CreateMeetingInternationalResponse.ErrorCode"));
createMeetingInternationalResponse.setMessage(_ctx.stringValue("CreateMeetingInternationalResponse.Message"));
createMeetingInternationalResponse.setSuccess(_ctx.booleanValue("CreateMeetingInternationalResponse.Success"));
MeetingInfo meetingInfo = new MeetingInfo();
meetingInfo.setMeetingCode(_ctx.stringValue("CreateMeetingInternationalResponse.MeetingInfo.MeetingCode"));
meetingInfo.setMeetingUUID(_ctx.stringValue("CreateMeetingInternationalResponse.MeetingInfo.MeetingUUID"));
createMeetingInternationalResponse.setMeetingInfo(meetingInfo);
return createMeetingInternationalResponse;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-aliyuncvc-v5/1.0.9/com/aliyuncs/v5/aliyuncvc/transform
|
java-sources/com/aliyun/aliyun-java-sdk-aliyuncvc-v5/1.0.9/com/aliyuncs/v5/aliyuncvc/transform/v20191030/CreateMeetingResponseUnmarshaller.java
|
/*
* 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.
*/
package com.aliyuncs.v5.aliyuncvc.transform.v20191030;
import com.aliyuncs.v5.aliyuncvc.model.v20191030.CreateMeetingResponse;
import com.aliyuncs.v5.aliyuncvc.model.v20191030.CreateMeetingResponse.MeetingInfo;
import com.aliyuncs.v5.transform.UnmarshallerContext;
public class CreateMeetingResponseUnmarshaller {
public static CreateMeetingResponse unmarshall(CreateMeetingResponse createMeetingResponse, UnmarshallerContext _ctx) {
createMeetingResponse.setRequestId(_ctx.stringValue("CreateMeetingResponse.RequestId"));
createMeetingResponse.setErrorCode(_ctx.integerValue("CreateMeetingResponse.ErrorCode"));
createMeetingResponse.setMessage(_ctx.stringValue("CreateMeetingResponse.Message"));
createMeetingResponse.setSuccess(_ctx.booleanValue("CreateMeetingResponse.Success"));
MeetingInfo meetingInfo = new MeetingInfo();
meetingInfo.setMeetingCode(_ctx.stringValue("CreateMeetingResponse.MeetingInfo.MeetingCode"));
meetingInfo.setMeetingUUID(_ctx.stringValue("CreateMeetingResponse.MeetingInfo.MeetingUUID"));
createMeetingResponse.setMeetingInfo(meetingInfo);
return createMeetingResponse;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-aliyuncvc-v5/1.0.9/com/aliyuncs/v5/aliyuncvc/transform
|
java-sources/com/aliyun/aliyun-java-sdk-aliyuncvc-v5/1.0.9/com/aliyuncs/v5/aliyuncvc/transform/v20191030/CreateUserInternationalResponseUnmarshaller.java
|
/*
* 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.
*/
package com.aliyuncs.v5.aliyuncvc.transform.v20191030;
import com.aliyuncs.v5.aliyuncvc.model.v20191030.CreateUserInternationalResponse;
import com.aliyuncs.v5.transform.UnmarshallerContext;
public class CreateUserInternationalResponseUnmarshaller {
public static CreateUserInternationalResponse unmarshall(CreateUserInternationalResponse createUserInternationalResponse, UnmarshallerContext _ctx) {
createUserInternationalResponse.setRequestId(_ctx.stringValue("CreateUserInternationalResponse.RequestId"));
createUserInternationalResponse.setErrorCode(_ctx.integerValue("CreateUserInternationalResponse.ErrorCode"));
createUserInternationalResponse.setMessage(_ctx.stringValue("CreateUserInternationalResponse.Message"));
createUserInternationalResponse.setSuccess(_ctx.booleanValue("CreateUserInternationalResponse.Success"));
createUserInternationalResponse.setUserId(_ctx.stringValue("CreateUserInternationalResponse.UserId"));
return createUserInternationalResponse;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-aliyuncvc-v5/1.0.9/com/aliyuncs/v5/aliyuncvc/transform
|
java-sources/com/aliyun/aliyun-java-sdk-aliyuncvc-v5/1.0.9/com/aliyuncs/v5/aliyuncvc/transform/v20191030/CreateUserResponseUnmarshaller.java
|
/*
* 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.
*/
package com.aliyuncs.v5.aliyuncvc.transform.v20191030;
import com.aliyuncs.v5.aliyuncvc.model.v20191030.CreateUserResponse;
import com.aliyuncs.v5.transform.UnmarshallerContext;
public class CreateUserResponseUnmarshaller {
public static CreateUserResponse unmarshall(CreateUserResponse createUserResponse, UnmarshallerContext _ctx) {
createUserResponse.setRequestId(_ctx.stringValue("CreateUserResponse.RequestId"));
createUserResponse.setErrorCode(_ctx.integerValue("CreateUserResponse.ErrorCode"));
createUserResponse.setMessage(_ctx.stringValue("CreateUserResponse.Message"));
createUserResponse.setSuccess(_ctx.booleanValue("CreateUserResponse.Success"));
createUserResponse.setUserId(_ctx.stringValue("CreateUserResponse.UserId"));
return createUserResponse;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-aliyuncvc-v5/1.0.9/com/aliyuncs/v5/aliyuncvc/transform
|
java-sources/com/aliyun/aliyun-java-sdk-aliyuncvc-v5/1.0.9/com/aliyuncs/v5/aliyuncvc/transform/v20191030/DeleteDeviceResponseUnmarshaller.java
|
/*
* 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.
*/
package com.aliyuncs.v5.aliyuncvc.transform.v20191030;
import com.aliyuncs.v5.aliyuncvc.model.v20191030.DeleteDeviceResponse;
import com.aliyuncs.v5.transform.UnmarshallerContext;
public class DeleteDeviceResponseUnmarshaller {
public static DeleteDeviceResponse unmarshall(DeleteDeviceResponse deleteDeviceResponse, UnmarshallerContext _ctx) {
deleteDeviceResponse.setRequestId(_ctx.stringValue("DeleteDeviceResponse.RequestId"));
deleteDeviceResponse.setErrorCode(_ctx.integerValue("DeleteDeviceResponse.ErrorCode"));
deleteDeviceResponse.setMessage(_ctx.stringValue("DeleteDeviceResponse.Message"));
deleteDeviceResponse.setSuccess(_ctx.booleanValue("DeleteDeviceResponse.Success"));
return deleteDeviceResponse;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-aliyuncvc-v5/1.0.9/com/aliyuncs/v5/aliyuncvc/transform
|
java-sources/com/aliyun/aliyun-java-sdk-aliyuncvc-v5/1.0.9/com/aliyuncs/v5/aliyuncvc/transform/v20191030/DeleteLiveResponseUnmarshaller.java
|
/*
* 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.
*/
package com.aliyuncs.v5.aliyuncvc.transform.v20191030;
import com.aliyuncs.v5.aliyuncvc.model.v20191030.DeleteLiveResponse;
import com.aliyuncs.v5.transform.UnmarshallerContext;
public class DeleteLiveResponseUnmarshaller {
public static DeleteLiveResponse unmarshall(DeleteLiveResponse deleteLiveResponse, UnmarshallerContext _ctx) {
deleteLiveResponse.setRequestId(_ctx.stringValue("DeleteLiveResponse.RequestId"));
deleteLiveResponse.setErrorCode(_ctx.integerValue("DeleteLiveResponse.ErrorCode"));
deleteLiveResponse.setMessage(_ctx.stringValue("DeleteLiveResponse.Message"));
deleteLiveResponse.setSuccess(_ctx.booleanValue("DeleteLiveResponse.Success"));
return deleteLiveResponse;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-aliyuncvc-v5/1.0.9/com/aliyuncs/v5/aliyuncvc/transform
|
java-sources/com/aliyun/aliyun-java-sdk-aliyuncvc-v5/1.0.9/com/aliyuncs/v5/aliyuncvc/transform/v20191030/DeleteMeetingResponseUnmarshaller.java
|
/*
* 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.
*/
package com.aliyuncs.v5.aliyuncvc.transform.v20191030;
import com.aliyuncs.v5.aliyuncvc.model.v20191030.DeleteMeetingResponse;
import com.aliyuncs.v5.transform.UnmarshallerContext;
public class DeleteMeetingResponseUnmarshaller {
public static DeleteMeetingResponse unmarshall(DeleteMeetingResponse deleteMeetingResponse, UnmarshallerContext _ctx) {
deleteMeetingResponse.setRequestId(_ctx.stringValue("DeleteMeetingResponse.RequestId"));
deleteMeetingResponse.setErrorCode(_ctx.integerValue("DeleteMeetingResponse.ErrorCode"));
deleteMeetingResponse.setMessage(_ctx.stringValue("DeleteMeetingResponse.Message"));
deleteMeetingResponse.setSuccess(_ctx.booleanValue("DeleteMeetingResponse.Success"));
return deleteMeetingResponse;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-aliyuncvc-v5/1.0.9/com/aliyuncs/v5/aliyuncvc/transform
|
java-sources/com/aliyun/aliyun-java-sdk-aliyuncvc-v5/1.0.9/com/aliyuncs/v5/aliyuncvc/transform/v20191030/DeleteUserResponseUnmarshaller.java
|
/*
* 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.
*/
package com.aliyuncs.v5.aliyuncvc.transform.v20191030;
import com.aliyuncs.v5.aliyuncvc.model.v20191030.DeleteUserResponse;
import com.aliyuncs.v5.transform.UnmarshallerContext;
public class DeleteUserResponseUnmarshaller {
public static DeleteUserResponse unmarshall(DeleteUserResponse deleteUserResponse, UnmarshallerContext _ctx) {
deleteUserResponse.setRequestId(_ctx.stringValue("DeleteUserResponse.RequestId"));
deleteUserResponse.setSuccess(_ctx.stringValue("DeleteUserResponse.Success"));
deleteUserResponse.setErrorCode(_ctx.integerValue("DeleteUserResponse.ErrorCode"));
deleteUserResponse.setMessage(_ctx.stringValue("DeleteUserResponse.Message"));
return deleteUserResponse;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-aliyuncvc-v5/1.0.9/com/aliyuncs/v5/aliyuncvc/transform
|
java-sources/com/aliyun/aliyun-java-sdk-aliyuncvc-v5/1.0.9/com/aliyuncs/v5/aliyuncvc/transform/v20191030/EndDeviceMeetingResponseUnmarshaller.java
|
/*
* 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.
*/
package com.aliyuncs.v5.aliyuncvc.transform.v20191030;
import com.aliyuncs.v5.aliyuncvc.model.v20191030.EndDeviceMeetingResponse;
import com.aliyuncs.v5.transform.UnmarshallerContext;
public class EndDeviceMeetingResponseUnmarshaller {
public static EndDeviceMeetingResponse unmarshall(EndDeviceMeetingResponse endDeviceMeetingResponse, UnmarshallerContext _ctx) {
endDeviceMeetingResponse.setRequestId(_ctx.stringValue("EndDeviceMeetingResponse.RequestId"));
endDeviceMeetingResponse.setErrorCode(_ctx.integerValue("EndDeviceMeetingResponse.ErrorCode"));
endDeviceMeetingResponse.setMessage(_ctx.stringValue("EndDeviceMeetingResponse.Message"));
endDeviceMeetingResponse.setSuccess(_ctx.booleanValue("EndDeviceMeetingResponse.Success"));
return endDeviceMeetingResponse;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-aliyuncvc-v5/1.0.9/com/aliyuncs/v5/aliyuncvc/transform
|
java-sources/com/aliyun/aliyun-java-sdk-aliyuncvc-v5/1.0.9/com/aliyuncs/v5/aliyuncvc/transform/v20191030/EndLiveResponseUnmarshaller.java
|
/*
* 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.
*/
package com.aliyuncs.v5.aliyuncvc.transform.v20191030;
import com.aliyuncs.v5.aliyuncvc.model.v20191030.EndLiveResponse;
import com.aliyuncs.v5.transform.UnmarshallerContext;
public class EndLiveResponseUnmarshaller {
public static EndLiveResponse unmarshall(EndLiveResponse endLiveResponse, UnmarshallerContext _ctx) {
endLiveResponse.setRequestId(_ctx.stringValue("EndLiveResponse.RequestId"));
endLiveResponse.setErrorCode(_ctx.integerValue("EndLiveResponse.ErrorCode"));
endLiveResponse.setMessage(_ctx.stringValue("EndLiveResponse.Message"));
endLiveResponse.setSuccess(_ctx.booleanValue("EndLiveResponse.Success"));
return endLiveResponse;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-aliyuncvc-v5/1.0.9/com/aliyuncs/v5/aliyuncvc/transform
|
java-sources/com/aliyun/aliyun-java-sdk-aliyuncvc-v5/1.0.9/com/aliyuncs/v5/aliyuncvc/transform/v20191030/GetDeviceActiveCodeResponseUnmarshaller.java
|
/*
* 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.
*/
package com.aliyuncs.v5.aliyuncvc.transform.v20191030;
import java.util.ArrayList;
import java.util.List;
import com.aliyuncs.v5.aliyuncvc.model.v20191030.GetDeviceActiveCodeResponse;
import com.aliyuncs.v5.aliyuncvc.model.v20191030.GetDeviceActiveCodeResponse.Data;
import com.aliyuncs.v5.transform.UnmarshallerContext;
public class GetDeviceActiveCodeResponseUnmarshaller {
public static GetDeviceActiveCodeResponse unmarshall(GetDeviceActiveCodeResponse getDeviceActiveCodeResponse, UnmarshallerContext _ctx) {
getDeviceActiveCodeResponse.setErrorCode(_ctx.integerValue("GetDeviceActiveCodeResponse.ErrorCode"));
getDeviceActiveCodeResponse.setMessage(_ctx.stringValue("GetDeviceActiveCodeResponse.Message"));
getDeviceActiveCodeResponse.setSuccess(_ctx.booleanValue("GetDeviceActiveCodeResponse.Success"));
List<Data> devicesList = new ArrayList<Data>();
for (int i = 0; i < _ctx.lengthValue("GetDeviceActiveCodeResponse.Devices.Length"); i++) {
Data data = new Data();
data.setDeviceErrorCode(_ctx.integerValue("GetDeviceActiveCodeResponse.Devices["+ i +"].DeviceErrorCode"));
data.setDeviceMessage(_ctx.stringValue("GetDeviceActiveCodeResponse.Devices["+ i +"].DeviceMessage"));
data.setSN(_ctx.stringValue("GetDeviceActiveCodeResponse.Devices["+ i +"].SN"));
data.setActiveCode(_ctx.stringValue("GetDeviceActiveCodeResponse.Devices["+ i +"].ActiveCode"));
devicesList.add(data);
}
getDeviceActiveCodeResponse.setDevices(devicesList);
return getDeviceActiveCodeResponse;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-aliyuncvc-v5/1.0.9/com/aliyuncs/v5/aliyuncvc/transform
|
java-sources/com/aliyun/aliyun-java-sdk-aliyuncvc-v5/1.0.9/com/aliyuncs/v5/aliyuncvc/transform/v20191030/GetDeviceTokenResponseUnmarshaller.java
|
/*
* 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.
*/
package com.aliyuncs.v5.aliyuncvc.transform.v20191030;
import com.aliyuncs.v5.aliyuncvc.model.v20191030.GetDeviceTokenResponse;
import com.aliyuncs.v5.transform.UnmarshallerContext;
public class GetDeviceTokenResponseUnmarshaller {
public static GetDeviceTokenResponse unmarshall(GetDeviceTokenResponse getDeviceTokenResponse, UnmarshallerContext _ctx) {
getDeviceTokenResponse.setRequestId(_ctx.stringValue("GetDeviceTokenResponse.RequestId"));
getDeviceTokenResponse.setErrorCode(_ctx.integerValue("GetDeviceTokenResponse.ErrorCode"));
getDeviceTokenResponse.setMessage(_ctx.stringValue("GetDeviceTokenResponse.Message"));
getDeviceTokenResponse.setSuccess(_ctx.booleanValue("GetDeviceTokenResponse.Success"));
getDeviceTokenResponse.setToken(_ctx.stringValue("GetDeviceTokenResponse.Token"));
return getDeviceTokenResponse;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-aliyuncvc-v5/1.0.9/com/aliyuncs/v5/aliyuncvc/transform
|
java-sources/com/aliyun/aliyun-java-sdk-aliyuncvc-v5/1.0.9/com/aliyuncs/v5/aliyuncvc/transform/v20191030/GetMeetingInternationalResponseUnmarshaller.java
|
/*
* 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.
*/
package com.aliyuncs.v5.aliyuncvc.transform.v20191030;
import java.util.ArrayList;
import java.util.List;
import com.aliyuncs.v5.aliyuncvc.model.v20191030.GetMeetingInternationalResponse;
import com.aliyuncs.v5.aliyuncvc.model.v20191030.GetMeetingInternationalResponse.MeetingInfo;
import com.aliyuncs.v5.aliyuncvc.model.v20191030.GetMeetingInternationalResponse.MeetingInfo.MemberListItem;
import com.aliyuncs.v5.transform.UnmarshallerContext;
public class GetMeetingInternationalResponseUnmarshaller {
public static GetMeetingInternationalResponse unmarshall(GetMeetingInternationalResponse getMeetingInternationalResponse, UnmarshallerContext _ctx) {
getMeetingInternationalResponse.setRequestId(_ctx.stringValue("GetMeetingInternationalResponse.RequestId"));
getMeetingInternationalResponse.setErrorCode(_ctx.integerValue("GetMeetingInternationalResponse.ErrorCode"));
getMeetingInternationalResponse.setMessage(_ctx.stringValue("GetMeetingInternationalResponse.Message"));
getMeetingInternationalResponse.setSuccess(_ctx.booleanValue("GetMeetingInternationalResponse.Success"));
MeetingInfo meetingInfo = new MeetingInfo();
meetingInfo.setMeetingName(_ctx.stringValue("GetMeetingInternationalResponse.MeetingInfo.MeetingName"));
meetingInfo.setValidTime(_ctx.longValue("GetMeetingInternationalResponse.MeetingInfo.ValidTime"));
meetingInfo.setMeetingCode(_ctx.stringValue("GetMeetingInternationalResponse.MeetingInfo.MeetingCode"));
meetingInfo.setCreateTime(_ctx.longValue("GetMeetingInternationalResponse.MeetingInfo.CreateTime"));
meetingInfo.setUserId(_ctx.stringValue("GetMeetingInternationalResponse.MeetingInfo.UserId"));
meetingInfo.setMeetingUUID(_ctx.stringValue("GetMeetingInternationalResponse.MeetingInfo.MeetingUUID"));
meetingInfo.setPassword(_ctx.stringValue("GetMeetingInternationalResponse.MeetingInfo.Password"));
List<MemberListItem> memberListList = new ArrayList<MemberListItem>();
for (int i = 0; i < _ctx.lengthValue("GetMeetingInternationalResponse.MeetingInfo.MemberList.Length"); i++) {
MemberListItem memberListItem = new MemberListItem();
memberListItem.setUserAvatarUrl(_ctx.stringValue("GetMeetingInternationalResponse.MeetingInfo.MemberList["+ i +"].UserAvatarUrl"));
memberListItem.setMemberUUID(_ctx.stringValue("GetMeetingInternationalResponse.MeetingInfo.MemberList["+ i +"].MemberUUID"));
memberListItem.setUserName(_ctx.stringValue("GetMeetingInternationalResponse.MeetingInfo.MemberList["+ i +"].UserName"));
memberListItem.setUserId(_ctx.stringValue("GetMeetingInternationalResponse.MeetingInfo.MemberList["+ i +"].UserId"));
memberListItem.setStatus(_ctx.stringValue("GetMeetingInternationalResponse.MeetingInfo.MemberList["+ i +"].Status"));
memberListList.add(memberListItem);
}
meetingInfo.setMemberList(memberListList);
getMeetingInternationalResponse.setMeetingInfo(meetingInfo);
return getMeetingInternationalResponse;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-aliyuncvc-v5/1.0.9/com/aliyuncs/v5/aliyuncvc/transform
|
java-sources/com/aliyun/aliyun-java-sdk-aliyuncvc-v5/1.0.9/com/aliyuncs/v5/aliyuncvc/transform/v20191030/GetMeetingMemberResponseUnmarshaller.java
|
/*
* 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.
*/
package com.aliyuncs.v5.aliyuncvc.transform.v20191030;
import com.aliyuncs.v5.aliyuncvc.model.v20191030.GetMeetingMemberResponse;
import com.aliyuncs.v5.transform.UnmarshallerContext;
public class GetMeetingMemberResponseUnmarshaller {
public static GetMeetingMemberResponse unmarshall(GetMeetingMemberResponse getMeetingMemberResponse, UnmarshallerContext _ctx) {
getMeetingMemberResponse.setRequestId(_ctx.stringValue("GetMeetingMemberResponse.RequestId"));
getMeetingMemberResponse.setMessage(_ctx.stringValue("GetMeetingMemberResponse.Message"));
getMeetingMemberResponse.setSuccess(_ctx.booleanValue("GetMeetingMemberResponse.Success"));
getMeetingMemberResponse.setErrorCode(_ctx.integerValue("GetMeetingMemberResponse.ErrorCode"));
getMeetingMemberResponse.setMembers(_ctx.stringValue("GetMeetingMemberResponse.Members"));
return getMeetingMemberResponse;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-aliyuncvc-v5/1.0.9/com/aliyuncs/v5/aliyuncvc/transform
|
java-sources/com/aliyun/aliyun-java-sdk-aliyuncvc-v5/1.0.9/com/aliyuncs/v5/aliyuncvc/transform/v20191030/GetMeetingResponseUnmarshaller.java
|
/*
* 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.
*/
package com.aliyuncs.v5.aliyuncvc.transform.v20191030;
import java.util.ArrayList;
import java.util.List;
import com.aliyuncs.v5.aliyuncvc.model.v20191030.GetMeetingResponse;
import com.aliyuncs.v5.aliyuncvc.model.v20191030.GetMeetingResponse.MeetingInfo;
import com.aliyuncs.v5.aliyuncvc.model.v20191030.GetMeetingResponse.MeetingInfo.MemberListItem;
import com.aliyuncs.v5.transform.UnmarshallerContext;
public class GetMeetingResponseUnmarshaller {
public static GetMeetingResponse unmarshall(GetMeetingResponse getMeetingResponse, UnmarshallerContext _ctx) {
getMeetingResponse.setRequestId(_ctx.stringValue("GetMeetingResponse.RequestId"));
getMeetingResponse.setErrorCode(_ctx.integerValue("GetMeetingResponse.ErrorCode"));
getMeetingResponse.setMessage(_ctx.stringValue("GetMeetingResponse.Message"));
getMeetingResponse.setSuccess(_ctx.booleanValue("GetMeetingResponse.Success"));
MeetingInfo meetingInfo = new MeetingInfo();
meetingInfo.setMeetingName(_ctx.stringValue("GetMeetingResponse.MeetingInfo.MeetingName"));
meetingInfo.setValidTime(_ctx.longValue("GetMeetingResponse.MeetingInfo.ValidTime"));
meetingInfo.setMeetingCode(_ctx.stringValue("GetMeetingResponse.MeetingInfo.MeetingCode"));
meetingInfo.setCreateTime(_ctx.longValue("GetMeetingResponse.MeetingInfo.CreateTime"));
meetingInfo.setUserId(_ctx.stringValue("GetMeetingResponse.MeetingInfo.UserId"));
meetingInfo.setMeetingUUID(_ctx.stringValue("GetMeetingResponse.MeetingInfo.MeetingUUID"));
meetingInfo.setPassword(_ctx.stringValue("GetMeetingResponse.MeetingInfo.Password"));
List<MemberListItem> memberListList = new ArrayList<MemberListItem>();
for (int i = 0; i < _ctx.lengthValue("GetMeetingResponse.MeetingInfo.MemberList.Length"); i++) {
MemberListItem memberListItem = new MemberListItem();
memberListItem.setUserAvatarUrl(_ctx.stringValue("GetMeetingResponse.MeetingInfo.MemberList["+ i +"].UserAvatarUrl"));
memberListItem.setMemberUUID(_ctx.stringValue("GetMeetingResponse.MeetingInfo.MemberList["+ i +"].MemberUUID"));
memberListItem.setUserName(_ctx.stringValue("GetMeetingResponse.MeetingInfo.MemberList["+ i +"].UserName"));
memberListItem.setUserId(_ctx.stringValue("GetMeetingResponse.MeetingInfo.MemberList["+ i +"].UserId"));
memberListItem.setStatus(_ctx.stringValue("GetMeetingResponse.MeetingInfo.MemberList["+ i +"].Status"));
memberListList.add(memberListItem);
}
meetingInfo.setMemberList(memberListList);
getMeetingResponse.setMeetingInfo(meetingInfo);
return getMeetingResponse;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-aliyuncvc-v5/1.0.9/com/aliyuncs/v5/aliyuncvc/transform
|
java-sources/com/aliyun/aliyun-java-sdk-aliyuncvc-v5/1.0.9/com/aliyuncs/v5/aliyuncvc/transform/v20191030/GetUserResponseUnmarshaller.java
|
/*
* 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.
*/
package com.aliyuncs.v5.aliyuncvc.transform.v20191030;
import com.aliyuncs.v5.aliyuncvc.model.v20191030.GetUserResponse;
import com.aliyuncs.v5.aliyuncvc.model.v20191030.GetUserResponse.UserInfo;
import com.aliyuncs.v5.transform.UnmarshallerContext;
public class GetUserResponseUnmarshaller {
public static GetUserResponse unmarshall(GetUserResponse getUserResponse, UnmarshallerContext _ctx) {
getUserResponse.setRequestId(_ctx.stringValue("GetUserResponse.RequestId"));
getUserResponse.setErrorCode(_ctx.integerValue("GetUserResponse.ErrorCode"));
getUserResponse.setMessage(_ctx.stringValue("GetUserResponse.Message"));
getUserResponse.setSuccess(_ctx.booleanValue("GetUserResponse.Success"));
UserInfo userInfo = new UserInfo();
userInfo.setUserName(_ctx.stringValue("GetUserResponse.UserInfo.UserName"));
userInfo.setCreateTime(_ctx.longValue("GetUserResponse.UserInfo.CreateTime"));
userInfo.setGroupId(_ctx.stringValue("GetUserResponse.UserInfo.GroupId"));
userInfo.setGroupName(_ctx.stringValue("GetUserResponse.UserInfo.GroupName"));
userInfo.setUserId(_ctx.stringValue("GetUserResponse.UserInfo.UserId"));
userInfo.setUserTel(_ctx.stringValue("GetUserResponse.UserInfo.UserTel"));
userInfo.setUserEmail(_ctx.stringValue("GetUserResponse.UserInfo.UserEmail"));
userInfo.setUserMobile(_ctx.stringValue("GetUserResponse.UserInfo.UserMobile"));
userInfo.setUserAvatarUrl(_ctx.stringValue("GetUserResponse.UserInfo.UserAvatarUrl"));
userInfo.setDepartId(_ctx.stringValue("GetUserResponse.UserInfo.DepartId"));
userInfo.setDepartName(_ctx.stringValue("GetUserResponse.UserInfo.DepartName"));
userInfo.setJobName(_ctx.stringValue("GetUserResponse.UserInfo.JobName"));
getUserResponse.setUserInfo(userInfo);
return getUserResponse;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-aliyuncvc-v5/1.0.9/com/aliyuncs/v5/aliyuncvc/transform
|
java-sources/com/aliyun/aliyun-java-sdk-aliyuncvc-v5/1.0.9/com/aliyuncs/v5/aliyuncvc/transform/v20191030/JoinDeviceMeetingResponseUnmarshaller.java
|
/*
* 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.
*/
package com.aliyuncs.v5.aliyuncvc.transform.v20191030;
import com.aliyuncs.v5.aliyuncvc.model.v20191030.JoinDeviceMeetingResponse;
import com.aliyuncs.v5.aliyuncvc.model.v20191030.JoinDeviceMeetingResponse.Device;
import com.aliyuncs.v5.aliyuncvc.model.v20191030.JoinDeviceMeetingResponse.Device.SlsInfo;
import com.aliyuncs.v5.transform.UnmarshallerContext;
public class JoinDeviceMeetingResponseUnmarshaller {
public static JoinDeviceMeetingResponse unmarshall(JoinDeviceMeetingResponse joinDeviceMeetingResponse, UnmarshallerContext _ctx) {
joinDeviceMeetingResponse.setRequestId(_ctx.stringValue("JoinDeviceMeetingResponse.RequestId"));
joinDeviceMeetingResponse.setErrorCode(_ctx.integerValue("JoinDeviceMeetingResponse.ErrorCode"));
joinDeviceMeetingResponse.setMessage(_ctx.stringValue("JoinDeviceMeetingResponse.Message"));
joinDeviceMeetingResponse.setSuccess(_ctx.booleanValue("JoinDeviceMeetingResponse.Success"));
Device device = new Device();
device.setMeetingDomain(_ctx.stringValue("JoinDeviceMeetingResponse.Device.MeetingDomain"));
device.setMeetingToken(_ctx.stringValue("JoinDeviceMeetingResponse.Device.MeetingToken"));
device.setMeetingCode(_ctx.stringValue("JoinDeviceMeetingResponse.Device.MeetingCode"));
device.setMemberUUID(_ctx.stringValue("JoinDeviceMeetingResponse.Device.MemberUUID"));
device.setClientAppId(_ctx.stringValue("JoinDeviceMeetingResponse.Device.ClientAppId"));
device.setMeetingUUID(_ctx.stringValue("JoinDeviceMeetingResponse.Device.MeetingUUID"));
device.setMeetingAppId(_ctx.stringValue("JoinDeviceMeetingResponse.Device.MeetingAppId"));
SlsInfo slsInfo = new SlsInfo();
slsInfo.setLogServiceEndpoint(_ctx.stringValue("JoinDeviceMeetingResponse.Device.SlsInfo.LogServiceEndpoint"));
slsInfo.setProject(_ctx.stringValue("JoinDeviceMeetingResponse.Device.SlsInfo.Project"));
slsInfo.setLogstore(_ctx.stringValue("JoinDeviceMeetingResponse.Device.SlsInfo.Logstore"));
device.setSlsInfo(slsInfo);
joinDeviceMeetingResponse.setDevice(device);
return joinDeviceMeetingResponse;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-aliyuncvc-v5/1.0.9/com/aliyuncs/v5/aliyuncvc/transform
|
java-sources/com/aliyun/aliyun-java-sdk-aliyuncvc-v5/1.0.9/com/aliyuncs/v5/aliyuncvc/transform/v20191030/JoinLiveResponseUnmarshaller.java
|
/*
* 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.
*/
package com.aliyuncs.v5.aliyuncvc.transform.v20191030;
import com.aliyuncs.v5.aliyuncvc.model.v20191030.JoinLiveResponse;
import com.aliyuncs.v5.aliyuncvc.model.v20191030.JoinLiveResponse.MeetingInfo;
import com.aliyuncs.v5.aliyuncvc.model.v20191030.JoinLiveResponse.MeetingInfo.SlsInfo;
import com.aliyuncs.v5.transform.UnmarshallerContext;
public class JoinLiveResponseUnmarshaller {
public static JoinLiveResponse unmarshall(JoinLiveResponse joinLiveResponse, UnmarshallerContext _ctx) {
joinLiveResponse.setRequestId(_ctx.stringValue("JoinLiveResponse.RequestId"));
joinLiveResponse.setErrorCode(_ctx.integerValue("JoinLiveResponse.ErrorCode"));
joinLiveResponse.setSuccess(_ctx.booleanValue("JoinLiveResponse.Success"));
joinLiveResponse.setMessage(_ctx.stringValue("JoinLiveResponse.Message"));
MeetingInfo meetingInfo = new MeetingInfo();
meetingInfo.setMeetingDomain(_ctx.stringValue("JoinLiveResponse.MeetingInfo.MeetingDomain"));
meetingInfo.setMeetingToken(_ctx.stringValue("JoinLiveResponse.MeetingInfo.MeetingToken"));
meetingInfo.setMeetingCode(_ctx.stringValue("JoinLiveResponse.MeetingInfo.MeetingCode"));
meetingInfo.setMemberUUID(_ctx.stringValue("JoinLiveResponse.MeetingInfo.MemberUUID"));
meetingInfo.setClientAppId(_ctx.stringValue("JoinLiveResponse.MeetingInfo.ClientAppId"));
meetingInfo.setMeetingUUID(_ctx.stringValue("JoinLiveResponse.MeetingInfo.MeetingUUID"));
meetingInfo.setMeetingAppId(_ctx.stringValue("JoinLiveResponse.MeetingInfo.MeetingAppId"));
SlsInfo slsInfo = new SlsInfo();
slsInfo.setLogServiceEndpoint(_ctx.stringValue("JoinLiveResponse.MeetingInfo.SlsInfo.LogServiceEndpoint"));
slsInfo.setLogstore(_ctx.stringValue("JoinLiveResponse.MeetingInfo.SlsInfo.Logstore"));
slsInfo.setProject(_ctx.stringValue("JoinLiveResponse.MeetingInfo.SlsInfo.Project"));
meetingInfo.setSlsInfo(slsInfo);
joinLiveResponse.setMeetingInfo(meetingInfo);
return joinLiveResponse;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-aliyuncvc-v5/1.0.9/com/aliyuncs/v5/aliyuncvc/transform
|
java-sources/com/aliyun/aliyun-java-sdk-aliyuncvc-v5/1.0.9/com/aliyuncs/v5/aliyuncvc/transform/v20191030/JoinMeetingInternationalResponseUnmarshaller.java
|
/*
* 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.
*/
package com.aliyuncs.v5.aliyuncvc.transform.v20191030;
import com.aliyuncs.v5.aliyuncvc.model.v20191030.JoinMeetingInternationalResponse;
import com.aliyuncs.v5.aliyuncvc.model.v20191030.JoinMeetingInternationalResponse.MeetingInfo;
import com.aliyuncs.v5.aliyuncvc.model.v20191030.JoinMeetingInternationalResponse.MeetingInfo.SlsInfo;
import com.aliyuncs.v5.transform.UnmarshallerContext;
public class JoinMeetingInternationalResponseUnmarshaller {
public static JoinMeetingInternationalResponse unmarshall(JoinMeetingInternationalResponse joinMeetingInternationalResponse, UnmarshallerContext _ctx) {
joinMeetingInternationalResponse.setRequestId(_ctx.stringValue("JoinMeetingInternationalResponse.RequestId"));
joinMeetingInternationalResponse.setErrorCode(_ctx.integerValue("JoinMeetingInternationalResponse.ErrorCode"));
joinMeetingInternationalResponse.setSuccess(_ctx.booleanValue("JoinMeetingInternationalResponse.Success"));
joinMeetingInternationalResponse.setMessage(_ctx.stringValue("JoinMeetingInternationalResponse.Message"));
MeetingInfo meetingInfo = new MeetingInfo();
meetingInfo.setMeetingDomain(_ctx.stringValue("JoinMeetingInternationalResponse.MeetingInfo.MeetingDomain"));
meetingInfo.setMeetingToken(_ctx.stringValue("JoinMeetingInternationalResponse.MeetingInfo.MeetingToken"));
meetingInfo.setMeetingCode(_ctx.stringValue("JoinMeetingInternationalResponse.MeetingInfo.MeetingCode"));
meetingInfo.setMemberUUID(_ctx.stringValue("JoinMeetingInternationalResponse.MeetingInfo.MemberUUID"));
meetingInfo.setClientAppId(_ctx.stringValue("JoinMeetingInternationalResponse.MeetingInfo.ClientAppId"));
meetingInfo.setMeetingUUID(_ctx.stringValue("JoinMeetingInternationalResponse.MeetingInfo.MeetingUUID"));
meetingInfo.setMeetingAppId(_ctx.stringValue("JoinMeetingInternationalResponse.MeetingInfo.MeetingAppId"));
SlsInfo slsInfo = new SlsInfo();
slsInfo.setLogServiceEndpoint(_ctx.stringValue("JoinMeetingInternationalResponse.MeetingInfo.SlsInfo.LogServiceEndpoint"));
slsInfo.setLogstore(_ctx.stringValue("JoinMeetingInternationalResponse.MeetingInfo.SlsInfo.Logstore"));
slsInfo.setProject(_ctx.stringValue("JoinMeetingInternationalResponse.MeetingInfo.SlsInfo.Project"));
meetingInfo.setSlsInfo(slsInfo);
joinMeetingInternationalResponse.setMeetingInfo(meetingInfo);
return joinMeetingInternationalResponse;
}
}
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.