index
int64 | repo_id
string | file_path
string | content
string |
|---|---|---|---|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cloudauth-v5/1.0.5/com/aliyuncs/v5/cloudauth/model
|
java-sources/com/aliyun/aliyun-java-sdk-cloudauth-v5/1.0.5/com/aliyuncs/v5/cloudauth/model/v20190307/DescribeOssUploadTokenResponse.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.cloudauth.model.v20190307;
import com.aliyuncs.v5.AcsResponse;
import com.aliyuncs.v5.cloudauth.transform.v20190307.DescribeOssUploadTokenResponseUnmarshaller;
import com.aliyuncs.v5.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class DescribeOssUploadTokenResponse extends AcsResponse {
private String requestId;
private OssUploadToken ossUploadToken;
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public OssUploadToken getOssUploadToken() {
return this.ossUploadToken;
}
public void setOssUploadToken(OssUploadToken ossUploadToken) {
this.ossUploadToken = ossUploadToken;
}
public static class OssUploadToken {
private String bucket;
private String endPoint;
private String path;
private Long expired;
private String secret;
private String key;
private String token;
public String getBucket() {
return this.bucket;
}
public void setBucket(String bucket) {
this.bucket = bucket;
}
public String getEndPoint() {
return this.endPoint;
}
public void setEndPoint(String endPoint) {
this.endPoint = endPoint;
}
public String getPath() {
return this.path;
}
public void setPath(String path) {
this.path = path;
}
public Long getExpired() {
return this.expired;
}
public void setExpired(Long expired) {
this.expired = expired;
}
public String getSecret() {
return this.secret;
}
public void setSecret(String secret) {
this.secret = secret;
}
public String getKey() {
return this.key;
}
public void setKey(String key) {
this.key = key;
}
public String getToken() {
return this.token;
}
public void setToken(String token) {
this.token = token;
}
}
@Override
public DescribeOssUploadTokenResponse getInstance(UnmarshallerContext context) {
return DescribeOssUploadTokenResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cloudauth-v5/1.0.5/com/aliyuncs/v5/cloudauth/model
|
java-sources/com/aliyun/aliyun-java-sdk-cloudauth-v5/1.0.5/com/aliyuncs/v5/cloudauth/model/v20190307/DescribeRPSDKRequest.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.cloudauth.model.v20190307;
import com.aliyuncs.v5.RpcAcsRequest;
import com.aliyuncs.v5.http.MethodType;
import com.aliyuncs.v5.cloudauth.Endpoint;
/**
* @author auto create
* @version
*/
public class DescribeRPSDKRequest extends RpcAcsRequest<DescribeRPSDKResponse> {
private String sourceIp;
private String lang;
private String taskId;
public DescribeRPSDKRequest() {
super("Cloudauth", "2019-03-07", "DescribeRPSDK");
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 getSourceIp() {
return this.sourceIp;
}
public void setSourceIp(String sourceIp) {
this.sourceIp = sourceIp;
if(sourceIp != null){
putQueryParameter("SourceIp", sourceIp);
}
}
public String getLang() {
return this.lang;
}
public void setLang(String lang) {
this.lang = lang;
if(lang != null){
putQueryParameter("Lang", lang);
}
}
public String getTaskId() {
return this.taskId;
}
public void setTaskId(String taskId) {
this.taskId = taskId;
if(taskId != null){
putQueryParameter("TaskId", taskId);
}
}
@Override
public Class<DescribeRPSDKResponse> getResponseClass() {
return DescribeRPSDKResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cloudauth-v5/1.0.5/com/aliyuncs/v5/cloudauth/model
|
java-sources/com/aliyun/aliyun-java-sdk-cloudauth-v5/1.0.5/com/aliyuncs/v5/cloudauth/model/v20190307/DescribeRPSDKResponse.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.cloudauth.model.v20190307;
import com.aliyuncs.v5.AcsResponse;
import com.aliyuncs.v5.cloudauth.transform.v20190307.DescribeRPSDKResponseUnmarshaller;
import com.aliyuncs.v5.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class DescribeRPSDKResponse extends AcsResponse {
private String requestId;
private String sdkUrl;
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public String getSdkUrl() {
return this.sdkUrl;
}
public void setSdkUrl(String sdkUrl) {
this.sdkUrl = sdkUrl;
}
@Override
public DescribeRPSDKResponse getInstance(UnmarshallerContext context) {
return DescribeRPSDKResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cloudauth-v5/1.0.5/com/aliyuncs/v5/cloudauth/model
|
java-sources/com/aliyun/aliyun-java-sdk-cloudauth-v5/1.0.5/com/aliyuncs/v5/cloudauth/model/v20190307/DescribeSdkUrlRequest.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.cloudauth.model.v20190307;
import com.aliyuncs.v5.RpcAcsRequest;
import com.aliyuncs.v5.http.MethodType;
import com.aliyuncs.v5.cloudauth.Endpoint;
/**
* @author auto create
* @version
*/
public class DescribeSdkUrlRequest extends RpcAcsRequest<DescribeSdkUrlResponse> {
private Boolean debug;
private Long id;
public DescribeSdkUrlRequest() {
super("Cloudauth", "2019-03-07", "DescribeSdkUrl");
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 Boolean getDebug() {
return this.debug;
}
public void setDebug(Boolean debug) {
this.debug = debug;
if(debug != null){
putQueryParameter("Debug", debug.toString());
}
}
public Long getId() {
return this.id;
}
public void setId(Long id) {
this.id = id;
if(id != null){
putQueryParameter("Id", id.toString());
}
}
@Override
public Class<DescribeSdkUrlResponse> getResponseClass() {
return DescribeSdkUrlResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cloudauth-v5/1.0.5/com/aliyuncs/v5/cloudauth/model
|
java-sources/com/aliyun/aliyun-java-sdk-cloudauth-v5/1.0.5/com/aliyuncs/v5/cloudauth/model/v20190307/DescribeSdkUrlResponse.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.cloudauth.model.v20190307;
import com.aliyuncs.v5.AcsResponse;
import com.aliyuncs.v5.cloudauth.transform.v20190307.DescribeSdkUrlResponseUnmarshaller;
import com.aliyuncs.v5.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class DescribeSdkUrlResponse extends AcsResponse {
private String requestId;
private String sdkUrl;
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public String getSdkUrl() {
return this.sdkUrl;
}
public void setSdkUrl(String sdkUrl) {
this.sdkUrl = sdkUrl;
}
@Override
public DescribeSdkUrlResponse getInstance(UnmarshallerContext context) {
return DescribeSdkUrlResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cloudauth-v5/1.0.5/com/aliyuncs/v5/cloudauth/model
|
java-sources/com/aliyun/aliyun-java-sdk-cloudauth-v5/1.0.5/com/aliyuncs/v5/cloudauth/model/v20190307/DescribeUpdatePackageResultRequest.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.cloudauth.model.v20190307;
import com.aliyuncs.v5.RpcAcsRequest;
import com.aliyuncs.v5.http.MethodType;
import com.aliyuncs.v5.cloudauth.Endpoint;
/**
* @author auto create
* @version
*/
public class DescribeUpdatePackageResultRequest extends RpcAcsRequest<DescribeUpdatePackageResultResponse> {
private String taskId;
public DescribeUpdatePackageResultRequest() {
super("Cloudauth", "2019-03-07", "DescribeUpdatePackageResult");
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 getTaskId() {
return this.taskId;
}
public void setTaskId(String taskId) {
this.taskId = taskId;
if(taskId != null){
putQueryParameter("TaskId", taskId);
}
}
@Override
public Class<DescribeUpdatePackageResultResponse> getResponseClass() {
return DescribeUpdatePackageResultResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cloudauth-v5/1.0.5/com/aliyuncs/v5/cloudauth/model
|
java-sources/com/aliyun/aliyun-java-sdk-cloudauth-v5/1.0.5/com/aliyuncs/v5/cloudauth/model/v20190307/DescribeUpdatePackageResultResponse.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.cloudauth.model.v20190307;
import com.aliyuncs.v5.AcsResponse;
import com.aliyuncs.v5.cloudauth.transform.v20190307.DescribeUpdatePackageResultResponseUnmarshaller;
import com.aliyuncs.v5.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class DescribeUpdatePackageResultResponse extends AcsResponse {
private String requestId;
private AppInfo appInfo;
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public AppInfo getAppInfo() {
return this.appInfo;
}
public void setAppInfo(AppInfo appInfo) {
this.appInfo = appInfo;
}
public static class AppInfo {
private Long id;
private String name;
private String packageName;
private String icon;
private String startDate;
private String endDate;
private Integer type;
private PackageInfo packageInfo;
private DebugPackageInfo debugPackageInfo;
public Long getId() {
return this.id;
}
public void setId(Long id) {
this.id = id;
}
public String getName() {
return this.name;
}
public void setName(String name) {
this.name = name;
}
public String getPackageName() {
return this.packageName;
}
public void setPackageName(String packageName) {
this.packageName = packageName;
}
public String getIcon() {
return this.icon;
}
public void setIcon(String icon) {
this.icon = icon;
}
public String getStartDate() {
return this.startDate;
}
public void setStartDate(String startDate) {
this.startDate = startDate;
}
public String getEndDate() {
return this.endDate;
}
public void setEndDate(String endDate) {
this.endDate = endDate;
}
public Integer getType() {
return this.type;
}
public void setType(Integer type) {
this.type = type;
}
public PackageInfo getPackageInfo() {
return this.packageInfo;
}
public void setPackageInfo(PackageInfo packageInfo) {
this.packageInfo = packageInfo;
}
public DebugPackageInfo getDebugPackageInfo() {
return this.debugPackageInfo;
}
public void setDebugPackageInfo(DebugPackageInfo debugPackageInfo) {
this.debugPackageInfo = debugPackageInfo;
}
public static class PackageInfo {
private String version;
public String getVersion() {
return this.version;
}
public void setVersion(String version) {
this.version = version;
}
}
public static class DebugPackageInfo {
private String version;
public String getVersion() {
return this.version;
}
public void setVersion(String version) {
this.version = version;
}
}
}
@Override
public DescribeUpdatePackageResultResponse getInstance(UnmarshallerContext context) {
return DescribeUpdatePackageResultResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cloudauth-v5/1.0.5/com/aliyuncs/v5/cloudauth/model
|
java-sources/com/aliyun/aliyun-java-sdk-cloudauth-v5/1.0.5/com/aliyuncs/v5/cloudauth/model/v20190307/DescribeUploadInfoRequest.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.cloudauth.model.v20190307;
import com.aliyuncs.v5.RpcAcsRequest;
import com.aliyuncs.v5.http.MethodType;
import com.aliyuncs.v5.cloudauth.Endpoint;
/**
* @author auto create
* @version
*/
public class DescribeUploadInfoRequest extends RpcAcsRequest<DescribeUploadInfoResponse> {
private String biz;
public DescribeUploadInfoRequest() {
super("Cloudauth", "2019-03-07", "DescribeUploadInfo");
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 getBiz() {
return this.biz;
}
public void setBiz(String biz) {
this.biz = biz;
if(biz != null){
putQueryParameter("Biz", biz);
}
}
@Override
public Class<DescribeUploadInfoResponse> getResponseClass() {
return DescribeUploadInfoResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cloudauth-v5/1.0.5/com/aliyuncs/v5/cloudauth/model
|
java-sources/com/aliyun/aliyun-java-sdk-cloudauth-v5/1.0.5/com/aliyuncs/v5/cloudauth/model/v20190307/DescribeUploadInfoResponse.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.cloudauth.model.v20190307;
import com.aliyuncs.v5.AcsResponse;
import com.aliyuncs.v5.cloudauth.transform.v20190307.DescribeUploadInfoResponseUnmarshaller;
import com.aliyuncs.v5.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class DescribeUploadInfoResponse extends AcsResponse {
private String requestId;
private String accessid;
private String policy;
private String signature;
private String folder;
private String host;
private Long expire;
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public String getAccessid() {
return this.accessid;
}
public void setAccessid(String accessid) {
this.accessid = accessid;
}
public String getPolicy() {
return this.policy;
}
public void setPolicy(String policy) {
this.policy = policy;
}
public String getSignature() {
return this.signature;
}
public void setSignature(String signature) {
this.signature = signature;
}
public String getFolder() {
return this.folder;
}
public void setFolder(String folder) {
this.folder = folder;
}
public String getHost() {
return this.host;
}
public void setHost(String host) {
this.host = host;
}
public Long getExpire() {
return this.expire;
}
public void setExpire(Long expire) {
this.expire = expire;
}
@Override
public DescribeUploadInfoResponse getInstance(UnmarshallerContext context) {
return DescribeUploadInfoResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cloudauth-v5/1.0.5/com/aliyuncs/v5/cloudauth/model
|
java-sources/com/aliyun/aliyun-java-sdk-cloudauth-v5/1.0.5/com/aliyuncs/v5/cloudauth/model/v20190307/DescribeUserStatusRequest.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.cloudauth.model.v20190307;
import com.aliyuncs.v5.RpcAcsRequest;
import com.aliyuncs.v5.http.MethodType;
import com.aliyuncs.v5.cloudauth.Endpoint;
/**
* @author auto create
* @version
*/
public class DescribeUserStatusRequest extends RpcAcsRequest<DescribeUserStatusResponse> {
public DescribeUserStatusRequest() {
super("Cloudauth", "2019-03-07", "DescribeUserStatus");
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<DescribeUserStatusResponse> getResponseClass() {
return DescribeUserStatusResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cloudauth-v5/1.0.5/com/aliyuncs/v5/cloudauth/model
|
java-sources/com/aliyun/aliyun-java-sdk-cloudauth-v5/1.0.5/com/aliyuncs/v5/cloudauth/model/v20190307/DescribeUserStatusResponse.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.cloudauth.model.v20190307;
import com.aliyuncs.v5.AcsResponse;
import com.aliyuncs.v5.cloudauth.transform.v20190307.DescribeUserStatusResponseUnmarshaller;
import com.aliyuncs.v5.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class DescribeUserStatusResponse extends AcsResponse {
private String requestId;
private Boolean enabled;
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public Boolean getEnabled() {
return this.enabled;
}
public void setEnabled(Boolean enabled) {
this.enabled = enabled;
}
@Override
public DescribeUserStatusResponse getInstance(UnmarshallerContext context) {
return DescribeUserStatusResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cloudauth-v5/1.0.5/com/aliyuncs/v5/cloudauth/model
|
java-sources/com/aliyun/aliyun-java-sdk-cloudauth-v5/1.0.5/com/aliyuncs/v5/cloudauth/model/v20190307/DescribeVerifyRecordsRequest.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.cloudauth.model.v20190307;
import com.aliyuncs.v5.RpcAcsRequest;
import com.aliyuncs.v5.http.MethodType;
import com.aliyuncs.v5.cloudauth.Endpoint;
/**
* @author auto create
* @version
*/
public class DescribeVerifyRecordsRequest extends RpcAcsRequest<DescribeVerifyRecordsResponse> {
private String statusList;
private String startDate;
private Integer pageSize;
private Integer totalCount;
private Integer currentPage;
private String queryId;
private String bizType;
private String idCardNum;
private String endDate;
private String bizId;
public DescribeVerifyRecordsRequest() {
super("Cloudauth", "2019-03-07", "DescribeVerifyRecords");
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 getStatusList() {
return this.statusList;
}
public void setStatusList(String statusList) {
this.statusList = statusList;
if(statusList != null){
putQueryParameter("StatusList", statusList);
}
}
public String getStartDate() {
return this.startDate;
}
public void setStartDate(String startDate) {
this.startDate = startDate;
if(startDate != null){
putQueryParameter("StartDate", startDate);
}
}
public Integer getPageSize() {
return this.pageSize;
}
public void setPageSize(Integer pageSize) {
this.pageSize = pageSize;
if(pageSize != null){
putQueryParameter("PageSize", pageSize.toString());
}
}
public Integer getTotalCount() {
return this.totalCount;
}
public void setTotalCount(Integer totalCount) {
this.totalCount = totalCount;
if(totalCount != null){
putQueryParameter("TotalCount", totalCount.toString());
}
}
public Integer getCurrentPage() {
return this.currentPage;
}
public void setCurrentPage(Integer currentPage) {
this.currentPage = currentPage;
if(currentPage != null){
putQueryParameter("CurrentPage", currentPage.toString());
}
}
public String getQueryId() {
return this.queryId;
}
public void setQueryId(String queryId) {
this.queryId = queryId;
if(queryId != null){
putQueryParameter("QueryId", queryId);
}
}
public String getBizType() {
return this.bizType;
}
public void setBizType(String bizType) {
this.bizType = bizType;
if(bizType != null){
putQueryParameter("BizType", bizType);
}
}
public String getIdCardNum() {
return this.idCardNum;
}
public void setIdCardNum(String idCardNum) {
this.idCardNum = idCardNum;
if(idCardNum != null){
putQueryParameter("IdCardNum", idCardNum);
}
}
public String getEndDate() {
return this.endDate;
}
public void setEndDate(String endDate) {
this.endDate = endDate;
if(endDate != null){
putQueryParameter("EndDate", endDate);
}
}
public String getBizId() {
return this.bizId;
}
public void setBizId(String bizId) {
this.bizId = bizId;
if(bizId != null){
putQueryParameter("BizId", bizId);
}
}
@Override
public Class<DescribeVerifyRecordsResponse> getResponseClass() {
return DescribeVerifyRecordsResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cloudauth-v5/1.0.5/com/aliyuncs/v5/cloudauth/model
|
java-sources/com/aliyun/aliyun-java-sdk-cloudauth-v5/1.0.5/com/aliyuncs/v5/cloudauth/model/v20190307/DescribeVerifyRecordsResponse.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.cloudauth.model.v20190307;
import java.util.List;
import com.aliyuncs.v5.AcsResponse;
import com.aliyuncs.v5.cloudauth.transform.v20190307.DescribeVerifyRecordsResponseUnmarshaller;
import com.aliyuncs.v5.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class DescribeVerifyRecordsResponse extends AcsResponse {
private String requestId;
private Integer totalCount;
private Integer pageSize;
private Integer currentPage;
private String queryId;
private List<Records> recordsList;
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
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 getCurrentPage() {
return this.currentPage;
}
public void setCurrentPage(Integer currentPage) {
this.currentPage = currentPage;
}
public String getQueryId() {
return this.queryId;
}
public void setQueryId(String queryId) {
this.queryId = queryId;
}
public List<Records> getRecordsList() {
return this.recordsList;
}
public void setRecordsList(List<Records> recordsList) {
this.recordsList = recordsList;
}
public static class Records {
private String bizType;
private String bizId;
private String dataStats;
private String verifyId;
private Long finishTime;
private Integer status;
private Float idCardFaceComparisonScore;
private Float authorityComparisonScore;
private Material material;
public String getBizType() {
return this.bizType;
}
public void setBizType(String bizType) {
this.bizType = bizType;
}
public String getBizId() {
return this.bizId;
}
public void setBizId(String bizId) {
this.bizId = bizId;
}
public String getDataStats() {
return this.dataStats;
}
public void setDataStats(String dataStats) {
this.dataStats = dataStats;
}
public String getVerifyId() {
return this.verifyId;
}
public void setVerifyId(String verifyId) {
this.verifyId = verifyId;
}
public Long getFinishTime() {
return this.finishTime;
}
public void setFinishTime(Long finishTime) {
this.finishTime = finishTime;
}
public Integer getStatus() {
return this.status;
}
public void setStatus(Integer status) {
this.status = status;
}
public Float getIdCardFaceComparisonScore() {
return this.idCardFaceComparisonScore;
}
public void setIdCardFaceComparisonScore(Float idCardFaceComparisonScore) {
this.idCardFaceComparisonScore = idCardFaceComparisonScore;
}
public Float getAuthorityComparisonScore() {
return this.authorityComparisonScore;
}
public void setAuthorityComparisonScore(Float authorityComparisonScore) {
this.authorityComparisonScore = authorityComparisonScore;
}
public Material getMaterial() {
return this.material;
}
public void setMaterial(Material material) {
this.material = material;
}
public static class Material {
private String faceImageUrl;
private String idCardName;
private String idCardNumber;
private IdCardInfo idCardInfo;
public String getFaceImageUrl() {
return this.faceImageUrl;
}
public void setFaceImageUrl(String faceImageUrl) {
this.faceImageUrl = faceImageUrl;
}
public String getIdCardName() {
return this.idCardName;
}
public void setIdCardName(String idCardName) {
this.idCardName = idCardName;
}
public String getIdCardNumber() {
return this.idCardNumber;
}
public void setIdCardNumber(String idCardNumber) {
this.idCardNumber = idCardNumber;
}
public IdCardInfo getIdCardInfo() {
return this.idCardInfo;
}
public void setIdCardInfo(IdCardInfo idCardInfo) {
this.idCardInfo = idCardInfo;
}
public static class IdCardInfo {
private String frontImageUrl;
private String backImageUrl;
private String name;
private String number;
private String address;
private String birth;
private String sex;
private String nationality;
private String authority;
private String startDate;
private String endDate;
public String getFrontImageUrl() {
return this.frontImageUrl;
}
public void setFrontImageUrl(String frontImageUrl) {
this.frontImageUrl = frontImageUrl;
}
public String getBackImageUrl() {
return this.backImageUrl;
}
public void setBackImageUrl(String backImageUrl) {
this.backImageUrl = backImageUrl;
}
public String getName() {
return this.name;
}
public void setName(String name) {
this.name = name;
}
public String getNumber() {
return this.number;
}
public void setNumber(String number) {
this.number = number;
}
public String getAddress() {
return this.address;
}
public void setAddress(String address) {
this.address = address;
}
public String getBirth() {
return this.birth;
}
public void setBirth(String birth) {
this.birth = birth;
}
public String getSex() {
return this.sex;
}
public void setSex(String sex) {
this.sex = sex;
}
public String getNationality() {
return this.nationality;
}
public void setNationality(String nationality) {
this.nationality = nationality;
}
public String getAuthority() {
return this.authority;
}
public void setAuthority(String authority) {
this.authority = authority;
}
public String getStartDate() {
return this.startDate;
}
public void setStartDate(String startDate) {
this.startDate = startDate;
}
public String getEndDate() {
return this.endDate;
}
public void setEndDate(String endDate) {
this.endDate = endDate;
}
}
}
}
@Override
public DescribeVerifyRecordsResponse getInstance(UnmarshallerContext context) {
return DescribeVerifyRecordsResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cloudauth-v5/1.0.5/com/aliyuncs/v5/cloudauth/model
|
java-sources/com/aliyun/aliyun-java-sdk-cloudauth-v5/1.0.5/com/aliyuncs/v5/cloudauth/model/v20190307/DescribeVerifyResultRequest.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.cloudauth.model.v20190307;
import com.aliyuncs.v5.RpcAcsRequest;
import com.aliyuncs.v5.http.MethodType;
import com.aliyuncs.v5.cloudauth.Endpoint;
/**
* @author auto create
* @version
*/
public class DescribeVerifyResultRequest extends RpcAcsRequest<DescribeVerifyResultResponse> {
private String bizType;
private String bizId;
public DescribeVerifyResultRequest() {
super("Cloudauth", "2019-03-07", "DescribeVerifyResult");
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 getBizType() {
return this.bizType;
}
public void setBizType(String bizType) {
this.bizType = bizType;
if(bizType != null){
putQueryParameter("BizType", bizType);
}
}
public String getBizId() {
return this.bizId;
}
public void setBizId(String bizId) {
this.bizId = bizId;
if(bizId != null){
putQueryParameter("BizId", bizId);
}
}
@Override
public Class<DescribeVerifyResultResponse> getResponseClass() {
return DescribeVerifyResultResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cloudauth-v5/1.0.5/com/aliyuncs/v5/cloudauth/model
|
java-sources/com/aliyun/aliyun-java-sdk-cloudauth-v5/1.0.5/com/aliyuncs/v5/cloudauth/model/v20190307/DescribeVerifyResultResponse.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.cloudauth.model.v20190307;
import java.util.List;
import com.aliyuncs.v5.AcsResponse;
import com.aliyuncs.v5.cloudauth.transform.v20190307.DescribeVerifyResultResponseUnmarshaller;
import com.aliyuncs.v5.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class DescribeVerifyResultResponse extends AcsResponse {
private String requestId;
private Integer verifyStatus;
private Float authorityComparisionScore;
private Float faceComparisonScore;
private Float idCardFaceComparisonScore;
private Material material;
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public Integer getVerifyStatus() {
return this.verifyStatus;
}
public void setVerifyStatus(Integer verifyStatus) {
this.verifyStatus = verifyStatus;
}
public Float getAuthorityComparisionScore() {
return this.authorityComparisionScore;
}
public void setAuthorityComparisionScore(Float authorityComparisionScore) {
this.authorityComparisionScore = authorityComparisionScore;
}
public Float getFaceComparisonScore() {
return this.faceComparisonScore;
}
public void setFaceComparisonScore(Float faceComparisonScore) {
this.faceComparisonScore = faceComparisonScore;
}
public Float getIdCardFaceComparisonScore() {
return this.idCardFaceComparisonScore;
}
public void setIdCardFaceComparisonScore(Float idCardFaceComparisonScore) {
this.idCardFaceComparisonScore = idCardFaceComparisonScore;
}
public Material getMaterial() {
return this.material;
}
public void setMaterial(Material material) {
this.material = material;
}
public static class Material {
private String faceImageUrl;
private String idCardName;
private String idCardNumber;
private String faceQuality;
private String faceGlobalUrl;
private Boolean faceMask;
private List<String> videoUrls;
private IdCardInfo idCardInfo;
public String getFaceImageUrl() {
return this.faceImageUrl;
}
public void setFaceImageUrl(String faceImageUrl) {
this.faceImageUrl = faceImageUrl;
}
public String getIdCardName() {
return this.idCardName;
}
public void setIdCardName(String idCardName) {
this.idCardName = idCardName;
}
public String getIdCardNumber() {
return this.idCardNumber;
}
public void setIdCardNumber(String idCardNumber) {
this.idCardNumber = idCardNumber;
}
public String getFaceQuality() {
return this.faceQuality;
}
public void setFaceQuality(String faceQuality) {
this.faceQuality = faceQuality;
}
public String getFaceGlobalUrl() {
return this.faceGlobalUrl;
}
public void setFaceGlobalUrl(String faceGlobalUrl) {
this.faceGlobalUrl = faceGlobalUrl;
}
public Boolean getFaceMask() {
return this.faceMask;
}
public void setFaceMask(Boolean faceMask) {
this.faceMask = faceMask;
}
public List<String> getVideoUrls() {
return this.videoUrls;
}
public void setVideoUrls(List<String> videoUrls) {
this.videoUrls = videoUrls;
}
public IdCardInfo getIdCardInfo() {
return this.idCardInfo;
}
public void setIdCardInfo(IdCardInfo idCardInfo) {
this.idCardInfo = idCardInfo;
}
public static class IdCardInfo {
private String number;
private String address;
private String nationality;
private String endDate;
private String frontImageUrl;
private String authority;
private String sex;
private String name;
private String birth;
private String backImageUrl;
private String startDate;
public String getNumber() {
return this.number;
}
public void setNumber(String number) {
this.number = number;
}
public String getAddress() {
return this.address;
}
public void setAddress(String address) {
this.address = address;
}
public String getNationality() {
return this.nationality;
}
public void setNationality(String nationality) {
this.nationality = nationality;
}
public String getEndDate() {
return this.endDate;
}
public void setEndDate(String endDate) {
this.endDate = endDate;
}
public String getFrontImageUrl() {
return this.frontImageUrl;
}
public void setFrontImageUrl(String frontImageUrl) {
this.frontImageUrl = frontImageUrl;
}
public String getAuthority() {
return this.authority;
}
public void setAuthority(String authority) {
this.authority = authority;
}
public String getSex() {
return this.sex;
}
public void setSex(String sex) {
this.sex = sex;
}
public String getName() {
return this.name;
}
public void setName(String name) {
this.name = name;
}
public String getBirth() {
return this.birth;
}
public void setBirth(String birth) {
this.birth = birth;
}
public String getBackImageUrl() {
return this.backImageUrl;
}
public void setBackImageUrl(String backImageUrl) {
this.backImageUrl = backImageUrl;
}
public String getStartDate() {
return this.startDate;
}
public void setStartDate(String startDate) {
this.startDate = startDate;
}
}
}
@Override
public DescribeVerifyResultResponse getInstance(UnmarshallerContext context) {
return DescribeVerifyResultResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cloudauth-v5/1.0.5/com/aliyuncs/v5/cloudauth/model
|
java-sources/com/aliyun/aliyun-java-sdk-cloudauth-v5/1.0.5/com/aliyuncs/v5/cloudauth/model/v20190307/DescribeVerifySDKRequest.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.cloudauth.model.v20190307;
import com.aliyuncs.v5.RpcAcsRequest;
import com.aliyuncs.v5.http.MethodType;
import com.aliyuncs.v5.cloudauth.Endpoint;
/**
* @author auto create
* @version
*/
public class DescribeVerifySDKRequest extends RpcAcsRequest<DescribeVerifySDKResponse> {
private String taskId;
public DescribeVerifySDKRequest() {
super("Cloudauth", "2019-03-07", "DescribeVerifySDK");
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 getTaskId() {
return this.taskId;
}
public void setTaskId(String taskId) {
this.taskId = taskId;
if(taskId != null){
putQueryParameter("TaskId", taskId);
}
}
@Override
public Class<DescribeVerifySDKResponse> getResponseClass() {
return DescribeVerifySDKResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cloudauth-v5/1.0.5/com/aliyuncs/v5/cloudauth/model
|
java-sources/com/aliyun/aliyun-java-sdk-cloudauth-v5/1.0.5/com/aliyuncs/v5/cloudauth/model/v20190307/DescribeVerifySDKResponse.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.cloudauth.model.v20190307;
import com.aliyuncs.v5.AcsResponse;
import com.aliyuncs.v5.cloudauth.transform.v20190307.DescribeVerifySDKResponseUnmarshaller;
import com.aliyuncs.v5.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class DescribeVerifySDKResponse extends AcsResponse {
private String requestId;
private String sdkUrl;
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public String getSdkUrl() {
return this.sdkUrl;
}
public void setSdkUrl(String sdkUrl) {
this.sdkUrl = sdkUrl;
}
@Override
public DescribeVerifySDKResponse getInstance(UnmarshallerContext context) {
return DescribeVerifySDKResponseUnmarshaller.unmarshall(this, context);
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cloudauth-v5/1.0.5/com/aliyuncs/v5/cloudauth/model
|
java-sources/com/aliyun/aliyun-java-sdk-cloudauth-v5/1.0.5/com/aliyuncs/v5/cloudauth/model/v20190307/DescribeVerifySettingRequest.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.cloudauth.model.v20190307;
import com.aliyuncs.v5.RpcAcsRequest;
import com.aliyuncs.v5.http.MethodType;
import com.aliyuncs.v5.cloudauth.Endpoint;
/**
* @author auto create
* @version
*/
public class DescribeVerifySettingRequest extends RpcAcsRequest<DescribeVerifySettingResponse> {
public DescribeVerifySettingRequest() {
super("Cloudauth", "2019-03-07", "DescribeVerifySetting");
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<DescribeVerifySettingResponse> getResponseClass() {
return DescribeVerifySettingResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cloudauth-v5/1.0.5/com/aliyuncs/v5/cloudauth/model
|
java-sources/com/aliyun/aliyun-java-sdk-cloudauth-v5/1.0.5/com/aliyuncs/v5/cloudauth/model/v20190307/DescribeVerifySettingResponse.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.cloudauth.model.v20190307;
import java.util.List;
import com.aliyuncs.v5.AcsResponse;
import com.aliyuncs.v5.cloudauth.transform.v20190307.DescribeVerifySettingResponseUnmarshaller;
import com.aliyuncs.v5.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class DescribeVerifySettingResponse extends AcsResponse {
private String requestId;
private List<VerifySetting> verifySettingList;
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public List<VerifySetting> getVerifySettingList() {
return this.verifySettingList;
}
public void setVerifySettingList(List<VerifySetting> verifySettingList) {
this.verifySettingList = verifySettingList;
}
public static class VerifySetting {
private String bizType;
private String bizName;
private String solution;
private List<String> stepList;
public String getBizType() {
return this.bizType;
}
public void setBizType(String bizType) {
this.bizType = bizType;
}
public String getBizName() {
return this.bizName;
}
public void setBizName(String bizName) {
this.bizName = bizName;
}
public String getSolution() {
return this.solution;
}
public void setSolution(String solution) {
this.solution = solution;
}
public List<String> getStepList() {
return this.stepList;
}
public void setStepList(List<String> stepList) {
this.stepList = stepList;
}
}
@Override
public DescribeVerifySettingResponse getInstance(UnmarshallerContext context) {
return DescribeVerifySettingResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cloudauth-v5/1.0.5/com/aliyuncs/v5/cloudauth/model
|
java-sources/com/aliyun/aliyun-java-sdk-cloudauth-v5/1.0.5/com/aliyuncs/v5/cloudauth/model/v20190307/DescribeVerifyTokenRequest.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.cloudauth.model.v20190307;
import com.aliyuncs.v5.RpcAcsRequest;
import com.aliyuncs.v5.http.MethodType;
import com.aliyuncs.v5.cloudauth.Endpoint;
/**
* @author auto create
* @version
*/
public class DescribeVerifyTokenRequest extends RpcAcsRequest<DescribeVerifyTokenResponse> {
private String faceRetainedImageUrl;
private String userId;
private String callbackSeed;
private String userIp;
private String idCardBackImageUrl;
private String idCardNumber;
private String idCardFrontImageUrl;
private String bizType;
private String passedRedirectUrl;
private Long userRegistTime;
private String bizId;
private String name;
private String userPhoneNumber;
private String callbackUrl;
private String failedRedirectUrl;
public DescribeVerifyTokenRequest() {
super("Cloudauth", "2019-03-07", "DescribeVerifyToken");
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 getFaceRetainedImageUrl() {
return this.faceRetainedImageUrl;
}
public void setFaceRetainedImageUrl(String faceRetainedImageUrl) {
this.faceRetainedImageUrl = faceRetainedImageUrl;
if(faceRetainedImageUrl != null){
putQueryParameter("FaceRetainedImageUrl", faceRetainedImageUrl);
}
}
public String getUserId() {
return this.userId;
}
public void setUserId(String userId) {
this.userId = userId;
if(userId != null){
putQueryParameter("UserId", userId);
}
}
public String getCallbackSeed() {
return this.callbackSeed;
}
public void setCallbackSeed(String callbackSeed) {
this.callbackSeed = callbackSeed;
if(callbackSeed != null){
putQueryParameter("CallbackSeed", callbackSeed);
}
}
public String getUserIp() {
return this.userIp;
}
public void setUserIp(String userIp) {
this.userIp = userIp;
if(userIp != null){
putQueryParameter("UserIp", userIp);
}
}
public String getIdCardBackImageUrl() {
return this.idCardBackImageUrl;
}
public void setIdCardBackImageUrl(String idCardBackImageUrl) {
this.idCardBackImageUrl = idCardBackImageUrl;
if(idCardBackImageUrl != null){
putQueryParameter("IdCardBackImageUrl", idCardBackImageUrl);
}
}
public String getIdCardNumber() {
return this.idCardNumber;
}
public void setIdCardNumber(String idCardNumber) {
this.idCardNumber = idCardNumber;
if(idCardNumber != null){
putQueryParameter("IdCardNumber", idCardNumber);
}
}
public String getIdCardFrontImageUrl() {
return this.idCardFrontImageUrl;
}
public void setIdCardFrontImageUrl(String idCardFrontImageUrl) {
this.idCardFrontImageUrl = idCardFrontImageUrl;
if(idCardFrontImageUrl != null){
putQueryParameter("IdCardFrontImageUrl", idCardFrontImageUrl);
}
}
public String getBizType() {
return this.bizType;
}
public void setBizType(String bizType) {
this.bizType = bizType;
if(bizType != null){
putQueryParameter("BizType", bizType);
}
}
public String getPassedRedirectUrl() {
return this.passedRedirectUrl;
}
public void setPassedRedirectUrl(String passedRedirectUrl) {
this.passedRedirectUrl = passedRedirectUrl;
if(passedRedirectUrl != null){
putQueryParameter("PassedRedirectUrl", passedRedirectUrl);
}
}
public Long getUserRegistTime() {
return this.userRegistTime;
}
public void setUserRegistTime(Long userRegistTime) {
this.userRegistTime = userRegistTime;
if(userRegistTime != null){
putQueryParameter("UserRegistTime", userRegistTime.toString());
}
}
public String getBizId() {
return this.bizId;
}
public void setBizId(String bizId) {
this.bizId = bizId;
if(bizId != null){
putQueryParameter("BizId", bizId);
}
}
public String getName() {
return this.name;
}
public void setName(String name) {
this.name = name;
if(name != null){
putQueryParameter("Name", name);
}
}
public String getUserPhoneNumber() {
return this.userPhoneNumber;
}
public void setUserPhoneNumber(String userPhoneNumber) {
this.userPhoneNumber = userPhoneNumber;
if(userPhoneNumber != null){
putQueryParameter("UserPhoneNumber", userPhoneNumber);
}
}
public String getCallbackUrl() {
return this.callbackUrl;
}
public void setCallbackUrl(String callbackUrl) {
this.callbackUrl = callbackUrl;
if(callbackUrl != null){
putQueryParameter("CallbackUrl", callbackUrl);
}
}
public String getFailedRedirectUrl() {
return this.failedRedirectUrl;
}
public void setFailedRedirectUrl(String failedRedirectUrl) {
this.failedRedirectUrl = failedRedirectUrl;
if(failedRedirectUrl != null){
putQueryParameter("FailedRedirectUrl", failedRedirectUrl);
}
}
@Override
public Class<DescribeVerifyTokenResponse> getResponseClass() {
return DescribeVerifyTokenResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cloudauth-v5/1.0.5/com/aliyuncs/v5/cloudauth/model
|
java-sources/com/aliyun/aliyun-java-sdk-cloudauth-v5/1.0.5/com/aliyuncs/v5/cloudauth/model/v20190307/DescribeVerifyTokenResponse.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.cloudauth.model.v20190307;
import com.aliyuncs.v5.AcsResponse;
import com.aliyuncs.v5.cloudauth.transform.v20190307.DescribeVerifyTokenResponseUnmarshaller;
import com.aliyuncs.v5.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class DescribeVerifyTokenResponse extends AcsResponse {
private String requestId;
private String verifyPageUrl;
private String verifyToken;
private OssUploadToken ossUploadToken;
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public String getVerifyPageUrl() {
return this.verifyPageUrl;
}
public void setVerifyPageUrl(String verifyPageUrl) {
this.verifyPageUrl = verifyPageUrl;
}
public String getVerifyToken() {
return this.verifyToken;
}
public void setVerifyToken(String verifyToken) {
this.verifyToken = verifyToken;
}
public OssUploadToken getOssUploadToken() {
return this.ossUploadToken;
}
public void setOssUploadToken(OssUploadToken ossUploadToken) {
this.ossUploadToken = ossUploadToken;
}
public static class OssUploadToken {
private String bucket;
private String endPoint;
private String path;
private Long expired;
private String secret;
private String key;
private String token;
public String getBucket() {
return this.bucket;
}
public void setBucket(String bucket) {
this.bucket = bucket;
}
public String getEndPoint() {
return this.endPoint;
}
public void setEndPoint(String endPoint) {
this.endPoint = endPoint;
}
public String getPath() {
return this.path;
}
public void setPath(String path) {
this.path = path;
}
public Long getExpired() {
return this.expired;
}
public void setExpired(Long expired) {
this.expired = expired;
}
public String getSecret() {
return this.secret;
}
public void setSecret(String secret) {
this.secret = secret;
}
public String getKey() {
return this.key;
}
public void setKey(String key) {
this.key = key;
}
public String getToken() {
return this.token;
}
public void setToken(String token) {
this.token = token;
}
}
@Override
public DescribeVerifyTokenResponse getInstance(UnmarshallerContext context) {
return DescribeVerifyTokenResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cloudauth-v5/1.0.5/com/aliyuncs/v5/cloudauth/model
|
java-sources/com/aliyun/aliyun-java-sdk-cloudauth-v5/1.0.5/com/aliyuncs/v5/cloudauth/model/v20190307/DescribeVerifyUsageRequest.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.cloudauth.model.v20190307;
import com.aliyuncs.v5.RpcAcsRequest;
import com.aliyuncs.v5.http.MethodType;
import com.aliyuncs.v5.cloudauth.Endpoint;
/**
* @author auto create
* @version
*/
public class DescribeVerifyUsageRequest extends RpcAcsRequest<DescribeVerifyUsageResponse> {
private String startDate;
private String bizType;
private String endDate;
public DescribeVerifyUsageRequest() {
super("Cloudauth", "2019-03-07", "DescribeVerifyUsage");
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 getStartDate() {
return this.startDate;
}
public void setStartDate(String startDate) {
this.startDate = startDate;
if(startDate != null){
putQueryParameter("StartDate", startDate);
}
}
public String getBizType() {
return this.bizType;
}
public void setBizType(String bizType) {
this.bizType = bizType;
if(bizType != null){
putQueryParameter("BizType", bizType);
}
}
public String getEndDate() {
return this.endDate;
}
public void setEndDate(String endDate) {
this.endDate = endDate;
if(endDate != null){
putQueryParameter("EndDate", endDate);
}
}
@Override
public Class<DescribeVerifyUsageResponse> getResponseClass() {
return DescribeVerifyUsageResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cloudauth-v5/1.0.5/com/aliyuncs/v5/cloudauth/model
|
java-sources/com/aliyun/aliyun-java-sdk-cloudauth-v5/1.0.5/com/aliyuncs/v5/cloudauth/model/v20190307/DescribeVerifyUsageResponse.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.cloudauth.model.v20190307;
import java.util.List;
import com.aliyuncs.v5.AcsResponse;
import com.aliyuncs.v5.cloudauth.transform.v20190307.DescribeVerifyUsageResponseUnmarshaller;
import com.aliyuncs.v5.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class DescribeVerifyUsageResponse extends AcsResponse {
private String requestId;
private Integer totalCount;
private List<VerifyUsage> verifyUsageList;
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public Integer getTotalCount() {
return this.totalCount;
}
public void setTotalCount(Integer totalCount) {
this.totalCount = totalCount;
}
public List<VerifyUsage> getVerifyUsageList() {
return this.verifyUsageList;
}
public void setVerifyUsageList(List<VerifyUsage> verifyUsageList) {
this.verifyUsageList = verifyUsageList;
}
public static class VerifyUsage {
private String bizType;
private String date;
private Long totalCount;
private Long passCount;
private Long failCount;
public String getBizType() {
return this.bizType;
}
public void setBizType(String bizType) {
this.bizType = bizType;
}
public String getDate() {
return this.date;
}
public void setDate(String date) {
this.date = date;
}
public Long getTotalCount() {
return this.totalCount;
}
public void setTotalCount(Long totalCount) {
this.totalCount = totalCount;
}
public Long getPassCount() {
return this.passCount;
}
public void setPassCount(Long passCount) {
this.passCount = passCount;
}
public Long getFailCount() {
return this.failCount;
}
public void setFailCount(Long failCount) {
this.failCount = failCount;
}
}
@Override
public DescribeVerifyUsageResponse getInstance(UnmarshallerContext context) {
return DescribeVerifyUsageResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cloudauth-v5/1.0.5/com/aliyuncs/v5/cloudauth/model
|
java-sources/com/aliyun/aliyun-java-sdk-cloudauth-v5/1.0.5/com/aliyuncs/v5/cloudauth/model/v20190307/DescribeWhitelistRequest.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.cloudauth.model.v20190307;
import com.aliyuncs.v5.RpcAcsRequest;
import com.aliyuncs.v5.http.MethodType;
import com.aliyuncs.v5.cloudauth.Endpoint;
/**
* @author auto create
* @version
*/
public class DescribeWhitelistRequest extends RpcAcsRequest<DescribeWhitelistResponse> {
private String validEndDate;
private String valid;
private String sourceIp;
private Integer pageSize;
private String lang;
private Integer currentPage;
private String bizType;
private String idCardNum;
private String bizId;
private String validStartDate;
public DescribeWhitelistRequest() {
super("Cloudauth", "2019-03-07", "DescribeWhitelist");
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 getValidEndDate() {
return this.validEndDate;
}
public void setValidEndDate(String validEndDate) {
this.validEndDate = validEndDate;
if(validEndDate != null){
putQueryParameter("ValidEndDate", validEndDate);
}
}
public String getValid() {
return this.valid;
}
public void setValid(String valid) {
this.valid = valid;
if(valid != null){
putQueryParameter("Valid", valid);
}
}
public String getSourceIp() {
return this.sourceIp;
}
public void setSourceIp(String sourceIp) {
this.sourceIp = sourceIp;
if(sourceIp != null){
putQueryParameter("SourceIp", sourceIp);
}
}
public Integer getPageSize() {
return this.pageSize;
}
public void setPageSize(Integer pageSize) {
this.pageSize = pageSize;
if(pageSize != null){
putQueryParameter("PageSize", pageSize.toString());
}
}
public String getLang() {
return this.lang;
}
public void setLang(String lang) {
this.lang = lang;
if(lang != null){
putQueryParameter("Lang", lang);
}
}
public Integer getCurrentPage() {
return this.currentPage;
}
public void setCurrentPage(Integer currentPage) {
this.currentPage = currentPage;
if(currentPage != null){
putQueryParameter("CurrentPage", currentPage.toString());
}
}
public String getBizType() {
return this.bizType;
}
public void setBizType(String bizType) {
this.bizType = bizType;
if(bizType != null){
putQueryParameter("BizType", bizType);
}
}
public String getIdCardNum() {
return this.idCardNum;
}
public void setIdCardNum(String idCardNum) {
this.idCardNum = idCardNum;
if(idCardNum != null){
putQueryParameter("IdCardNum", idCardNum);
}
}
public String getBizId() {
return this.bizId;
}
public void setBizId(String bizId) {
this.bizId = bizId;
if(bizId != null){
putQueryParameter("BizId", bizId);
}
}
public String getValidStartDate() {
return this.validStartDate;
}
public void setValidStartDate(String validStartDate) {
this.validStartDate = validStartDate;
if(validStartDate != null){
putQueryParameter("ValidStartDate", validStartDate);
}
}
@Override
public Class<DescribeWhitelistResponse> getResponseClass() {
return DescribeWhitelistResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cloudauth-v5/1.0.5/com/aliyuncs/v5/cloudauth/model
|
java-sources/com/aliyun/aliyun-java-sdk-cloudauth-v5/1.0.5/com/aliyuncs/v5/cloudauth/model/v20190307/DescribeWhitelistResponse.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.cloudauth.model.v20190307;
import java.util.List;
import com.aliyuncs.v5.AcsResponse;
import com.aliyuncs.v5.cloudauth.transform.v20190307.DescribeWhitelistResponseUnmarshaller;
import com.aliyuncs.v5.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class DescribeWhitelistResponse extends AcsResponse {
private String requestId;
private Integer totalCount;
private Integer currentPage;
private Integer pageSize;
private List<Item> items;
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public Integer getTotalCount() {
return this.totalCount;
}
public void setTotalCount(Integer totalCount) {
this.totalCount = totalCount;
}
public Integer getCurrentPage() {
return this.currentPage;
}
public void setCurrentPage(Integer currentPage) {
this.currentPage = currentPage;
}
public Integer getPageSize() {
return this.pageSize;
}
public void setPageSize(Integer pageSize) {
this.pageSize = pageSize;
}
public List<Item> getItems() {
return this.items;
}
public void setItems(List<Item> items) {
this.items = items;
}
public static class Item {
private Long id;
private Long uid;
private String bizType;
private Long startDate;
private Long endDate;
private String idCardNum;
private String bizId;
private Integer valid;
private Long gmtCreate;
private Long gmtModified;
public Long getId() {
return this.id;
}
public void setId(Long id) {
this.id = id;
}
public Long getUid() {
return this.uid;
}
public void setUid(Long uid) {
this.uid = uid;
}
public String getBizType() {
return this.bizType;
}
public void setBizType(String bizType) {
this.bizType = bizType;
}
public Long getStartDate() {
return this.startDate;
}
public void setStartDate(Long startDate) {
this.startDate = startDate;
}
public Long getEndDate() {
return this.endDate;
}
public void setEndDate(Long endDate) {
this.endDate = endDate;
}
public String getIdCardNum() {
return this.idCardNum;
}
public void setIdCardNum(String idCardNum) {
this.idCardNum = idCardNum;
}
public String getBizId() {
return this.bizId;
}
public void setBizId(String bizId) {
this.bizId = bizId;
}
public Integer getValid() {
return this.valid;
}
public void setValid(Integer valid) {
this.valid = valid;
}
public Long getGmtCreate() {
return this.gmtCreate;
}
public void setGmtCreate(Long gmtCreate) {
this.gmtCreate = gmtCreate;
}
public Long getGmtModified() {
return this.gmtModified;
}
public void setGmtModified(Long gmtModified) {
this.gmtModified = gmtModified;
}
}
@Override
public DescribeWhitelistResponse getInstance(UnmarshallerContext context) {
return DescribeWhitelistResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cloudauth-v5/1.0.5/com/aliyuncs/v5/cloudauth/model
|
java-sources/com/aliyun/aliyun-java-sdk-cloudauth-v5/1.0.5/com/aliyuncs/v5/cloudauth/model/v20190307/DescribeWhitelistSettingRequest.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.cloudauth.model.v20190307;
import com.aliyuncs.v5.RpcAcsRequest;
import com.aliyuncs.v5.http.MethodType;
import com.aliyuncs.v5.cloudauth.Endpoint;
/**
* @author auto create
* @version
*/
public class DescribeWhitelistSettingRequest extends RpcAcsRequest<DescribeWhitelistSettingResponse> {
private Long validEndDate;
private String certifyId;
private String certNo;
private String sourceIp;
private Integer pageSize;
private String lang;
private Integer currentPage;
private String serviceCode;
private Long sceneId;
private Long validStartDate;
private String status;
public DescribeWhitelistSettingRequest() {
super("Cloudauth", "2019-03-07", "DescribeWhitelistSetting");
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 getValidEndDate() {
return this.validEndDate;
}
public void setValidEndDate(Long validEndDate) {
this.validEndDate = validEndDate;
if(validEndDate != null){
putQueryParameter("ValidEndDate", validEndDate.toString());
}
}
public String getCertifyId() {
return this.certifyId;
}
public void setCertifyId(String certifyId) {
this.certifyId = certifyId;
if(certifyId != null){
putQueryParameter("CertifyId", certifyId);
}
}
public String getCertNo() {
return this.certNo;
}
public void setCertNo(String certNo) {
this.certNo = certNo;
if(certNo != null){
putQueryParameter("CertNo", certNo);
}
}
public String getSourceIp() {
return this.sourceIp;
}
public void setSourceIp(String sourceIp) {
this.sourceIp = sourceIp;
if(sourceIp != null){
putQueryParameter("SourceIp", sourceIp);
}
}
public Integer getPageSize() {
return this.pageSize;
}
public void setPageSize(Integer pageSize) {
this.pageSize = pageSize;
if(pageSize != null){
putQueryParameter("PageSize", pageSize.toString());
}
}
public String getLang() {
return this.lang;
}
public void setLang(String lang) {
this.lang = lang;
if(lang != null){
putQueryParameter("Lang", lang);
}
}
public Integer getCurrentPage() {
return this.currentPage;
}
public void setCurrentPage(Integer currentPage) {
this.currentPage = currentPage;
if(currentPage != null){
putQueryParameter("CurrentPage", currentPage.toString());
}
}
public String getServiceCode() {
return this.serviceCode;
}
public void setServiceCode(String serviceCode) {
this.serviceCode = serviceCode;
if(serviceCode != null){
putQueryParameter("ServiceCode", serviceCode);
}
}
public Long getSceneId() {
return this.sceneId;
}
public void setSceneId(Long sceneId) {
this.sceneId = sceneId;
if(sceneId != null){
putQueryParameter("SceneId", sceneId.toString());
}
}
public Long getValidStartDate() {
return this.validStartDate;
}
public void setValidStartDate(Long validStartDate) {
this.validStartDate = validStartDate;
if(validStartDate != null){
putQueryParameter("ValidStartDate", validStartDate.toString());
}
}
public String getStatus() {
return this.status;
}
public void setStatus(String status) {
this.status = status;
if(status != null){
putQueryParameter("Status", status);
}
}
@Override
public Class<DescribeWhitelistSettingResponse> getResponseClass() {
return DescribeWhitelistSettingResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cloudauth-v5/1.0.5/com/aliyuncs/v5/cloudauth/model
|
java-sources/com/aliyun/aliyun-java-sdk-cloudauth-v5/1.0.5/com/aliyuncs/v5/cloudauth/model/v20190307/DescribeWhitelistSettingResponse.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.cloudauth.model.v20190307;
import java.util.List;
import com.aliyuncs.v5.AcsResponse;
import com.aliyuncs.v5.cloudauth.transform.v20190307.DescribeWhitelistSettingResponseUnmarshaller;
import com.aliyuncs.v5.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class DescribeWhitelistSettingResponse extends AcsResponse {
private String requestId;
private Integer totalCount;
private Integer currentPage;
private Integer pageSize;
private List<Item> items;
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public Integer getTotalCount() {
return this.totalCount;
}
public void setTotalCount(Integer totalCount) {
this.totalCount = totalCount;
}
public Integer getCurrentPage() {
return this.currentPage;
}
public void setCurrentPage(Integer currentPage) {
this.currentPage = currentPage;
}
public Integer getPageSize() {
return this.pageSize;
}
public void setPageSize(Integer pageSize) {
this.pageSize = pageSize;
}
public List<Item> getItems() {
return this.items;
}
public void setItems(List<Item> items) {
this.items = items;
}
public static class Item {
private Long id;
private Long sceneId;
private String validStartDate;
private String validEndDate;
private String certNo;
private String certifyId;
private String status;
private String gmtCreate;
private String gmtModified;
public Long getId() {
return this.id;
}
public void setId(Long id) {
this.id = id;
}
public Long getSceneId() {
return this.sceneId;
}
public void setSceneId(Long sceneId) {
this.sceneId = sceneId;
}
public String getValidStartDate() {
return this.validStartDate;
}
public void setValidStartDate(String validStartDate) {
this.validStartDate = validStartDate;
}
public String getValidEndDate() {
return this.validEndDate;
}
public void setValidEndDate(String validEndDate) {
this.validEndDate = validEndDate;
}
public String getCertNo() {
return this.certNo;
}
public void setCertNo(String certNo) {
this.certNo = certNo;
}
public String getCertifyId() {
return this.certifyId;
}
public void setCertifyId(String certifyId) {
this.certifyId = certifyId;
}
public String getStatus() {
return this.status;
}
public void setStatus(String status) {
this.status = status;
}
public String getGmtCreate() {
return this.gmtCreate;
}
public void setGmtCreate(String gmtCreate) {
this.gmtCreate = gmtCreate;
}
public String getGmtModified() {
return this.gmtModified;
}
public void setGmtModified(String gmtModified) {
this.gmtModified = gmtModified;
}
}
@Override
public DescribeWhitelistSettingResponse getInstance(UnmarshallerContext context) {
return DescribeWhitelistSettingResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cloudauth-v5/1.0.5/com/aliyuncs/v5/cloudauth/model
|
java-sources/com/aliyun/aliyun-java-sdk-cloudauth-v5/1.0.5/com/aliyuncs/v5/cloudauth/model/v20190307/DetectFaceAttributesRequest.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.cloudauth.model.v20190307;
import com.aliyuncs.v5.RpcAcsRequest;
import com.aliyuncs.v5.http.MethodType;
import com.aliyuncs.v5.cloudauth.Endpoint;
/**
* @author auto create
* @version
*/
public class DetectFaceAttributesRequest extends RpcAcsRequest<DetectFaceAttributesResponse> {
private String bizType;
private String materialValue;
public DetectFaceAttributesRequest() {
super("Cloudauth", "2019-03-07", "DetectFaceAttributes");
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 getBizType() {
return this.bizType;
}
public void setBizType(String bizType) {
this.bizType = bizType;
if(bizType != null){
putBodyParameter("BizType", bizType);
}
}
public String getMaterialValue() {
return this.materialValue;
}
public void setMaterialValue(String materialValue) {
this.materialValue = materialValue;
if(materialValue != null){
putBodyParameter("MaterialValue", materialValue);
}
}
@Override
public Class<DetectFaceAttributesResponse> getResponseClass() {
return DetectFaceAttributesResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cloudauth-v5/1.0.5/com/aliyuncs/v5/cloudauth/model
|
java-sources/com/aliyun/aliyun-java-sdk-cloudauth-v5/1.0.5/com/aliyuncs/v5/cloudauth/model/v20190307/DetectFaceAttributesResponse.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.cloudauth.model.v20190307;
import java.util.List;
import com.aliyuncs.v5.AcsResponse;
import com.aliyuncs.v5.cloudauth.transform.v20190307.DetectFaceAttributesResponseUnmarshaller;
import com.aliyuncs.v5.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class DetectFaceAttributesResponse extends AcsResponse {
private String requestId;
private Boolean success;
private String code;
private String message;
private Data data;
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 getCode() {
return this.code;
}
public void setCode(String code) {
this.code = code;
}
public String getMessage() {
return this.message;
}
public void setMessage(String message) {
this.message = message;
}
public Data getData() {
return this.data;
}
public void setData(Data data) {
this.data = data;
}
public static class Data {
private Integer imgWidth;
private Integer imgHeight;
private List<FaceAttributesDetectInfo> faceInfos;
public Integer getImgWidth() {
return this.imgWidth;
}
public void setImgWidth(Integer imgWidth) {
this.imgWidth = imgWidth;
}
public Integer getImgHeight() {
return this.imgHeight;
}
public void setImgHeight(Integer imgHeight) {
this.imgHeight = imgHeight;
}
public List<FaceAttributesDetectInfo> getFaceInfos() {
return this.faceInfos;
}
public void setFaceInfos(List<FaceAttributesDetectInfo> faceInfos) {
this.faceInfos = faceInfos;
}
public static class FaceAttributesDetectInfo {
private FaceRect faceRect;
private FaceAttributes faceAttributes;
public FaceRect getFaceRect() {
return this.faceRect;
}
public void setFaceRect(FaceRect faceRect) {
this.faceRect = faceRect;
}
public FaceAttributes getFaceAttributes() {
return this.faceAttributes;
}
public void setFaceAttributes(FaceAttributes faceAttributes) {
this.faceAttributes = faceAttributes;
}
public static class FaceRect {
private Integer top;
private Integer left;
private Integer width;
private Integer height;
public Integer getTop() {
return this.top;
}
public void setTop(Integer top) {
this.top = top;
}
public Integer getLeft() {
return this.left;
}
public void setLeft(Integer left) {
this.left = left;
}
public Integer getWidth() {
return this.width;
}
public void setWidth(Integer width) {
this.width = width;
}
public Integer getHeight() {
return this.height;
}
public void setHeight(Integer height) {
this.height = height;
}
}
public static class FaceAttributes {
private Integer age;
private String glasses;
private String facetype;
private Float blur;
private Float facequal;
private Integer integrity;
private String respirator;
private Float appearanceScore;
private Gender gender;
private Smiling smiling;
private Headpose headpose;
public Integer getAge() {
return this.age;
}
public void setAge(Integer age) {
this.age = age;
}
public String getGlasses() {
return this.glasses;
}
public void setGlasses(String glasses) {
this.glasses = glasses;
}
public String getFacetype() {
return this.facetype;
}
public void setFacetype(String facetype) {
this.facetype = facetype;
}
public Float getBlur() {
return this.blur;
}
public void setBlur(Float blur) {
this.blur = blur;
}
public Float getFacequal() {
return this.facequal;
}
public void setFacequal(Float facequal) {
this.facequal = facequal;
}
public Integer getIntegrity() {
return this.integrity;
}
public void setIntegrity(Integer integrity) {
this.integrity = integrity;
}
public String getRespirator() {
return this.respirator;
}
public void setRespirator(String respirator) {
this.respirator = respirator;
}
public Float getAppearanceScore() {
return this.appearanceScore;
}
public void setAppearanceScore(Float appearanceScore) {
this.appearanceScore = appearanceScore;
}
public Gender getGender() {
return this.gender;
}
public void setGender(Gender gender) {
this.gender = gender;
}
public Smiling getSmiling() {
return this.smiling;
}
public void setSmiling(Smiling smiling) {
this.smiling = smiling;
}
public Headpose getHeadpose() {
return this.headpose;
}
public void setHeadpose(Headpose headpose) {
this.headpose = headpose;
}
public static class Gender {
private Float score;
private String value;
public Float getScore() {
return this.score;
}
public void setScore(Float score) {
this.score = score;
}
public String getValue() {
return this.value;
}
public void setValue(String value) {
this.value = value;
}
}
public static class Smiling {
private Float value;
private Float threshold;
public Float getValue() {
return this.value;
}
public void setValue(Float value) {
this.value = value;
}
public Float getThreshold() {
return this.threshold;
}
public void setThreshold(Float threshold) {
this.threshold = threshold;
}
}
public static class Headpose {
private Float pitchAngle;
private Float rollAngle;
private Float yawAngle;
public Float getPitchAngle() {
return this.pitchAngle;
}
public void setPitchAngle(Float pitchAngle) {
this.pitchAngle = pitchAngle;
}
public Float getRollAngle() {
return this.rollAngle;
}
public void setRollAngle(Float rollAngle) {
this.rollAngle = rollAngle;
}
public Float getYawAngle() {
return this.yawAngle;
}
public void setYawAngle(Float yawAngle) {
this.yawAngle = yawAngle;
}
}
}
}
}
@Override
public DetectFaceAttributesResponse getInstance(UnmarshallerContext context) {
return DetectFaceAttributesResponseUnmarshaller.unmarshall(this, context);
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cloudauth-v5/1.0.5/com/aliyuncs/v5/cloudauth/model
|
java-sources/com/aliyun/aliyun-java-sdk-cloudauth-v5/1.0.5/com/aliyuncs/v5/cloudauth/model/v20190307/InitDeviceRequest.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.cloudauth.model.v20190307;
import com.aliyuncs.v5.RpcAcsRequest;
import com.aliyuncs.v5.http.MethodType;
import com.aliyuncs.v5.cloudauth.Endpoint;
/**
* @author auto create
* @version
*/
public class InitDeviceRequest extends RpcAcsRequest<InitDeviceResponse> {
private String channel;
private String bizData;
private String merchant;
private String appVersion;
private String deviceToken;
private String certifyId;
private String webUmidToken;
private String outerOrderNo;
private String produceNode;
private String uaToken;
private String productName;
private String certifyPrincipal;
private String metaInfo;
public InitDeviceRequest() {
super("Cloudauth", "2019-03-07", "InitDevice");
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 getChannel() {
return this.channel;
}
public void setChannel(String channel) {
this.channel = channel;
if(channel != null){
putQueryParameter("Channel", channel);
}
}
public String getBizData() {
return this.bizData;
}
public void setBizData(String bizData) {
this.bizData = bizData;
if(bizData != null){
putQueryParameter("BizData", bizData);
}
}
public String getMerchant() {
return this.merchant;
}
public void setMerchant(String merchant) {
this.merchant = merchant;
if(merchant != null){
putQueryParameter("Merchant", merchant);
}
}
public String getAppVersion() {
return this.appVersion;
}
public void setAppVersion(String appVersion) {
this.appVersion = appVersion;
if(appVersion != null){
putQueryParameter("AppVersion", appVersion);
}
}
public String getDeviceToken() {
return this.deviceToken;
}
public void setDeviceToken(String deviceToken) {
this.deviceToken = deviceToken;
if(deviceToken != null){
putQueryParameter("DeviceToken", deviceToken);
}
}
public String getCertifyId() {
return this.certifyId;
}
public void setCertifyId(String certifyId) {
this.certifyId = certifyId;
if(certifyId != null){
putQueryParameter("CertifyId", certifyId);
}
}
public String getWebUmidToken() {
return this.webUmidToken;
}
public void setWebUmidToken(String webUmidToken) {
this.webUmidToken = webUmidToken;
if(webUmidToken != null){
putBodyParameter("WebUmidToken", webUmidToken);
}
}
public String getOuterOrderNo() {
return this.outerOrderNo;
}
public void setOuterOrderNo(String outerOrderNo) {
this.outerOrderNo = outerOrderNo;
if(outerOrderNo != null){
putQueryParameter("OuterOrderNo", outerOrderNo);
}
}
public String getProduceNode() {
return this.produceNode;
}
public void setProduceNode(String produceNode) {
this.produceNode = produceNode;
if(produceNode != null){
putQueryParameter("ProduceNode", produceNode);
}
}
public String getUaToken() {
return this.uaToken;
}
public void setUaToken(String uaToken) {
this.uaToken = uaToken;
if(uaToken != null){
putBodyParameter("UaToken", uaToken);
}
}
public String getProductName() {
return this.productName;
}
public void setProductName(String productName) {
this.productName = productName;
if(productName != null){
putQueryParameter("ProductName", productName);
}
}
public String getCertifyPrincipal() {
return this.certifyPrincipal;
}
public void setCertifyPrincipal(String certifyPrincipal) {
this.certifyPrincipal = certifyPrincipal;
if(certifyPrincipal != null){
putQueryParameter("CertifyPrincipal", certifyPrincipal);
}
}
public String getMetaInfo() {
return this.metaInfo;
}
public void setMetaInfo(String metaInfo) {
this.metaInfo = metaInfo;
if(metaInfo != null){
putQueryParameter("MetaInfo", metaInfo);
}
}
@Override
public Class<InitDeviceResponse> getResponseClass() {
return InitDeviceResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cloudauth-v5/1.0.5/com/aliyuncs/v5/cloudauth/model
|
java-sources/com/aliyun/aliyun-java-sdk-cloudauth-v5/1.0.5/com/aliyuncs/v5/cloudauth/model/v20190307/InitDeviceResponse.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.cloudauth.model.v20190307;
import com.aliyuncs.v5.AcsResponse;
import com.aliyuncs.v5.cloudauth.transform.v20190307.InitDeviceResponseUnmarshaller;
import com.aliyuncs.v5.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class InitDeviceResponse extends AcsResponse {
private String requestId;
private String message;
private String code;
private ResultObject resultObject;
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 String getCode() {
return this.code;
}
public void setCode(String code) {
this.code = code;
}
public ResultObject getResultObject() {
return this.resultObject;
}
public void setResultObject(ResultObject resultObject) {
this.resultObject = resultObject;
}
public static class ResultObject {
private String certifyId;
private String protocol;
private String extParams;
private String retCode;
private String retCodeSub;
private String retMessageSub;
private String message;
private String ossEndPoint;
private String accessKeyId;
private String accessKeySecret;
private String securityToken;
private String bucketName;
private String fileNamePrefix;
private String fileName;
private String presignedUrl;
public String getCertifyId() {
return this.certifyId;
}
public void setCertifyId(String certifyId) {
this.certifyId = certifyId;
}
public String getBizProtocol() {
return this.protocol;
}
public void setBizProtocol(String protocol) {
this.protocol = protocol;
}
public String getExtParams() {
return this.extParams;
}
public void setExtParams(String extParams) {
this.extParams = extParams;
}
public String getRetCode() {
return this.retCode;
}
public void setRetCode(String retCode) {
this.retCode = retCode;
}
public String getRetCodeSub() {
return this.retCodeSub;
}
public void setRetCodeSub(String retCodeSub) {
this.retCodeSub = retCodeSub;
}
public String getRetMessageSub() {
return this.retMessageSub;
}
public void setRetMessageSub(String retMessageSub) {
this.retMessageSub = retMessageSub;
}
public String getMessage() {
return this.message;
}
public void setMessage(String message) {
this.message = message;
}
public String getOssEndPoint() {
return this.ossEndPoint;
}
public void setOssEndPoint(String ossEndPoint) {
this.ossEndPoint = ossEndPoint;
}
public String getAccessKeyId() {
return this.accessKeyId;
}
public void setAccessKeyId(String accessKeyId) {
this.accessKeyId = accessKeyId;
}
public String getAccessKeySecret() {
return this.accessKeySecret;
}
public void setAccessKeySecret(String accessKeySecret) {
this.accessKeySecret = accessKeySecret;
}
public String getSecurityToken() {
return this.securityToken;
}
public void setSecurityToken(String securityToken) {
this.securityToken = securityToken;
}
public String getBucketName() {
return this.bucketName;
}
public void setBucketName(String bucketName) {
this.bucketName = bucketName;
}
public String getFileNamePrefix() {
return this.fileNamePrefix;
}
public void setFileNamePrefix(String fileNamePrefix) {
this.fileNamePrefix = fileNamePrefix;
}
public String getFileName() {
return this.fileName;
}
public void setFileName(String fileName) {
this.fileName = fileName;
}
public String getPresignedUrl() {
return this.presignedUrl;
}
public void setPresignedUrl(String presignedUrl) {
this.presignedUrl = presignedUrl;
}
}
@Override
public InitDeviceResponse getInstance(UnmarshallerContext context) {
return InitDeviceResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cloudauth-v5/1.0.5/com/aliyuncs/v5/cloudauth/model
|
java-sources/com/aliyun/aliyun-java-sdk-cloudauth-v5/1.0.5/com/aliyuncs/v5/cloudauth/model/v20190307/InitFaceVerifyRequest.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.cloudauth.model.v20190307;
import com.aliyuncs.v5.RpcAcsRequest;
import com.aliyuncs.v5.http.MethodType;
import com.aliyuncs.v5.cloudauth.Endpoint;
/**
* @author auto create
* @version
*/
public class InitFaceVerifyRequest extends RpcAcsRequest<InitFaceVerifyResponse> {
private String productCode;
private String faceContrastPicture;
private String userId;
private String certifyId;
private String certNo;
private String outerOrderNo;
private String certType;
private String faceContrastPictureUrl;
private String model;
private String metaInfo;
private String ossObjectName;
private String certName;
private String ip;
private String mobile;
private Long sceneId;
private String ossBucketName;
private String callbackToken;
private String returnUrl;
private String callbackUrl;
private String crop;
public InitFaceVerifyRequest() {
super("Cloudauth", "2019-03-07", "InitFaceVerify");
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 getProductCode() {
return this.productCode;
}
public void setProductCode(String productCode) {
this.productCode = productCode;
if(productCode != null){
putQueryParameter("ProductCode", productCode);
}
}
public String getFaceContrastPicture() {
return this.faceContrastPicture;
}
public void setFaceContrastPicture(String faceContrastPicture) {
this.faceContrastPicture = faceContrastPicture;
if(faceContrastPicture != null){
putBodyParameter("FaceContrastPicture", faceContrastPicture);
}
}
public String getUserId() {
return this.userId;
}
public void setUserId(String userId) {
this.userId = userId;
if(userId != null){
putQueryParameter("UserId", userId);
}
}
public String getCertifyId() {
return this.certifyId;
}
public void setCertifyId(String certifyId) {
this.certifyId = certifyId;
if(certifyId != null){
putQueryParameter("CertifyId", certifyId);
}
}
public String getCertNo() {
return this.certNo;
}
public void setCertNo(String certNo) {
this.certNo = certNo;
if(certNo != null){
putQueryParameter("CertNo", certNo);
}
}
public String getOuterOrderNo() {
return this.outerOrderNo;
}
public void setOuterOrderNo(String outerOrderNo) {
this.outerOrderNo = outerOrderNo;
if(outerOrderNo != null){
putQueryParameter("OuterOrderNo", outerOrderNo);
}
}
public String getCertType() {
return this.certType;
}
public void setCertType(String certType) {
this.certType = certType;
if(certType != null){
putQueryParameter("CertType", certType);
}
}
public String getFaceContrastPictureUrl() {
return this.faceContrastPictureUrl;
}
public void setFaceContrastPictureUrl(String faceContrastPictureUrl) {
this.faceContrastPictureUrl = faceContrastPictureUrl;
if(faceContrastPictureUrl != null){
putQueryParameter("FaceContrastPictureUrl", faceContrastPictureUrl);
}
}
public String getModel() {
return this.model;
}
public void setModel(String model) {
this.model = model;
if(model != null){
putBodyParameter("Model", model);
}
}
public String getMetaInfo() {
return this.metaInfo;
}
public void setMetaInfo(String metaInfo) {
this.metaInfo = metaInfo;
if(metaInfo != null){
putQueryParameter("MetaInfo", metaInfo);
}
}
public String getOssObjectName() {
return this.ossObjectName;
}
public void setOssObjectName(String ossObjectName) {
this.ossObjectName = ossObjectName;
if(ossObjectName != null){
putQueryParameter("OssObjectName", ossObjectName);
}
}
public String getCertName() {
return this.certName;
}
public void setCertName(String certName) {
this.certName = certName;
if(certName != null){
putQueryParameter("CertName", certName);
}
}
public String getIp() {
return this.ip;
}
public void setIp(String ip) {
this.ip = ip;
if(ip != null){
putQueryParameter("Ip", ip);
}
}
public String getMobile() {
return this.mobile;
}
public void setMobile(String mobile) {
this.mobile = mobile;
if(mobile != null){
putQueryParameter("Mobile", mobile);
}
}
public Long getSceneId() {
return this.sceneId;
}
public void setSceneId(Long sceneId) {
this.sceneId = sceneId;
if(sceneId != null){
putQueryParameter("SceneId", sceneId.toString());
}
}
public String getOssBucketName() {
return this.ossBucketName;
}
public void setOssBucketName(String ossBucketName) {
this.ossBucketName = ossBucketName;
if(ossBucketName != null){
putQueryParameter("OssBucketName", ossBucketName);
}
}
public String getCallbackToken() {
return this.callbackToken;
}
public void setCallbackToken(String callbackToken) {
this.callbackToken = callbackToken;
if(callbackToken != null){
putQueryParameter("CallbackToken", callbackToken);
}
}
public String getReturnUrl() {
return this.returnUrl;
}
public void setReturnUrl(String returnUrl) {
this.returnUrl = returnUrl;
if(returnUrl != null){
putQueryParameter("ReturnUrl", returnUrl);
}
}
public String getCallbackUrl() {
return this.callbackUrl;
}
public void setCallbackUrl(String callbackUrl) {
this.callbackUrl = callbackUrl;
if(callbackUrl != null){
putQueryParameter("CallbackUrl", callbackUrl);
}
}
public String getCrop() {
return this.crop;
}
public void setCrop(String crop) {
this.crop = crop;
if(crop != null){
putBodyParameter("Crop", crop);
}
}
@Override
public Class<InitFaceVerifyResponse> getResponseClass() {
return InitFaceVerifyResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cloudauth-v5/1.0.5/com/aliyuncs/v5/cloudauth/model
|
java-sources/com/aliyun/aliyun-java-sdk-cloudauth-v5/1.0.5/com/aliyuncs/v5/cloudauth/model/v20190307/InitFaceVerifyResponse.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.cloudauth.model.v20190307;
import com.aliyuncs.v5.AcsResponse;
import com.aliyuncs.v5.cloudauth.transform.v20190307.InitFaceVerifyResponseUnmarshaller;
import com.aliyuncs.v5.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class InitFaceVerifyResponse extends AcsResponse {
private String code;
private String message;
private String requestId;
private ResultObject resultObject;
public String getCode() {
return this.code;
}
public void setCode(String code) {
this.code = code;
}
public String getMessage() {
return this.message;
}
public void setMessage(String message) {
this.message = message;
}
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public ResultObject getResultObject() {
return this.resultObject;
}
public void setResultObject(ResultObject resultObject) {
this.resultObject = resultObject;
}
public static class ResultObject {
private String certifyId;
private String certifyUrl;
public String getCertifyId() {
return this.certifyId;
}
public void setCertifyId(String certifyId) {
this.certifyId = certifyId;
}
public String getCertifyUrl() {
return this.certifyUrl;
}
public void setCertifyUrl(String certifyUrl) {
this.certifyUrl = certifyUrl;
}
}
@Override
public InitFaceVerifyResponse getInstance(UnmarshallerContext context) {
return InitFaceVerifyResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cloudauth-v5/1.0.5/com/aliyuncs/v5/cloudauth/model
|
java-sources/com/aliyun/aliyun-java-sdk-cloudauth-v5/1.0.5/com/aliyuncs/v5/cloudauth/model/v20190307/LivenessFaceVerifyRequest.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.cloudauth.model.v20190307;
import com.aliyuncs.v5.RpcAcsRequest;
import com.aliyuncs.v5.http.MethodType;
import com.aliyuncs.v5.cloudauth.Endpoint;
/**
* @author auto create
* @version
*/
public class LivenessFaceVerifyRequest extends RpcAcsRequest<LivenessFaceVerifyResponse> {
private String productCode;
private String ossObjectName;
private String faceContrastPicture;
private String ip;
private String mobile;
private String deviceToken;
private String userId;
private String certifyId;
private String outerOrderNo;
private String faceContrastPictureUrl;
private Long sceneId;
private String ossBucketName;
private String model;
private String crop;
public LivenessFaceVerifyRequest() {
super("Cloudauth", "2019-03-07", "LivenessFaceVerify");
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 getProductCode() {
return this.productCode;
}
public void setProductCode(String productCode) {
this.productCode = productCode;
if(productCode != null){
putBodyParameter("ProductCode", productCode);
}
}
public String getOssObjectName() {
return this.ossObjectName;
}
public void setOssObjectName(String ossObjectName) {
this.ossObjectName = ossObjectName;
if(ossObjectName != null){
putBodyParameter("OssObjectName", ossObjectName);
}
}
public String getFaceContrastPicture() {
return this.faceContrastPicture;
}
public void setFaceContrastPicture(String faceContrastPicture) {
this.faceContrastPicture = faceContrastPicture;
if(faceContrastPicture != null){
putBodyParameter("FaceContrastPicture", faceContrastPicture);
}
}
public String getIp() {
return this.ip;
}
public void setIp(String ip) {
this.ip = ip;
if(ip != null){
putBodyParameter("Ip", ip);
}
}
public String getMobile() {
return this.mobile;
}
public void setMobile(String mobile) {
this.mobile = mobile;
if(mobile != null){
putBodyParameter("Mobile", mobile);
}
}
public String getDeviceToken() {
return this.deviceToken;
}
public void setDeviceToken(String deviceToken) {
this.deviceToken = deviceToken;
if(deviceToken != null){
putBodyParameter("DeviceToken", deviceToken);
}
}
public String getUserId() {
return this.userId;
}
public void setUserId(String userId) {
this.userId = userId;
if(userId != null){
putBodyParameter("UserId", userId);
}
}
public String getCertifyId() {
return this.certifyId;
}
public void setCertifyId(String certifyId) {
this.certifyId = certifyId;
if(certifyId != null){
putBodyParameter("CertifyId", certifyId);
}
}
public String getOuterOrderNo() {
return this.outerOrderNo;
}
public void setOuterOrderNo(String outerOrderNo) {
this.outerOrderNo = outerOrderNo;
if(outerOrderNo != null){
putBodyParameter("OuterOrderNo", outerOrderNo);
}
}
public String getFaceContrastPictureUrl() {
return this.faceContrastPictureUrl;
}
public void setFaceContrastPictureUrl(String faceContrastPictureUrl) {
this.faceContrastPictureUrl = faceContrastPictureUrl;
if(faceContrastPictureUrl != null){
putBodyParameter("FaceContrastPictureUrl", faceContrastPictureUrl);
}
}
public Long getSceneId() {
return this.sceneId;
}
public void setSceneId(Long sceneId) {
this.sceneId = sceneId;
if(sceneId != null){
putBodyParameter("SceneId", sceneId.toString());
}
}
public String getOssBucketName() {
return this.ossBucketName;
}
public void setOssBucketName(String ossBucketName) {
this.ossBucketName = ossBucketName;
if(ossBucketName != null){
putBodyParameter("OssBucketName", ossBucketName);
}
}
public String getModel() {
return this.model;
}
public void setModel(String model) {
this.model = model;
if(model != null){
putQueryParameter("Model", model);
}
}
public String getCrop() {
return this.crop;
}
public void setCrop(String crop) {
this.crop = crop;
if(crop != null){
putBodyParameter("Crop", crop);
}
}
@Override
public Class<LivenessFaceVerifyResponse> getResponseClass() {
return LivenessFaceVerifyResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cloudauth-v5/1.0.5/com/aliyuncs/v5/cloudauth/model
|
java-sources/com/aliyun/aliyun-java-sdk-cloudauth-v5/1.0.5/com/aliyuncs/v5/cloudauth/model/v20190307/LivenessFaceVerifyResponse.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.cloudauth.model.v20190307;
import com.aliyuncs.v5.AcsResponse;
import com.aliyuncs.v5.cloudauth.transform.v20190307.LivenessFaceVerifyResponseUnmarshaller;
import com.aliyuncs.v5.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class LivenessFaceVerifyResponse extends AcsResponse {
private String code;
private String message;
private String requestId;
private ResultObject resultObject;
public String getCode() {
return this.code;
}
public void setCode(String code) {
this.code = code;
}
public String getMessage() {
return this.message;
}
public void setMessage(String message) {
this.message = message;
}
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public ResultObject getResultObject() {
return this.resultObject;
}
public void setResultObject(ResultObject resultObject) {
this.resultObject = resultObject;
}
public static class ResultObject {
private String certifyId;
private String subCode;
private String materialInfo;
private String passed;
public String getCertifyId() {
return this.certifyId;
}
public void setCertifyId(String certifyId) {
this.certifyId = certifyId;
}
public String getSubCode() {
return this.subCode;
}
public void setSubCode(String subCode) {
this.subCode = subCode;
}
public String getMaterialInfo() {
return this.materialInfo;
}
public void setMaterialInfo(String materialInfo) {
this.materialInfo = materialInfo;
}
public String getPassed() {
return this.passed;
}
public void setPassed(String passed) {
this.passed = passed;
}
}
@Override
public LivenessFaceVerifyResponse getInstance(UnmarshallerContext context) {
return LivenessFaceVerifyResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cloudauth-v5/1.0.5/com/aliyuncs/v5/cloudauth/model
|
java-sources/com/aliyun/aliyun-java-sdk-cloudauth-v5/1.0.5/com/aliyuncs/v5/cloudauth/model/v20190307/ModifyDeviceInfoRequest.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.cloudauth.model.v20190307;
import com.aliyuncs.v5.RpcAcsRequest;
import com.aliyuncs.v5.http.MethodType;
import com.aliyuncs.v5.cloudauth.Endpoint;
/**
* @author auto create
* @version
*/
public class ModifyDeviceInfoRequest extends RpcAcsRequest<ModifyDeviceInfoResponse> {
private String userDeviceId;
private String duration;
private String expiredDay;
private String deviceId;
private String bizType;
public ModifyDeviceInfoRequest() {
super("Cloudauth", "2019-03-07", "ModifyDeviceInfo");
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 getUserDeviceId() {
return this.userDeviceId;
}
public void setUserDeviceId(String userDeviceId) {
this.userDeviceId = userDeviceId;
if(userDeviceId != null){
putQueryParameter("UserDeviceId", userDeviceId);
}
}
public String getDuration() {
return this.duration;
}
public void setDuration(String duration) {
this.duration = duration;
if(duration != null){
putQueryParameter("Duration", duration);
}
}
public String getExpiredDay() {
return this.expiredDay;
}
public void setExpiredDay(String expiredDay) {
this.expiredDay = expiredDay;
if(expiredDay != null){
putQueryParameter("ExpiredDay", expiredDay);
}
}
public String getDeviceId() {
return this.deviceId;
}
public void setDeviceId(String deviceId) {
this.deviceId = deviceId;
if(deviceId != null){
putQueryParameter("DeviceId", deviceId);
}
}
public String getBizType() {
return this.bizType;
}
public void setBizType(String bizType) {
this.bizType = bizType;
if(bizType != null){
putQueryParameter("BizType", bizType);
}
}
@Override
public Class<ModifyDeviceInfoResponse> getResponseClass() {
return ModifyDeviceInfoResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cloudauth-v5/1.0.5/com/aliyuncs/v5/cloudauth/model
|
java-sources/com/aliyun/aliyun-java-sdk-cloudauth-v5/1.0.5/com/aliyuncs/v5/cloudauth/model/v20190307/ModifyDeviceInfoResponse.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.cloudauth.model.v20190307;
import com.aliyuncs.v5.AcsResponse;
import com.aliyuncs.v5.cloudauth.transform.v20190307.ModifyDeviceInfoResponseUnmarshaller;
import com.aliyuncs.v5.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class ModifyDeviceInfoResponse extends AcsResponse {
private String requestId;
private String deviceId;
private String userDeviceId;
private String bizType;
private String beginDay;
private String expiredDay;
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public String getDeviceId() {
return this.deviceId;
}
public void setDeviceId(String deviceId) {
this.deviceId = deviceId;
}
public String getUserDeviceId() {
return this.userDeviceId;
}
public void setUserDeviceId(String userDeviceId) {
this.userDeviceId = userDeviceId;
}
public String getBizType() {
return this.bizType;
}
public void setBizType(String bizType) {
this.bizType = bizType;
}
public String getBeginDay() {
return this.beginDay;
}
public void setBeginDay(String beginDay) {
this.beginDay = beginDay;
}
public String getExpiredDay() {
return this.expiredDay;
}
public void setExpiredDay(String expiredDay) {
this.expiredDay = expiredDay;
}
@Override
public ModifyDeviceInfoResponse getInstance(UnmarshallerContext context) {
return ModifyDeviceInfoResponseUnmarshaller.unmarshall(this, context);
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cloudauth-v5/1.0.5/com/aliyuncs/v5/cloudauth/model
|
java-sources/com/aliyun/aliyun-java-sdk-cloudauth-v5/1.0.5/com/aliyuncs/v5/cloudauth/model/v20190307/UpdateAppPackageRequest.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.cloudauth.model.v20190307;
import com.aliyuncs.v5.RpcAcsRequest;
import com.aliyuncs.v5.http.MethodType;
import com.aliyuncs.v5.cloudauth.Endpoint;
/**
* @author auto create
* @version
*/
public class UpdateAppPackageRequest extends RpcAcsRequest<UpdateAppPackageResponse> {
private Boolean debug;
private String platform;
private String packageUrl;
private Long id;
public UpdateAppPackageRequest() {
super("Cloudauth", "2019-03-07", "UpdateAppPackage");
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 Boolean getDebug() {
return this.debug;
}
public void setDebug(Boolean debug) {
this.debug = debug;
if(debug != null){
putQueryParameter("Debug", debug.toString());
}
}
public String getPlatform() {
return this.platform;
}
public void setPlatform(String platform) {
this.platform = platform;
if(platform != null){
putQueryParameter("Platform", platform);
}
}
public String getPackageUrl() {
return this.packageUrl;
}
public void setPackageUrl(String packageUrl) {
this.packageUrl = packageUrl;
if(packageUrl != null){
putQueryParameter("PackageUrl", packageUrl);
}
}
public Long getId() {
return this.id;
}
public void setId(Long id) {
this.id = id;
if(id != null){
putQueryParameter("Id", id.toString());
}
}
@Override
public Class<UpdateAppPackageResponse> getResponseClass() {
return UpdateAppPackageResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cloudauth-v5/1.0.5/com/aliyuncs/v5/cloudauth/model
|
java-sources/com/aliyun/aliyun-java-sdk-cloudauth-v5/1.0.5/com/aliyuncs/v5/cloudauth/model/v20190307/UpdateAppPackageResponse.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.cloudauth.model.v20190307;
import com.aliyuncs.v5.AcsResponse;
import com.aliyuncs.v5.cloudauth.transform.v20190307.UpdateAppPackageResponseUnmarshaller;
import com.aliyuncs.v5.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class UpdateAppPackageResponse extends AcsResponse {
private String requestId;
private String taskId;
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public String getTaskId() {
return this.taskId;
}
public void setTaskId(String taskId) {
this.taskId = taskId;
}
@Override
public UpdateAppPackageResponse getInstance(UnmarshallerContext context) {
return UpdateAppPackageResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cloudauth-v5/1.0.5/com/aliyuncs/v5/cloudauth/model
|
java-sources/com/aliyun/aliyun-java-sdk-cloudauth-v5/1.0.5/com/aliyuncs/v5/cloudauth/model/v20190307/UpdateFaceConfigRequest.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.cloudauth.model.v20190307;
import com.aliyuncs.v5.RpcAcsRequest;
import com.aliyuncs.v5.http.MethodType;
import com.aliyuncs.v5.cloudauth.Endpoint;
/**
* @author auto create
* @version
*/
public class UpdateFaceConfigRequest extends RpcAcsRequest<UpdateFaceConfigResponse> {
private String bizName;
private String bizType;
private String sourceIp;
private String lang;
public UpdateFaceConfigRequest() {
super("Cloudauth", "2019-03-07", "UpdateFaceConfig");
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 getBizName() {
return this.bizName;
}
public void setBizName(String bizName) {
this.bizName = bizName;
if(bizName != null){
putQueryParameter("BizName", bizName);
}
}
public String getBizType() {
return this.bizType;
}
public void setBizType(String bizType) {
this.bizType = bizType;
if(bizType != null){
putQueryParameter("BizType", bizType);
}
}
public String getSourceIp() {
return this.sourceIp;
}
public void setSourceIp(String sourceIp) {
this.sourceIp = sourceIp;
if(sourceIp != null){
putQueryParameter("SourceIp", sourceIp);
}
}
public String getLang() {
return this.lang;
}
public void setLang(String lang) {
this.lang = lang;
if(lang != null){
putQueryParameter("Lang", lang);
}
}
@Override
public Class<UpdateFaceConfigResponse> getResponseClass() {
return UpdateFaceConfigResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cloudauth-v5/1.0.5/com/aliyuncs/v5/cloudauth/model
|
java-sources/com/aliyun/aliyun-java-sdk-cloudauth-v5/1.0.5/com/aliyuncs/v5/cloudauth/model/v20190307/UpdateFaceConfigResponse.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.cloudauth.model.v20190307;
import com.aliyuncs.v5.AcsResponse;
import com.aliyuncs.v5.cloudauth.transform.v20190307.UpdateFaceConfigResponseUnmarshaller;
import com.aliyuncs.v5.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class UpdateFaceConfigResponse extends AcsResponse {
private String requestId;
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
@Override
public UpdateFaceConfigResponse getInstance(UnmarshallerContext context) {
return UpdateFaceConfigResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cloudauth-v5/1.0.5/com/aliyuncs/v5/cloudauth/model
|
java-sources/com/aliyun/aliyun-java-sdk-cloudauth-v5/1.0.5/com/aliyuncs/v5/cloudauth/model/v20190307/UpdateVerifySettingRequest.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.cloudauth.model.v20190307;
import com.aliyuncs.v5.RpcAcsRequest;
import com.aliyuncs.v5.http.MethodType;
import com.aliyuncs.v5.cloudauth.Endpoint;
/**
* @author auto create
* @version
*/
public class UpdateVerifySettingRequest extends RpcAcsRequest<UpdateVerifySettingResponse> {
private Boolean guideStep;
private Boolean resultStep;
private String solution;
private String bizName;
private String bizType;
private Boolean privacyStep;
public UpdateVerifySettingRequest() {
super("Cloudauth", "2019-03-07", "UpdateVerifySetting");
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 Boolean getGuideStep() {
return this.guideStep;
}
public void setGuideStep(Boolean guideStep) {
this.guideStep = guideStep;
if(guideStep != null){
putQueryParameter("GuideStep", guideStep.toString());
}
}
public Boolean getResultStep() {
return this.resultStep;
}
public void setResultStep(Boolean resultStep) {
this.resultStep = resultStep;
if(resultStep != null){
putQueryParameter("ResultStep", resultStep.toString());
}
}
public String getSolution() {
return this.solution;
}
public void setSolution(String solution) {
this.solution = solution;
if(solution != null){
putQueryParameter("Solution", solution);
}
}
public String getBizName() {
return this.bizName;
}
public void setBizName(String bizName) {
this.bizName = bizName;
if(bizName != null){
putQueryParameter("BizName", bizName);
}
}
public String getBizType() {
return this.bizType;
}
public void setBizType(String bizType) {
this.bizType = bizType;
if(bizType != null){
putQueryParameter("BizType", bizType);
}
}
public Boolean getPrivacyStep() {
return this.privacyStep;
}
public void setPrivacyStep(Boolean privacyStep) {
this.privacyStep = privacyStep;
if(privacyStep != null){
putQueryParameter("PrivacyStep", privacyStep.toString());
}
}
@Override
public Class<UpdateVerifySettingResponse> getResponseClass() {
return UpdateVerifySettingResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cloudauth-v5/1.0.5/com/aliyuncs/v5/cloudauth/model
|
java-sources/com/aliyun/aliyun-java-sdk-cloudauth-v5/1.0.5/com/aliyuncs/v5/cloudauth/model/v20190307/UpdateVerifySettingResponse.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.cloudauth.model.v20190307;
import java.util.List;
import com.aliyuncs.v5.AcsResponse;
import com.aliyuncs.v5.cloudauth.transform.v20190307.UpdateVerifySettingResponseUnmarshaller;
import com.aliyuncs.v5.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class UpdateVerifySettingResponse extends AcsResponse {
private String requestId;
private String bizType;
private String bizName;
private String solution;
private List<String> stepList;
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public String getBizType() {
return this.bizType;
}
public void setBizType(String bizType) {
this.bizType = bizType;
}
public String getBizName() {
return this.bizName;
}
public void setBizName(String bizName) {
this.bizName = bizName;
}
public String getSolution() {
return this.solution;
}
public void setSolution(String solution) {
this.solution = solution;
}
public List<String> getStepList() {
return this.stepList;
}
public void setStepList(List<String> stepList) {
this.stepList = stepList;
}
@Override
public UpdateVerifySettingResponse getInstance(UnmarshallerContext context) {
return UpdateVerifySettingResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cloudauth-v5/1.0.5/com/aliyuncs/v5/cloudauth/model
|
java-sources/com/aliyun/aliyun-java-sdk-cloudauth-v5/1.0.5/com/aliyuncs/v5/cloudauth/model/v20190307/VerifyDeviceRequest.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.cloudauth.model.v20190307;
import com.aliyuncs.v5.RpcAcsRequest;
import com.aliyuncs.v5.http.MethodType;
import com.aliyuncs.v5.cloudauth.Endpoint;
/**
* @author auto create
* @version
*/
public class VerifyDeviceRequest extends RpcAcsRequest<VerifyDeviceResponse> {
private String extInfo;
private String certifyData;
private String appVersion;
private String deviceToken;
private String certifyId;
public VerifyDeviceRequest() {
super("Cloudauth", "2019-03-07", "VerifyDevice");
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 getExtInfo() {
return this.extInfo;
}
public void setExtInfo(String extInfo) {
this.extInfo = extInfo;
if(extInfo != null){
putBodyParameter("ExtInfo", extInfo);
}
}
public String getCertifyData() {
return this.certifyData;
}
public void setCertifyData(String certifyData) {
this.certifyData = certifyData;
if(certifyData != null){
putQueryParameter("CertifyData", certifyData);
}
}
public String getAppVersion() {
return this.appVersion;
}
public void setAppVersion(String appVersion) {
this.appVersion = appVersion;
if(appVersion != null){
putQueryParameter("AppVersion", appVersion);
}
}
public String getDeviceToken() {
return this.deviceToken;
}
public void setDeviceToken(String deviceToken) {
this.deviceToken = deviceToken;
if(deviceToken != null){
putBodyParameter("DeviceToken", deviceToken);
}
}
public String getCertifyId() {
return this.certifyId;
}
public void setCertifyId(String certifyId) {
this.certifyId = certifyId;
if(certifyId != null){
putQueryParameter("CertifyId", certifyId);
}
}
@Override
public Class<VerifyDeviceResponse> getResponseClass() {
return VerifyDeviceResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cloudauth-v5/1.0.5/com/aliyuncs/v5/cloudauth/model
|
java-sources/com/aliyun/aliyun-java-sdk-cloudauth-v5/1.0.5/com/aliyuncs/v5/cloudauth/model/v20190307/VerifyDeviceResponse.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.cloudauth.model.v20190307;
import com.aliyuncs.v5.AcsResponse;
import com.aliyuncs.v5.cloudauth.transform.v20190307.VerifyDeviceResponseUnmarshaller;
import com.aliyuncs.v5.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class VerifyDeviceResponse extends AcsResponse {
private String requestId;
private String code;
private String message;
private ResultObject resultObject;
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public String getCode() {
return this.code;
}
public void setCode(String code) {
this.code = code;
}
public String getMessage() {
return this.message;
}
public void setMessage(String message) {
this.message = message;
}
public ResultObject getResultObject() {
return this.resultObject;
}
public void setResultObject(ResultObject resultObject) {
this.resultObject = resultObject;
}
public static class ResultObject {
private String validationRetCode;
private String productRetCode;
private String retCodeSub;
private String retMessageSub;
private String hasNext;
private String extParams;
public String getValidationRetCode() {
return this.validationRetCode;
}
public void setValidationRetCode(String validationRetCode) {
this.validationRetCode = validationRetCode;
}
public String getProductRetCode() {
return this.productRetCode;
}
public void setProductRetCode(String productRetCode) {
this.productRetCode = productRetCode;
}
public String getRetCodeSub() {
return this.retCodeSub;
}
public void setRetCodeSub(String retCodeSub) {
this.retCodeSub = retCodeSub;
}
public String getRetMessageSub() {
return this.retMessageSub;
}
public void setRetMessageSub(String retMessageSub) {
this.retMessageSub = retMessageSub;
}
public String getHasNext() {
return this.hasNext;
}
public void setHasNext(String hasNext) {
this.hasNext = hasNext;
}
public String getExtParams() {
return this.extParams;
}
public void setExtParams(String extParams) {
this.extParams = extParams;
}
}
@Override
public VerifyDeviceResponse getInstance(UnmarshallerContext context) {
return VerifyDeviceResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cloudauth-v5/1.0.5/com/aliyuncs/v5/cloudauth/model
|
java-sources/com/aliyun/aliyun-java-sdk-cloudauth-v5/1.0.5/com/aliyuncs/v5/cloudauth/model/v20190307/VerifyMaterialRequest.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.cloudauth.model.v20190307;
import com.aliyuncs.v5.RpcAcsRequest;
import com.aliyuncs.v5.http.MethodType;
import com.aliyuncs.v5.cloudauth.Endpoint;
/**
* @author auto create
* @version
*/
public class VerifyMaterialRequest extends RpcAcsRequest<VerifyMaterialResponse> {
private String faceImageUrl;
private String userId;
private String idCardBackImageUrl;
private String idCardNumber;
private String idCardFrontImageUrl;
private String bizType;
private String bizId;
private String name;
public VerifyMaterialRequest() {
super("Cloudauth", "2019-03-07", "VerifyMaterial");
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 getFaceImageUrl() {
return this.faceImageUrl;
}
public void setFaceImageUrl(String faceImageUrl) {
this.faceImageUrl = faceImageUrl;
if(faceImageUrl != null){
putQueryParameter("FaceImageUrl", faceImageUrl);
}
}
public String getUserId() {
return this.userId;
}
public void setUserId(String userId) {
this.userId = userId;
if(userId != null){
putQueryParameter("UserId", userId);
}
}
public String getIdCardBackImageUrl() {
return this.idCardBackImageUrl;
}
public void setIdCardBackImageUrl(String idCardBackImageUrl) {
this.idCardBackImageUrl = idCardBackImageUrl;
if(idCardBackImageUrl != null){
putQueryParameter("IdCardBackImageUrl", idCardBackImageUrl);
}
}
public String getIdCardNumber() {
return this.idCardNumber;
}
public void setIdCardNumber(String idCardNumber) {
this.idCardNumber = idCardNumber;
if(idCardNumber != null){
putQueryParameter("IdCardNumber", idCardNumber);
}
}
public String getIdCardFrontImageUrl() {
return this.idCardFrontImageUrl;
}
public void setIdCardFrontImageUrl(String idCardFrontImageUrl) {
this.idCardFrontImageUrl = idCardFrontImageUrl;
if(idCardFrontImageUrl != null){
putQueryParameter("IdCardFrontImageUrl", idCardFrontImageUrl);
}
}
public String getBizType() {
return this.bizType;
}
public void setBizType(String bizType) {
this.bizType = bizType;
if(bizType != null){
putQueryParameter("BizType", bizType);
}
}
public String getBizId() {
return this.bizId;
}
public void setBizId(String bizId) {
this.bizId = bizId;
if(bizId != null){
putQueryParameter("BizId", bizId);
}
}
public String getName() {
return this.name;
}
public void setName(String name) {
this.name = name;
if(name != null){
putQueryParameter("Name", name);
}
}
@Override
public Class<VerifyMaterialResponse> getResponseClass() {
return VerifyMaterialResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cloudauth-v5/1.0.5/com/aliyuncs/v5/cloudauth/model
|
java-sources/com/aliyun/aliyun-java-sdk-cloudauth-v5/1.0.5/com/aliyuncs/v5/cloudauth/model/v20190307/VerifyMaterialResponse.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.cloudauth.model.v20190307;
import com.aliyuncs.v5.AcsResponse;
import com.aliyuncs.v5.cloudauth.transform.v20190307.VerifyMaterialResponseUnmarshaller;
import com.aliyuncs.v5.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class VerifyMaterialResponse extends AcsResponse {
private String requestId;
private String verifyToken;
private Integer verifyStatus;
private Float authorityComparisionScore;
private Float idCardFaceComparisonScore;
private Material material;
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public String getVerifyToken() {
return this.verifyToken;
}
public void setVerifyToken(String verifyToken) {
this.verifyToken = verifyToken;
}
public Integer getVerifyStatus() {
return this.verifyStatus;
}
public void setVerifyStatus(Integer verifyStatus) {
this.verifyStatus = verifyStatus;
}
public Float getAuthorityComparisionScore() {
return this.authorityComparisionScore;
}
public void setAuthorityComparisionScore(Float authorityComparisionScore) {
this.authorityComparisionScore = authorityComparisionScore;
}
public Float getIdCardFaceComparisonScore() {
return this.idCardFaceComparisonScore;
}
public void setIdCardFaceComparisonScore(Float idCardFaceComparisonScore) {
this.idCardFaceComparisonScore = idCardFaceComparisonScore;
}
public Material getMaterial() {
return this.material;
}
public void setMaterial(Material material) {
this.material = material;
}
public static class Material {
private String faceImageUrl;
private String idCardName;
private String idCardNumber;
private String faceQuality;
private String faceGlobalUrl;
private String faceMask;
private IdCardInfo idCardInfo;
public String getFaceImageUrl() {
return this.faceImageUrl;
}
public void setFaceImageUrl(String faceImageUrl) {
this.faceImageUrl = faceImageUrl;
}
public String getIdCardName() {
return this.idCardName;
}
public void setIdCardName(String idCardName) {
this.idCardName = idCardName;
}
public String getIdCardNumber() {
return this.idCardNumber;
}
public void setIdCardNumber(String idCardNumber) {
this.idCardNumber = idCardNumber;
}
public String getFaceQuality() {
return this.faceQuality;
}
public void setFaceQuality(String faceQuality) {
this.faceQuality = faceQuality;
}
public String getFaceGlobalUrl() {
return this.faceGlobalUrl;
}
public void setFaceGlobalUrl(String faceGlobalUrl) {
this.faceGlobalUrl = faceGlobalUrl;
}
public String getFaceMask() {
return this.faceMask;
}
public void setFaceMask(String faceMask) {
this.faceMask = faceMask;
}
public IdCardInfo getIdCardInfo() {
return this.idCardInfo;
}
public void setIdCardInfo(IdCardInfo idCardInfo) {
this.idCardInfo = idCardInfo;
}
public static class IdCardInfo {
private String number;
private String address;
private String nationality;
private String endDate;
private String frontImageUrl;
private String authority;
private String sex;
private String name;
private String birth;
private String backImageUrl;
private String startDate;
public String getNumber() {
return this.number;
}
public void setNumber(String number) {
this.number = number;
}
public String getAddress() {
return this.address;
}
public void setAddress(String address) {
this.address = address;
}
public String getNationality() {
return this.nationality;
}
public void setNationality(String nationality) {
this.nationality = nationality;
}
public String getEndDate() {
return this.endDate;
}
public void setEndDate(String endDate) {
this.endDate = endDate;
}
public String getFrontImageUrl() {
return this.frontImageUrl;
}
public void setFrontImageUrl(String frontImageUrl) {
this.frontImageUrl = frontImageUrl;
}
public String getAuthority() {
return this.authority;
}
public void setAuthority(String authority) {
this.authority = authority;
}
public String getSex() {
return this.sex;
}
public void setSex(String sex) {
this.sex = sex;
}
public String getName() {
return this.name;
}
public void setName(String name) {
this.name = name;
}
public String getBirth() {
return this.birth;
}
public void setBirth(String birth) {
this.birth = birth;
}
public String getBackImageUrl() {
return this.backImageUrl;
}
public void setBackImageUrl(String backImageUrl) {
this.backImageUrl = backImageUrl;
}
public String getStartDate() {
return this.startDate;
}
public void setStartDate(String startDate) {
this.startDate = startDate;
}
}
}
@Override
public VerifyMaterialResponse getInstance(UnmarshallerContext context) {
return VerifyMaterialResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cloudauth-v5/1.0.5/com/aliyuncs/v5/cloudauth/transform
|
java-sources/com/aliyun/aliyun-java-sdk-cloudauth-v5/1.0.5/com/aliyuncs/v5/cloudauth/transform/v20190307/CompareFaceVerifyResponseUnmarshaller.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.cloudauth.transform.v20190307;
import com.aliyuncs.v5.cloudauth.model.v20190307.CompareFaceVerifyResponse;
import com.aliyuncs.v5.cloudauth.model.v20190307.CompareFaceVerifyResponse.ResultObject;
import com.aliyuncs.v5.transform.UnmarshallerContext;
public class CompareFaceVerifyResponseUnmarshaller {
public static CompareFaceVerifyResponse unmarshall(CompareFaceVerifyResponse compareFaceVerifyResponse, UnmarshallerContext _ctx) {
compareFaceVerifyResponse.setRequestId(_ctx.stringValue("CompareFaceVerifyResponse.RequestId"));
compareFaceVerifyResponse.setCode(_ctx.stringValue("CompareFaceVerifyResponse.Code"));
compareFaceVerifyResponse.setMessage(_ctx.stringValue("CompareFaceVerifyResponse.Message"));
ResultObject resultObject = new ResultObject();
resultObject.setCertifyId(_ctx.stringValue("CompareFaceVerifyResponse.ResultObject.CertifyId"));
resultObject.setVerifyScore(_ctx.floatValue("CompareFaceVerifyResponse.ResultObject.VerifyScore"));
resultObject.setPassed(_ctx.stringValue("CompareFaceVerifyResponse.ResultObject.Passed"));
compareFaceVerifyResponse.setResultObject(resultObject);
return compareFaceVerifyResponse;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cloudauth-v5/1.0.5/com/aliyuncs/v5/cloudauth/transform
|
java-sources/com/aliyun/aliyun-java-sdk-cloudauth-v5/1.0.5/com/aliyuncs/v5/cloudauth/transform/v20190307/CompareFacesResponseUnmarshaller.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.cloudauth.transform.v20190307;
import com.aliyuncs.v5.cloudauth.model.v20190307.CompareFacesResponse;
import com.aliyuncs.v5.cloudauth.model.v20190307.CompareFacesResponse.Data;
import com.aliyuncs.v5.transform.UnmarshallerContext;
public class CompareFacesResponseUnmarshaller {
public static CompareFacesResponse unmarshall(CompareFacesResponse compareFacesResponse, UnmarshallerContext _ctx) {
compareFacesResponse.setRequestId(_ctx.stringValue("CompareFacesResponse.RequestId"));
compareFacesResponse.setSuccess(_ctx.booleanValue("CompareFacesResponse.Success"));
compareFacesResponse.setCode(_ctx.stringValue("CompareFacesResponse.Code"));
compareFacesResponse.setMessage(_ctx.stringValue("CompareFacesResponse.Message"));
Data data = new Data();
data.setSimilarityScore(_ctx.floatValue("CompareFacesResponse.Data.SimilarityScore"));
data.setConfidenceThresholds(_ctx.stringValue("CompareFacesResponse.Data.ConfidenceThresholds"));
compareFacesResponse.setData(data);
return compareFacesResponse;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cloudauth-v5/1.0.5/com/aliyuncs/v5/cloudauth/transform
|
java-sources/com/aliyun/aliyun-java-sdk-cloudauth-v5/1.0.5/com/aliyuncs/v5/cloudauth/transform/v20190307/ContrastFaceVerifyResponseUnmarshaller.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.cloudauth.transform.v20190307;
import com.aliyuncs.v5.cloudauth.model.v20190307.ContrastFaceVerifyResponse;
import com.aliyuncs.v5.cloudauth.model.v20190307.ContrastFaceVerifyResponse.ResultObject;
import com.aliyuncs.v5.transform.UnmarshallerContext;
public class ContrastFaceVerifyResponseUnmarshaller {
public static ContrastFaceVerifyResponse unmarshall(ContrastFaceVerifyResponse contrastFaceVerifyResponse, UnmarshallerContext _ctx) {
contrastFaceVerifyResponse.setRequestId(_ctx.stringValue("ContrastFaceVerifyResponse.RequestId"));
contrastFaceVerifyResponse.setCode(_ctx.stringValue("ContrastFaceVerifyResponse.Code"));
contrastFaceVerifyResponse.setMessage(_ctx.stringValue("ContrastFaceVerifyResponse.Message"));
ResultObject resultObject = new ResultObject();
resultObject.setCertifyId(_ctx.stringValue("ContrastFaceVerifyResponse.ResultObject.CertifyId"));
resultObject.setSubCode(_ctx.stringValue("ContrastFaceVerifyResponse.ResultObject.SubCode"));
resultObject.setMaterialInfo(_ctx.stringValue("ContrastFaceVerifyResponse.ResultObject.MaterialInfo"));
resultObject.setIdentityInfo(_ctx.stringValue("ContrastFaceVerifyResponse.ResultObject.IdentityInfo"));
resultObject.setPassed(_ctx.stringValue("ContrastFaceVerifyResponse.ResultObject.Passed"));
contrastFaceVerifyResponse.setResultObject(resultObject);
return contrastFaceVerifyResponse;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cloudauth-v5/1.0.5/com/aliyuncs/v5/cloudauth/transform
|
java-sources/com/aliyun/aliyun-java-sdk-cloudauth-v5/1.0.5/com/aliyuncs/v5/cloudauth/transform/v20190307/CreateAuthKeyResponseUnmarshaller.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.cloudauth.transform.v20190307;
import com.aliyuncs.v5.cloudauth.model.v20190307.CreateAuthKeyResponse;
import com.aliyuncs.v5.transform.UnmarshallerContext;
public class CreateAuthKeyResponseUnmarshaller {
public static CreateAuthKeyResponse unmarshall(CreateAuthKeyResponse createAuthKeyResponse, UnmarshallerContext _ctx) {
createAuthKeyResponse.setRequestId(_ctx.stringValue("CreateAuthKeyResponse.RequestId"));
createAuthKeyResponse.setAuthKey(_ctx.stringValue("CreateAuthKeyResponse.AuthKey"));
return createAuthKeyResponse;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cloudauth-v5/1.0.5/com/aliyuncs/v5/cloudauth/transform
|
java-sources/com/aliyun/aliyun-java-sdk-cloudauth-v5/1.0.5/com/aliyuncs/v5/cloudauth/transform/v20190307/CreateFaceConfigResponseUnmarshaller.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.cloudauth.transform.v20190307;
import com.aliyuncs.v5.cloudauth.model.v20190307.CreateFaceConfigResponse;
import com.aliyuncs.v5.transform.UnmarshallerContext;
public class CreateFaceConfigResponseUnmarshaller {
public static CreateFaceConfigResponse unmarshall(CreateFaceConfigResponse createFaceConfigResponse, UnmarshallerContext _ctx) {
createFaceConfigResponse.setRequestId(_ctx.stringValue("CreateFaceConfigResponse.RequestId"));
return createFaceConfigResponse;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cloudauth-v5/1.0.5/com/aliyuncs/v5/cloudauth/transform
|
java-sources/com/aliyun/aliyun-java-sdk-cloudauth-v5/1.0.5/com/aliyuncs/v5/cloudauth/transform/v20190307/CreateRPSDKResponseUnmarshaller.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.cloudauth.transform.v20190307;
import com.aliyuncs.v5.cloudauth.model.v20190307.CreateRPSDKResponse;
import com.aliyuncs.v5.transform.UnmarshallerContext;
public class CreateRPSDKResponseUnmarshaller {
public static CreateRPSDKResponse unmarshall(CreateRPSDKResponse createRPSDKResponse, UnmarshallerContext _ctx) {
createRPSDKResponse.setRequestId(_ctx.stringValue("CreateRPSDKResponse.RequestId"));
createRPSDKResponse.setTaskId(_ctx.stringValue("CreateRPSDKResponse.TaskId"));
return createRPSDKResponse;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cloudauth-v5/1.0.5/com/aliyuncs/v5/cloudauth/transform
|
java-sources/com/aliyun/aliyun-java-sdk-cloudauth-v5/1.0.5/com/aliyuncs/v5/cloudauth/transform/v20190307/CreateVerifySDKResponseUnmarshaller.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.cloudauth.transform.v20190307;
import com.aliyuncs.v5.cloudauth.model.v20190307.CreateVerifySDKResponse;
import com.aliyuncs.v5.transform.UnmarshallerContext;
public class CreateVerifySDKResponseUnmarshaller {
public static CreateVerifySDKResponse unmarshall(CreateVerifySDKResponse createVerifySDKResponse, UnmarshallerContext _ctx) {
createVerifySDKResponse.setRequestId(_ctx.stringValue("CreateVerifySDKResponse.RequestId"));
createVerifySDKResponse.setTaskId(_ctx.stringValue("CreateVerifySDKResponse.TaskId"));
return createVerifySDKResponse;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cloudauth-v5/1.0.5/com/aliyuncs/v5/cloudauth/transform
|
java-sources/com/aliyun/aliyun-java-sdk-cloudauth-v5/1.0.5/com/aliyuncs/v5/cloudauth/transform/v20190307/CreateVerifySettingResponseUnmarshaller.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.cloudauth.transform.v20190307;
import java.util.ArrayList;
import java.util.List;
import com.aliyuncs.v5.cloudauth.model.v20190307.CreateVerifySettingResponse;
import com.aliyuncs.v5.transform.UnmarshallerContext;
public class CreateVerifySettingResponseUnmarshaller {
public static CreateVerifySettingResponse unmarshall(CreateVerifySettingResponse createVerifySettingResponse, UnmarshallerContext _ctx) {
createVerifySettingResponse.setRequestId(_ctx.stringValue("CreateVerifySettingResponse.RequestId"));
createVerifySettingResponse.setBizType(_ctx.stringValue("CreateVerifySettingResponse.BizType"));
createVerifySettingResponse.setBizName(_ctx.stringValue("CreateVerifySettingResponse.BizName"));
createVerifySettingResponse.setSolution(_ctx.stringValue("CreateVerifySettingResponse.Solution"));
List<String> stepList = new ArrayList<String>();
for (int i = 0; i < _ctx.lengthValue("CreateVerifySettingResponse.StepList.Length"); i++) {
stepList.add(_ctx.stringValue("CreateVerifySettingResponse.StepList["+ i +"]"));
}
createVerifySettingResponse.setStepList(stepList);
return createVerifySettingResponse;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cloudauth-v5/1.0.5/com/aliyuncs/v5/cloudauth/transform
|
java-sources/com/aliyun/aliyun-java-sdk-cloudauth-v5/1.0.5/com/aliyuncs/v5/cloudauth/transform/v20190307/CreateWhitelistResponseUnmarshaller.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.cloudauth.transform.v20190307;
import com.aliyuncs.v5.cloudauth.model.v20190307.CreateWhitelistResponse;
import com.aliyuncs.v5.transform.UnmarshallerContext;
public class CreateWhitelistResponseUnmarshaller {
public static CreateWhitelistResponse unmarshall(CreateWhitelistResponse createWhitelistResponse, UnmarshallerContext _ctx) {
createWhitelistResponse.setRequestId(_ctx.stringValue("CreateWhitelistResponse.RequestId"));
return createWhitelistResponse;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cloudauth-v5/1.0.5/com/aliyuncs/v5/cloudauth/transform
|
java-sources/com/aliyun/aliyun-java-sdk-cloudauth-v5/1.0.5/com/aliyuncs/v5/cloudauth/transform/v20190307/CreateWhitelistSettingResponseUnmarshaller.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.cloudauth.transform.v20190307;
import com.aliyuncs.v5.cloudauth.model.v20190307.CreateWhitelistSettingResponse;
import com.aliyuncs.v5.transform.UnmarshallerContext;
public class CreateWhitelistSettingResponseUnmarshaller {
public static CreateWhitelistSettingResponse unmarshall(CreateWhitelistSettingResponse createWhitelistSettingResponse, UnmarshallerContext _ctx) {
createWhitelistSettingResponse.setRequestId(_ctx.stringValue("CreateWhitelistSettingResponse.RequestId"));
createWhitelistSettingResponse.setResultObject(_ctx.booleanValue("CreateWhitelistSettingResponse.ResultObject"));
return createWhitelistSettingResponse;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cloudauth-v5/1.0.5/com/aliyuncs/v5/cloudauth/transform
|
java-sources/com/aliyun/aliyun-java-sdk-cloudauth-v5/1.0.5/com/aliyuncs/v5/cloudauth/transform/v20190307/DeleteWhitelistResponseUnmarshaller.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.cloudauth.transform.v20190307;
import com.aliyuncs.v5.cloudauth.model.v20190307.DeleteWhitelistResponse;
import com.aliyuncs.v5.transform.UnmarshallerContext;
public class DeleteWhitelistResponseUnmarshaller {
public static DeleteWhitelistResponse unmarshall(DeleteWhitelistResponse deleteWhitelistResponse, UnmarshallerContext _ctx) {
deleteWhitelistResponse.setRequestId(_ctx.stringValue("DeleteWhitelistResponse.RequestId"));
return deleteWhitelistResponse;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cloudauth-v5/1.0.5/com/aliyuncs/v5/cloudauth/transform
|
java-sources/com/aliyun/aliyun-java-sdk-cloudauth-v5/1.0.5/com/aliyuncs/v5/cloudauth/transform/v20190307/DeleteWhitelistSettingResponseUnmarshaller.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.cloudauth.transform.v20190307;
import com.aliyuncs.v5.cloudauth.model.v20190307.DeleteWhitelistSettingResponse;
import com.aliyuncs.v5.transform.UnmarshallerContext;
public class DeleteWhitelistSettingResponseUnmarshaller {
public static DeleteWhitelistSettingResponse unmarshall(DeleteWhitelistSettingResponse deleteWhitelistSettingResponse, UnmarshallerContext _ctx) {
deleteWhitelistSettingResponse.setRequestId(_ctx.stringValue("DeleteWhitelistSettingResponse.RequestId"));
deleteWhitelistSettingResponse.setResultObject(_ctx.booleanValue("DeleteWhitelistSettingResponse.ResultObject"));
return deleteWhitelistSettingResponse;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cloudauth-v5/1.0.5/com/aliyuncs/v5/cloudauth/transform
|
java-sources/com/aliyun/aliyun-java-sdk-cloudauth-v5/1.0.5/com/aliyuncs/v5/cloudauth/transform/v20190307/DescribeAppInfoResponseUnmarshaller.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.cloudauth.transform.v20190307;
import java.util.ArrayList;
import java.util.List;
import com.aliyuncs.v5.cloudauth.model.v20190307.DescribeAppInfoResponse;
import com.aliyuncs.v5.cloudauth.model.v20190307.DescribeAppInfoResponse.AppInfo;
import com.aliyuncs.v5.cloudauth.model.v20190307.DescribeAppInfoResponse.AppInfo.DebugPackageInfo;
import com.aliyuncs.v5.cloudauth.model.v20190307.DescribeAppInfoResponse.AppInfo.PackageInfo;
import com.aliyuncs.v5.transform.UnmarshallerContext;
public class DescribeAppInfoResponseUnmarshaller {
public static DescribeAppInfoResponse unmarshall(DescribeAppInfoResponse describeAppInfoResponse, UnmarshallerContext _ctx) {
describeAppInfoResponse.setRequestId(_ctx.stringValue("DescribeAppInfoResponse.RequestId"));
describeAppInfoResponse.setPageSize(_ctx.integerValue("DescribeAppInfoResponse.PageSize"));
describeAppInfoResponse.setCurrentPage(_ctx.integerValue("DescribeAppInfoResponse.CurrentPage"));
describeAppInfoResponse.setTotalCount(_ctx.integerValue("DescribeAppInfoResponse.TotalCount"));
List<AppInfo> appInfoListList = new ArrayList<AppInfo>();
for (int i = 0; i < _ctx.lengthValue("DescribeAppInfoResponse.AppInfoList.Length"); i++) {
AppInfo appInfo = new AppInfo();
appInfo.setId(_ctx.longValue("DescribeAppInfoResponse.AppInfoList["+ i +"].Id"));
appInfo.setName(_ctx.stringValue("DescribeAppInfoResponse.AppInfoList["+ i +"].Name"));
appInfo.setPackageName(_ctx.stringValue("DescribeAppInfoResponse.AppInfoList["+ i +"].PackageName"));
appInfo.setIcon(_ctx.stringValue("DescribeAppInfoResponse.AppInfoList["+ i +"].Icon"));
appInfo.setStartDate(_ctx.stringValue("DescribeAppInfoResponse.AppInfoList["+ i +"].StartDate"));
appInfo.setEndDate(_ctx.stringValue("DescribeAppInfoResponse.AppInfoList["+ i +"].EndDate"));
appInfo.setType(_ctx.integerValue("DescribeAppInfoResponse.AppInfoList["+ i +"].Type"));
PackageInfo packageInfo = new PackageInfo();
packageInfo.setVersion(_ctx.stringValue("DescribeAppInfoResponse.AppInfoList["+ i +"].PackageInfo.Version"));
appInfo.setPackageInfo(packageInfo);
DebugPackageInfo debugPackageInfo = new DebugPackageInfo();
debugPackageInfo.setVersion(_ctx.stringValue("DescribeAppInfoResponse.AppInfoList["+ i +"].DebugPackageInfo.Version"));
appInfo.setDebugPackageInfo(debugPackageInfo);
appInfoListList.add(appInfo);
}
describeAppInfoResponse.setAppInfoList(appInfoListList);
return describeAppInfoResponse;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cloudauth-v5/1.0.5/com/aliyuncs/v5/cloudauth/transform
|
java-sources/com/aliyun/aliyun-java-sdk-cloudauth-v5/1.0.5/com/aliyuncs/v5/cloudauth/transform/v20190307/DescribeDeviceInfoResponseUnmarshaller.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.cloudauth.transform.v20190307;
import java.util.ArrayList;
import java.util.List;
import com.aliyuncs.v5.cloudauth.model.v20190307.DescribeDeviceInfoResponse;
import com.aliyuncs.v5.cloudauth.model.v20190307.DescribeDeviceInfoResponse.DeviceInfo;
import com.aliyuncs.v5.transform.UnmarshallerContext;
public class DescribeDeviceInfoResponseUnmarshaller {
public static DescribeDeviceInfoResponse unmarshall(DescribeDeviceInfoResponse describeDeviceInfoResponse, UnmarshallerContext _ctx) {
describeDeviceInfoResponse.setRequestId(_ctx.stringValue("DescribeDeviceInfoResponse.RequestId"));
describeDeviceInfoResponse.setPageSize(_ctx.integerValue("DescribeDeviceInfoResponse.PageSize"));
describeDeviceInfoResponse.setCurrentPage(_ctx.integerValue("DescribeDeviceInfoResponse.CurrentPage"));
describeDeviceInfoResponse.setTotalCount(_ctx.integerValue("DescribeDeviceInfoResponse.TotalCount"));
List<DeviceInfo> deviceInfoListList = new ArrayList<DeviceInfo>();
for (int i = 0; i < _ctx.lengthValue("DescribeDeviceInfoResponse.DeviceInfoList.Length"); i++) {
DeviceInfo deviceInfo = new DeviceInfo();
deviceInfo.setDeviceId(_ctx.stringValue("DescribeDeviceInfoResponse.DeviceInfoList["+ i +"].DeviceId"));
deviceInfo.setUserDeviceId(_ctx.stringValue("DescribeDeviceInfoResponse.DeviceInfoList["+ i +"].UserDeviceId"));
deviceInfo.setBizType(_ctx.stringValue("DescribeDeviceInfoResponse.DeviceInfoList["+ i +"].BizType"));
deviceInfo.setBeginDay(_ctx.stringValue("DescribeDeviceInfoResponse.DeviceInfoList["+ i +"].BeginDay"));
deviceInfo.setExpiredDay(_ctx.stringValue("DescribeDeviceInfoResponse.DeviceInfoList["+ i +"].ExpiredDay"));
deviceInfoListList.add(deviceInfo);
}
describeDeviceInfoResponse.setDeviceInfoList(deviceInfoListList);
return describeDeviceInfoResponse;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cloudauth-v5/1.0.5/com/aliyuncs/v5/cloudauth/transform
|
java-sources/com/aliyun/aliyun-java-sdk-cloudauth-v5/1.0.5/com/aliyuncs/v5/cloudauth/transform/v20190307/DescribeFaceConfigResponseUnmarshaller.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.cloudauth.transform.v20190307;
import java.util.ArrayList;
import java.util.List;
import com.aliyuncs.v5.cloudauth.model.v20190307.DescribeFaceConfigResponse;
import com.aliyuncs.v5.cloudauth.model.v20190307.DescribeFaceConfigResponse.ItemsItem;
import com.aliyuncs.v5.transform.UnmarshallerContext;
public class DescribeFaceConfigResponseUnmarshaller {
public static DescribeFaceConfigResponse unmarshall(DescribeFaceConfigResponse describeFaceConfigResponse, UnmarshallerContext _ctx) {
describeFaceConfigResponse.setRequestId(_ctx.stringValue("DescribeFaceConfigResponse.RequestId"));
List<ItemsItem> itemsList = new ArrayList<ItemsItem>();
for (int i = 0; i < _ctx.lengthValue("DescribeFaceConfigResponse.Items.Length"); i++) {
ItemsItem itemsItem = new ItemsItem();
itemsItem.setBizType(_ctx.stringValue("DescribeFaceConfigResponse.Items["+ i +"].BizType"));
itemsItem.setBizName(_ctx.stringValue("DescribeFaceConfigResponse.Items["+ i +"].BizName"));
itemsItem.setGmtUpdated(_ctx.longValue("DescribeFaceConfigResponse.Items["+ i +"].GmtUpdated"));
itemsList.add(itemsItem);
}
describeFaceConfigResponse.setItems(itemsList);
return describeFaceConfigResponse;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cloudauth-v5/1.0.5/com/aliyuncs/v5/cloudauth/transform
|
java-sources/com/aliyun/aliyun-java-sdk-cloudauth-v5/1.0.5/com/aliyuncs/v5/cloudauth/transform/v20190307/DescribeFaceUsageResponseUnmarshaller.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.cloudauth.transform.v20190307;
import java.util.ArrayList;
import java.util.List;
import com.aliyuncs.v5.cloudauth.model.v20190307.DescribeFaceUsageResponse;
import com.aliyuncs.v5.cloudauth.model.v20190307.DescribeFaceUsageResponse.FaceUsage;
import com.aliyuncs.v5.transform.UnmarshallerContext;
public class DescribeFaceUsageResponseUnmarshaller {
public static DescribeFaceUsageResponse unmarshall(DescribeFaceUsageResponse describeFaceUsageResponse, UnmarshallerContext _ctx) {
describeFaceUsageResponse.setRequestId(_ctx.stringValue("DescribeFaceUsageResponse.RequestId"));
describeFaceUsageResponse.setTotalCount(_ctx.integerValue("DescribeFaceUsageResponse.TotalCount"));
List<FaceUsage> faceUsageListList = new ArrayList<FaceUsage>();
for (int i = 0; i < _ctx.lengthValue("DescribeFaceUsageResponse.FaceUsageList.Length"); i++) {
FaceUsage faceUsage = new FaceUsage();
faceUsage.setDate(_ctx.stringValue("DescribeFaceUsageResponse.FaceUsageList["+ i +"].Date"));
faceUsage.setTotalCount(_ctx.longValue("DescribeFaceUsageResponse.FaceUsageList["+ i +"].TotalCount"));
faceUsageListList.add(faceUsage);
}
describeFaceUsageResponse.setFaceUsageList(faceUsageListList);
return describeFaceUsageResponse;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cloudauth-v5/1.0.5/com/aliyuncs/v5/cloudauth/transform
|
java-sources/com/aliyun/aliyun-java-sdk-cloudauth-v5/1.0.5/com/aliyuncs/v5/cloudauth/transform/v20190307/DescribeFaceVerifyResponseUnmarshaller.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.cloudauth.transform.v20190307;
import com.aliyuncs.v5.cloudauth.model.v20190307.DescribeFaceVerifyResponse;
import com.aliyuncs.v5.cloudauth.model.v20190307.DescribeFaceVerifyResponse.ResultObject;
import com.aliyuncs.v5.transform.UnmarshallerContext;
public class DescribeFaceVerifyResponseUnmarshaller {
public static DescribeFaceVerifyResponse unmarshall(DescribeFaceVerifyResponse describeFaceVerifyResponse, UnmarshallerContext _ctx) {
describeFaceVerifyResponse.setRequestId(_ctx.stringValue("DescribeFaceVerifyResponse.RequestId"));
describeFaceVerifyResponse.setCode(_ctx.stringValue("DescribeFaceVerifyResponse.Code"));
describeFaceVerifyResponse.setMessage(_ctx.stringValue("DescribeFaceVerifyResponse.Message"));
ResultObject resultObject = new ResultObject();
resultObject.setSubCode(_ctx.stringValue("DescribeFaceVerifyResponse.ResultObject.SubCode"));
resultObject.setMaterialInfo(_ctx.stringValue("DescribeFaceVerifyResponse.ResultObject.MaterialInfo"));
resultObject.setIdentityInfo(_ctx.stringValue("DescribeFaceVerifyResponse.ResultObject.IdentityInfo"));
resultObject.setDeviceToken(_ctx.stringValue("DescribeFaceVerifyResponse.ResultObject.DeviceToken"));
resultObject.setPassed(_ctx.stringValue("DescribeFaceVerifyResponse.ResultObject.Passed"));
describeFaceVerifyResponse.setResultObject(resultObject);
return describeFaceVerifyResponse;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cloudauth-v5/1.0.5/com/aliyuncs/v5/cloudauth/transform
|
java-sources/com/aliyun/aliyun-java-sdk-cloudauth-v5/1.0.5/com/aliyuncs/v5/cloudauth/transform/v20190307/DescribeOssUploadTokenResponseUnmarshaller.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.cloudauth.transform.v20190307;
import com.aliyuncs.v5.cloudauth.model.v20190307.DescribeOssUploadTokenResponse;
import com.aliyuncs.v5.cloudauth.model.v20190307.DescribeOssUploadTokenResponse.OssUploadToken;
import com.aliyuncs.v5.transform.UnmarshallerContext;
public class DescribeOssUploadTokenResponseUnmarshaller {
public static DescribeOssUploadTokenResponse unmarshall(DescribeOssUploadTokenResponse describeOssUploadTokenResponse, UnmarshallerContext _ctx) {
describeOssUploadTokenResponse.setRequestId(_ctx.stringValue("DescribeOssUploadTokenResponse.RequestId"));
OssUploadToken ossUploadToken = new OssUploadToken();
ossUploadToken.setBucket(_ctx.stringValue("DescribeOssUploadTokenResponse.OssUploadToken.Bucket"));
ossUploadToken.setEndPoint(_ctx.stringValue("DescribeOssUploadTokenResponse.OssUploadToken.EndPoint"));
ossUploadToken.setPath(_ctx.stringValue("DescribeOssUploadTokenResponse.OssUploadToken.Path"));
ossUploadToken.setExpired(_ctx.longValue("DescribeOssUploadTokenResponse.OssUploadToken.Expired"));
ossUploadToken.setSecret(_ctx.stringValue("DescribeOssUploadTokenResponse.OssUploadToken.Secret"));
ossUploadToken.setKey(_ctx.stringValue("DescribeOssUploadTokenResponse.OssUploadToken.Key"));
ossUploadToken.setToken(_ctx.stringValue("DescribeOssUploadTokenResponse.OssUploadToken.Token"));
describeOssUploadTokenResponse.setOssUploadToken(ossUploadToken);
return describeOssUploadTokenResponse;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cloudauth-v5/1.0.5/com/aliyuncs/v5/cloudauth/transform
|
java-sources/com/aliyun/aliyun-java-sdk-cloudauth-v5/1.0.5/com/aliyuncs/v5/cloudauth/transform/v20190307/DescribeRPSDKResponseUnmarshaller.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.cloudauth.transform.v20190307;
import com.aliyuncs.v5.cloudauth.model.v20190307.DescribeRPSDKResponse;
import com.aliyuncs.v5.transform.UnmarshallerContext;
public class DescribeRPSDKResponseUnmarshaller {
public static DescribeRPSDKResponse unmarshall(DescribeRPSDKResponse describeRPSDKResponse, UnmarshallerContext _ctx) {
describeRPSDKResponse.setRequestId(_ctx.stringValue("DescribeRPSDKResponse.RequestId"));
describeRPSDKResponse.setSdkUrl(_ctx.stringValue("DescribeRPSDKResponse.SdkUrl"));
return describeRPSDKResponse;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cloudauth-v5/1.0.5/com/aliyuncs/v5/cloudauth/transform
|
java-sources/com/aliyun/aliyun-java-sdk-cloudauth-v5/1.0.5/com/aliyuncs/v5/cloudauth/transform/v20190307/DescribeSdkUrlResponseUnmarshaller.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.cloudauth.transform.v20190307;
import com.aliyuncs.v5.cloudauth.model.v20190307.DescribeSdkUrlResponse;
import com.aliyuncs.v5.transform.UnmarshallerContext;
public class DescribeSdkUrlResponseUnmarshaller {
public static DescribeSdkUrlResponse unmarshall(DescribeSdkUrlResponse describeSdkUrlResponse, UnmarshallerContext _ctx) {
describeSdkUrlResponse.setRequestId(_ctx.stringValue("DescribeSdkUrlResponse.RequestId"));
describeSdkUrlResponse.setSdkUrl(_ctx.stringValue("DescribeSdkUrlResponse.SdkUrl"));
return describeSdkUrlResponse;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cloudauth-v5/1.0.5/com/aliyuncs/v5/cloudauth/transform
|
java-sources/com/aliyun/aliyun-java-sdk-cloudauth-v5/1.0.5/com/aliyuncs/v5/cloudauth/transform/v20190307/DescribeUpdatePackageResultResponseUnmarshaller.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.cloudauth.transform.v20190307;
import com.aliyuncs.v5.cloudauth.model.v20190307.DescribeUpdatePackageResultResponse;
import com.aliyuncs.v5.cloudauth.model.v20190307.DescribeUpdatePackageResultResponse.AppInfo;
import com.aliyuncs.v5.cloudauth.model.v20190307.DescribeUpdatePackageResultResponse.AppInfo.DebugPackageInfo;
import com.aliyuncs.v5.cloudauth.model.v20190307.DescribeUpdatePackageResultResponse.AppInfo.PackageInfo;
import com.aliyuncs.v5.transform.UnmarshallerContext;
public class DescribeUpdatePackageResultResponseUnmarshaller {
public static DescribeUpdatePackageResultResponse unmarshall(DescribeUpdatePackageResultResponse describeUpdatePackageResultResponse, UnmarshallerContext _ctx) {
describeUpdatePackageResultResponse.setRequestId(_ctx.stringValue("DescribeUpdatePackageResultResponse.RequestId"));
AppInfo appInfo = new AppInfo();
appInfo.setId(_ctx.longValue("DescribeUpdatePackageResultResponse.AppInfo.Id"));
appInfo.setName(_ctx.stringValue("DescribeUpdatePackageResultResponse.AppInfo.Name"));
appInfo.setPackageName(_ctx.stringValue("DescribeUpdatePackageResultResponse.AppInfo.PackageName"));
appInfo.setIcon(_ctx.stringValue("DescribeUpdatePackageResultResponse.AppInfo.Icon"));
appInfo.setStartDate(_ctx.stringValue("DescribeUpdatePackageResultResponse.AppInfo.StartDate"));
appInfo.setEndDate(_ctx.stringValue("DescribeUpdatePackageResultResponse.AppInfo.EndDate"));
appInfo.setType(_ctx.integerValue("DescribeUpdatePackageResultResponse.AppInfo.Type"));
PackageInfo packageInfo = new PackageInfo();
packageInfo.setVersion(_ctx.stringValue("DescribeUpdatePackageResultResponse.AppInfo.PackageInfo.Version"));
appInfo.setPackageInfo(packageInfo);
DebugPackageInfo debugPackageInfo = new DebugPackageInfo();
debugPackageInfo.setVersion(_ctx.stringValue("DescribeUpdatePackageResultResponse.AppInfo.DebugPackageInfo.Version"));
appInfo.setDebugPackageInfo(debugPackageInfo);
describeUpdatePackageResultResponse.setAppInfo(appInfo);
return describeUpdatePackageResultResponse;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cloudauth-v5/1.0.5/com/aliyuncs/v5/cloudauth/transform
|
java-sources/com/aliyun/aliyun-java-sdk-cloudauth-v5/1.0.5/com/aliyuncs/v5/cloudauth/transform/v20190307/DescribeUploadInfoResponseUnmarshaller.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.cloudauth.transform.v20190307;
import com.aliyuncs.v5.cloudauth.model.v20190307.DescribeUploadInfoResponse;
import com.aliyuncs.v5.transform.UnmarshallerContext;
public class DescribeUploadInfoResponseUnmarshaller {
public static DescribeUploadInfoResponse unmarshall(DescribeUploadInfoResponse describeUploadInfoResponse, UnmarshallerContext _ctx) {
describeUploadInfoResponse.setRequestId(_ctx.stringValue("DescribeUploadInfoResponse.RequestId"));
describeUploadInfoResponse.setAccessid(_ctx.stringValue("DescribeUploadInfoResponse.Accessid"));
describeUploadInfoResponse.setPolicy(_ctx.stringValue("DescribeUploadInfoResponse.Policy"));
describeUploadInfoResponse.setSignature(_ctx.stringValue("DescribeUploadInfoResponse.Signature"));
describeUploadInfoResponse.setFolder(_ctx.stringValue("DescribeUploadInfoResponse.Folder"));
describeUploadInfoResponse.setHost(_ctx.stringValue("DescribeUploadInfoResponse.Host"));
describeUploadInfoResponse.setExpire(_ctx.longValue("DescribeUploadInfoResponse.Expire"));
return describeUploadInfoResponse;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cloudauth-v5/1.0.5/com/aliyuncs/v5/cloudauth/transform
|
java-sources/com/aliyun/aliyun-java-sdk-cloudauth-v5/1.0.5/com/aliyuncs/v5/cloudauth/transform/v20190307/DescribeUserStatusResponseUnmarshaller.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.cloudauth.transform.v20190307;
import com.aliyuncs.v5.cloudauth.model.v20190307.DescribeUserStatusResponse;
import com.aliyuncs.v5.transform.UnmarshallerContext;
public class DescribeUserStatusResponseUnmarshaller {
public static DescribeUserStatusResponse unmarshall(DescribeUserStatusResponse describeUserStatusResponse, UnmarshallerContext _ctx) {
describeUserStatusResponse.setRequestId(_ctx.stringValue("DescribeUserStatusResponse.RequestId"));
describeUserStatusResponse.setEnabled(_ctx.booleanValue("DescribeUserStatusResponse.Enabled"));
return describeUserStatusResponse;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cloudauth-v5/1.0.5/com/aliyuncs/v5/cloudauth/transform
|
java-sources/com/aliyun/aliyun-java-sdk-cloudauth-v5/1.0.5/com/aliyuncs/v5/cloudauth/transform/v20190307/DescribeVerifyRecordsResponseUnmarshaller.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.cloudauth.transform.v20190307;
import java.util.ArrayList;
import java.util.List;
import com.aliyuncs.v5.cloudauth.model.v20190307.DescribeVerifyRecordsResponse;
import com.aliyuncs.v5.cloudauth.model.v20190307.DescribeVerifyRecordsResponse.Records;
import com.aliyuncs.v5.cloudauth.model.v20190307.DescribeVerifyRecordsResponse.Records.Material;
import com.aliyuncs.v5.cloudauth.model.v20190307.DescribeVerifyRecordsResponse.Records.Material.IdCardInfo;
import com.aliyuncs.v5.transform.UnmarshallerContext;
public class DescribeVerifyRecordsResponseUnmarshaller {
public static DescribeVerifyRecordsResponse unmarshall(DescribeVerifyRecordsResponse describeVerifyRecordsResponse, UnmarshallerContext _ctx) {
describeVerifyRecordsResponse.setRequestId(_ctx.stringValue("DescribeVerifyRecordsResponse.RequestId"));
describeVerifyRecordsResponse.setTotalCount(_ctx.integerValue("DescribeVerifyRecordsResponse.TotalCount"));
describeVerifyRecordsResponse.setPageSize(_ctx.integerValue("DescribeVerifyRecordsResponse.PageSize"));
describeVerifyRecordsResponse.setCurrentPage(_ctx.integerValue("DescribeVerifyRecordsResponse.CurrentPage"));
describeVerifyRecordsResponse.setQueryId(_ctx.stringValue("DescribeVerifyRecordsResponse.QueryId"));
List<Records> recordsListList = new ArrayList<Records>();
for (int i = 0; i < _ctx.lengthValue("DescribeVerifyRecordsResponse.RecordsList.Length"); i++) {
Records records = new Records();
records.setBizType(_ctx.stringValue("DescribeVerifyRecordsResponse.RecordsList["+ i +"].BizType"));
records.setBizId(_ctx.stringValue("DescribeVerifyRecordsResponse.RecordsList["+ i +"].BizId"));
records.setDataStats(_ctx.stringValue("DescribeVerifyRecordsResponse.RecordsList["+ i +"].DataStats"));
records.setVerifyId(_ctx.stringValue("DescribeVerifyRecordsResponse.RecordsList["+ i +"].VerifyId"));
records.setFinishTime(_ctx.longValue("DescribeVerifyRecordsResponse.RecordsList["+ i +"].FinishTime"));
records.setStatus(_ctx.integerValue("DescribeVerifyRecordsResponse.RecordsList["+ i +"].Status"));
records.setIdCardFaceComparisonScore(_ctx.floatValue("DescribeVerifyRecordsResponse.RecordsList["+ i +"].IdCardFaceComparisonScore"));
records.setAuthorityComparisonScore(_ctx.floatValue("DescribeVerifyRecordsResponse.RecordsList["+ i +"].AuthorityComparisonScore"));
Material material = new Material();
material.setFaceImageUrl(_ctx.stringValue("DescribeVerifyRecordsResponse.RecordsList["+ i +"].Material.FaceImageUrl"));
material.setIdCardName(_ctx.stringValue("DescribeVerifyRecordsResponse.RecordsList["+ i +"].Material.IdCardName"));
material.setIdCardNumber(_ctx.stringValue("DescribeVerifyRecordsResponse.RecordsList["+ i +"].Material.IdCardNumber"));
IdCardInfo idCardInfo = new IdCardInfo();
idCardInfo.setFrontImageUrl(_ctx.stringValue("DescribeVerifyRecordsResponse.RecordsList["+ i +"].Material.IdCardInfo.FrontImageUrl"));
idCardInfo.setBackImageUrl(_ctx.stringValue("DescribeVerifyRecordsResponse.RecordsList["+ i +"].Material.IdCardInfo.BackImageUrl"));
idCardInfo.setName(_ctx.stringValue("DescribeVerifyRecordsResponse.RecordsList["+ i +"].Material.IdCardInfo.Name"));
idCardInfo.setNumber(_ctx.stringValue("DescribeVerifyRecordsResponse.RecordsList["+ i +"].Material.IdCardInfo.Number"));
idCardInfo.setAddress(_ctx.stringValue("DescribeVerifyRecordsResponse.RecordsList["+ i +"].Material.IdCardInfo.Address"));
idCardInfo.setBirth(_ctx.stringValue("DescribeVerifyRecordsResponse.RecordsList["+ i +"].Material.IdCardInfo.Birth"));
idCardInfo.setSex(_ctx.stringValue("DescribeVerifyRecordsResponse.RecordsList["+ i +"].Material.IdCardInfo.Sex"));
idCardInfo.setNationality(_ctx.stringValue("DescribeVerifyRecordsResponse.RecordsList["+ i +"].Material.IdCardInfo.Nationality"));
idCardInfo.setAuthority(_ctx.stringValue("DescribeVerifyRecordsResponse.RecordsList["+ i +"].Material.IdCardInfo.Authority"));
idCardInfo.setStartDate(_ctx.stringValue("DescribeVerifyRecordsResponse.RecordsList["+ i +"].Material.IdCardInfo.StartDate"));
idCardInfo.setEndDate(_ctx.stringValue("DescribeVerifyRecordsResponse.RecordsList["+ i +"].Material.IdCardInfo.EndDate"));
material.setIdCardInfo(idCardInfo);
records.setMaterial(material);
recordsListList.add(records);
}
describeVerifyRecordsResponse.setRecordsList(recordsListList);
return describeVerifyRecordsResponse;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cloudauth-v5/1.0.5/com/aliyuncs/v5/cloudauth/transform
|
java-sources/com/aliyun/aliyun-java-sdk-cloudauth-v5/1.0.5/com/aliyuncs/v5/cloudauth/transform/v20190307/DescribeVerifyResultResponseUnmarshaller.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.cloudauth.transform.v20190307;
import java.util.ArrayList;
import java.util.List;
import com.aliyuncs.v5.cloudauth.model.v20190307.DescribeVerifyResultResponse;
import com.aliyuncs.v5.cloudauth.model.v20190307.DescribeVerifyResultResponse.Material;
import com.aliyuncs.v5.cloudauth.model.v20190307.DescribeVerifyResultResponse.Material.IdCardInfo;
import com.aliyuncs.v5.transform.UnmarshallerContext;
public class DescribeVerifyResultResponseUnmarshaller {
public static DescribeVerifyResultResponse unmarshall(DescribeVerifyResultResponse describeVerifyResultResponse, UnmarshallerContext _ctx) {
describeVerifyResultResponse.setRequestId(_ctx.stringValue("DescribeVerifyResultResponse.RequestId"));
describeVerifyResultResponse.setVerifyStatus(_ctx.integerValue("DescribeVerifyResultResponse.VerifyStatus"));
describeVerifyResultResponse.setAuthorityComparisionScore(_ctx.floatValue("DescribeVerifyResultResponse.AuthorityComparisionScore"));
describeVerifyResultResponse.setFaceComparisonScore(_ctx.floatValue("DescribeVerifyResultResponse.FaceComparisonScore"));
describeVerifyResultResponse.setIdCardFaceComparisonScore(_ctx.floatValue("DescribeVerifyResultResponse.IdCardFaceComparisonScore"));
Material material = new Material();
material.setFaceImageUrl(_ctx.stringValue("DescribeVerifyResultResponse.Material.FaceImageUrl"));
material.setIdCardName(_ctx.stringValue("DescribeVerifyResultResponse.Material.IdCardName"));
material.setIdCardNumber(_ctx.stringValue("DescribeVerifyResultResponse.Material.IdCardNumber"));
material.setFaceQuality(_ctx.stringValue("DescribeVerifyResultResponse.Material.FaceQuality"));
material.setFaceGlobalUrl(_ctx.stringValue("DescribeVerifyResultResponse.Material.FaceGlobalUrl"));
material.setFaceMask(_ctx.booleanValue("DescribeVerifyResultResponse.Material.FaceMask"));
List<String> videoUrls = new ArrayList<String>();
for (int i = 0; i < _ctx.lengthValue("DescribeVerifyResultResponse.Material.VideoUrls.Length"); i++) {
videoUrls.add(_ctx.stringValue("DescribeVerifyResultResponse.Material.VideoUrls["+ i +"]"));
}
material.setVideoUrls(videoUrls);
IdCardInfo idCardInfo = new IdCardInfo();
idCardInfo.setNumber(_ctx.stringValue("DescribeVerifyResultResponse.Material.IdCardInfo.Number"));
idCardInfo.setAddress(_ctx.stringValue("DescribeVerifyResultResponse.Material.IdCardInfo.Address"));
idCardInfo.setNationality(_ctx.stringValue("DescribeVerifyResultResponse.Material.IdCardInfo.Nationality"));
idCardInfo.setEndDate(_ctx.stringValue("DescribeVerifyResultResponse.Material.IdCardInfo.EndDate"));
idCardInfo.setFrontImageUrl(_ctx.stringValue("DescribeVerifyResultResponse.Material.IdCardInfo.FrontImageUrl"));
idCardInfo.setAuthority(_ctx.stringValue("DescribeVerifyResultResponse.Material.IdCardInfo.Authority"));
idCardInfo.setSex(_ctx.stringValue("DescribeVerifyResultResponse.Material.IdCardInfo.Sex"));
idCardInfo.setName(_ctx.stringValue("DescribeVerifyResultResponse.Material.IdCardInfo.Name"));
idCardInfo.setBirth(_ctx.stringValue("DescribeVerifyResultResponse.Material.IdCardInfo.Birth"));
idCardInfo.setBackImageUrl(_ctx.stringValue("DescribeVerifyResultResponse.Material.IdCardInfo.BackImageUrl"));
idCardInfo.setStartDate(_ctx.stringValue("DescribeVerifyResultResponse.Material.IdCardInfo.StartDate"));
material.setIdCardInfo(idCardInfo);
describeVerifyResultResponse.setMaterial(material);
return describeVerifyResultResponse;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cloudauth-v5/1.0.5/com/aliyuncs/v5/cloudauth/transform
|
java-sources/com/aliyun/aliyun-java-sdk-cloudauth-v5/1.0.5/com/aliyuncs/v5/cloudauth/transform/v20190307/DescribeVerifySDKResponseUnmarshaller.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.cloudauth.transform.v20190307;
import com.aliyuncs.v5.cloudauth.model.v20190307.DescribeVerifySDKResponse;
import com.aliyuncs.v5.transform.UnmarshallerContext;
public class DescribeVerifySDKResponseUnmarshaller {
public static DescribeVerifySDKResponse unmarshall(DescribeVerifySDKResponse describeVerifySDKResponse, UnmarshallerContext _ctx) {
describeVerifySDKResponse.setRequestId(_ctx.stringValue("DescribeVerifySDKResponse.RequestId"));
describeVerifySDKResponse.setSdkUrl(_ctx.stringValue("DescribeVerifySDKResponse.SdkUrl"));
return describeVerifySDKResponse;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cloudauth-v5/1.0.5/com/aliyuncs/v5/cloudauth/transform
|
java-sources/com/aliyun/aliyun-java-sdk-cloudauth-v5/1.0.5/com/aliyuncs/v5/cloudauth/transform/v20190307/DescribeVerifySettingResponseUnmarshaller.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.cloudauth.transform.v20190307;
import java.util.ArrayList;
import java.util.List;
import com.aliyuncs.v5.cloudauth.model.v20190307.DescribeVerifySettingResponse;
import com.aliyuncs.v5.cloudauth.model.v20190307.DescribeVerifySettingResponse.VerifySetting;
import com.aliyuncs.v5.transform.UnmarshallerContext;
public class DescribeVerifySettingResponseUnmarshaller {
public static DescribeVerifySettingResponse unmarshall(DescribeVerifySettingResponse describeVerifySettingResponse, UnmarshallerContext _ctx) {
describeVerifySettingResponse.setRequestId(_ctx.stringValue("DescribeVerifySettingResponse.RequestId"));
List<VerifySetting> verifySettingListList = new ArrayList<VerifySetting>();
for (int i = 0; i < _ctx.lengthValue("DescribeVerifySettingResponse.VerifySettingList.Length"); i++) {
VerifySetting verifySetting = new VerifySetting();
verifySetting.setBizType(_ctx.stringValue("DescribeVerifySettingResponse.VerifySettingList["+ i +"].BizType"));
verifySetting.setBizName(_ctx.stringValue("DescribeVerifySettingResponse.VerifySettingList["+ i +"].BizName"));
verifySetting.setSolution(_ctx.stringValue("DescribeVerifySettingResponse.VerifySettingList["+ i +"].Solution"));
List<String> stepList = new ArrayList<String>();
for (int j = 0; j < _ctx.lengthValue("DescribeVerifySettingResponse.VerifySettingList["+ i +"].StepList.Length"); j++) {
stepList.add(_ctx.stringValue("DescribeVerifySettingResponse.VerifySettingList["+ i +"].StepList["+ j +"]"));
}
verifySetting.setStepList(stepList);
verifySettingListList.add(verifySetting);
}
describeVerifySettingResponse.setVerifySettingList(verifySettingListList);
return describeVerifySettingResponse;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cloudauth-v5/1.0.5/com/aliyuncs/v5/cloudauth/transform
|
java-sources/com/aliyun/aliyun-java-sdk-cloudauth-v5/1.0.5/com/aliyuncs/v5/cloudauth/transform/v20190307/DescribeVerifyTokenResponseUnmarshaller.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.cloudauth.transform.v20190307;
import com.aliyuncs.v5.cloudauth.model.v20190307.DescribeVerifyTokenResponse;
import com.aliyuncs.v5.cloudauth.model.v20190307.DescribeVerifyTokenResponse.OssUploadToken;
import com.aliyuncs.v5.transform.UnmarshallerContext;
public class DescribeVerifyTokenResponseUnmarshaller {
public static DescribeVerifyTokenResponse unmarshall(DescribeVerifyTokenResponse describeVerifyTokenResponse, UnmarshallerContext _ctx) {
describeVerifyTokenResponse.setRequestId(_ctx.stringValue("DescribeVerifyTokenResponse.RequestId"));
describeVerifyTokenResponse.setVerifyPageUrl(_ctx.stringValue("DescribeVerifyTokenResponse.VerifyPageUrl"));
describeVerifyTokenResponse.setVerifyToken(_ctx.stringValue("DescribeVerifyTokenResponse.VerifyToken"));
OssUploadToken ossUploadToken = new OssUploadToken();
ossUploadToken.setBucket(_ctx.stringValue("DescribeVerifyTokenResponse.OssUploadToken.Bucket"));
ossUploadToken.setEndPoint(_ctx.stringValue("DescribeVerifyTokenResponse.OssUploadToken.EndPoint"));
ossUploadToken.setPath(_ctx.stringValue("DescribeVerifyTokenResponse.OssUploadToken.Path"));
ossUploadToken.setExpired(_ctx.longValue("DescribeVerifyTokenResponse.OssUploadToken.Expired"));
ossUploadToken.setSecret(_ctx.stringValue("DescribeVerifyTokenResponse.OssUploadToken.Secret"));
ossUploadToken.setKey(_ctx.stringValue("DescribeVerifyTokenResponse.OssUploadToken.Key"));
ossUploadToken.setToken(_ctx.stringValue("DescribeVerifyTokenResponse.OssUploadToken.Token"));
describeVerifyTokenResponse.setOssUploadToken(ossUploadToken);
return describeVerifyTokenResponse;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cloudauth-v5/1.0.5/com/aliyuncs/v5/cloudauth/transform
|
java-sources/com/aliyun/aliyun-java-sdk-cloudauth-v5/1.0.5/com/aliyuncs/v5/cloudauth/transform/v20190307/DescribeVerifyUsageResponseUnmarshaller.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.cloudauth.transform.v20190307;
import java.util.ArrayList;
import java.util.List;
import com.aliyuncs.v5.cloudauth.model.v20190307.DescribeVerifyUsageResponse;
import com.aliyuncs.v5.cloudauth.model.v20190307.DescribeVerifyUsageResponse.VerifyUsage;
import com.aliyuncs.v5.transform.UnmarshallerContext;
public class DescribeVerifyUsageResponseUnmarshaller {
public static DescribeVerifyUsageResponse unmarshall(DescribeVerifyUsageResponse describeVerifyUsageResponse, UnmarshallerContext _ctx) {
describeVerifyUsageResponse.setRequestId(_ctx.stringValue("DescribeVerifyUsageResponse.RequestId"));
describeVerifyUsageResponse.setTotalCount(_ctx.integerValue("DescribeVerifyUsageResponse.TotalCount"));
List<VerifyUsage> verifyUsageListList = new ArrayList<VerifyUsage>();
for (int i = 0; i < _ctx.lengthValue("DescribeVerifyUsageResponse.VerifyUsageList.Length"); i++) {
VerifyUsage verifyUsage = new VerifyUsage();
verifyUsage.setBizType(_ctx.stringValue("DescribeVerifyUsageResponse.VerifyUsageList["+ i +"].BizType"));
verifyUsage.setDate(_ctx.stringValue("DescribeVerifyUsageResponse.VerifyUsageList["+ i +"].Date"));
verifyUsage.setTotalCount(_ctx.longValue("DescribeVerifyUsageResponse.VerifyUsageList["+ i +"].TotalCount"));
verifyUsage.setPassCount(_ctx.longValue("DescribeVerifyUsageResponse.VerifyUsageList["+ i +"].PassCount"));
verifyUsage.setFailCount(_ctx.longValue("DescribeVerifyUsageResponse.VerifyUsageList["+ i +"].FailCount"));
verifyUsageListList.add(verifyUsage);
}
describeVerifyUsageResponse.setVerifyUsageList(verifyUsageListList);
return describeVerifyUsageResponse;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cloudauth-v5/1.0.5/com/aliyuncs/v5/cloudauth/transform
|
java-sources/com/aliyun/aliyun-java-sdk-cloudauth-v5/1.0.5/com/aliyuncs/v5/cloudauth/transform/v20190307/DescribeWhitelistResponseUnmarshaller.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.cloudauth.transform.v20190307;
import java.util.ArrayList;
import java.util.List;
import com.aliyuncs.v5.cloudauth.model.v20190307.DescribeWhitelistResponse;
import com.aliyuncs.v5.cloudauth.model.v20190307.DescribeWhitelistResponse.Item;
import com.aliyuncs.v5.transform.UnmarshallerContext;
public class DescribeWhitelistResponseUnmarshaller {
public static DescribeWhitelistResponse unmarshall(DescribeWhitelistResponse describeWhitelistResponse, UnmarshallerContext _ctx) {
describeWhitelistResponse.setRequestId(_ctx.stringValue("DescribeWhitelistResponse.RequestId"));
describeWhitelistResponse.setTotalCount(_ctx.integerValue("DescribeWhitelistResponse.TotalCount"));
describeWhitelistResponse.setCurrentPage(_ctx.integerValue("DescribeWhitelistResponse.CurrentPage"));
describeWhitelistResponse.setPageSize(_ctx.integerValue("DescribeWhitelistResponse.PageSize"));
List<Item> itemsList = new ArrayList<Item>();
for (int i = 0; i < _ctx.lengthValue("DescribeWhitelistResponse.Items.Length"); i++) {
Item item = new Item();
item.setId(_ctx.longValue("DescribeWhitelistResponse.Items["+ i +"].Id"));
item.setUid(_ctx.longValue("DescribeWhitelistResponse.Items["+ i +"].Uid"));
item.setBizType(_ctx.stringValue("DescribeWhitelistResponse.Items["+ i +"].BizType"));
item.setStartDate(_ctx.longValue("DescribeWhitelistResponse.Items["+ i +"].StartDate"));
item.setEndDate(_ctx.longValue("DescribeWhitelistResponse.Items["+ i +"].EndDate"));
item.setIdCardNum(_ctx.stringValue("DescribeWhitelistResponse.Items["+ i +"].IdCardNum"));
item.setBizId(_ctx.stringValue("DescribeWhitelistResponse.Items["+ i +"].BizId"));
item.setValid(_ctx.integerValue("DescribeWhitelistResponse.Items["+ i +"].Valid"));
item.setGmtCreate(_ctx.longValue("DescribeWhitelistResponse.Items["+ i +"].GmtCreate"));
item.setGmtModified(_ctx.longValue("DescribeWhitelistResponse.Items["+ i +"].GmtModified"));
itemsList.add(item);
}
describeWhitelistResponse.setItems(itemsList);
return describeWhitelistResponse;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cloudauth-v5/1.0.5/com/aliyuncs/v5/cloudauth/transform
|
java-sources/com/aliyun/aliyun-java-sdk-cloudauth-v5/1.0.5/com/aliyuncs/v5/cloudauth/transform/v20190307/DescribeWhitelistSettingResponseUnmarshaller.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.cloudauth.transform.v20190307;
import java.util.ArrayList;
import java.util.List;
import com.aliyuncs.v5.cloudauth.model.v20190307.DescribeWhitelistSettingResponse;
import com.aliyuncs.v5.cloudauth.model.v20190307.DescribeWhitelistSettingResponse.Item;
import com.aliyuncs.v5.transform.UnmarshallerContext;
public class DescribeWhitelistSettingResponseUnmarshaller {
public static DescribeWhitelistSettingResponse unmarshall(DescribeWhitelistSettingResponse describeWhitelistSettingResponse, UnmarshallerContext _ctx) {
describeWhitelistSettingResponse.setRequestId(_ctx.stringValue("DescribeWhitelistSettingResponse.RequestId"));
describeWhitelistSettingResponse.setTotalCount(_ctx.integerValue("DescribeWhitelistSettingResponse.TotalCount"));
describeWhitelistSettingResponse.setCurrentPage(_ctx.integerValue("DescribeWhitelistSettingResponse.CurrentPage"));
describeWhitelistSettingResponse.setPageSize(_ctx.integerValue("DescribeWhitelistSettingResponse.PageSize"));
List<Item> itemsList = new ArrayList<Item>();
for (int i = 0; i < _ctx.lengthValue("DescribeWhitelistSettingResponse.Items.Length"); i++) {
Item item = new Item();
item.setId(_ctx.longValue("DescribeWhitelistSettingResponse.Items["+ i +"].Id"));
item.setSceneId(_ctx.longValue("DescribeWhitelistSettingResponse.Items["+ i +"].SceneId"));
item.setValidStartDate(_ctx.stringValue("DescribeWhitelistSettingResponse.Items["+ i +"].ValidStartDate"));
item.setValidEndDate(_ctx.stringValue("DescribeWhitelistSettingResponse.Items["+ i +"].ValidEndDate"));
item.setCertNo(_ctx.stringValue("DescribeWhitelistSettingResponse.Items["+ i +"].CertNo"));
item.setCertifyId(_ctx.stringValue("DescribeWhitelistSettingResponse.Items["+ i +"].CertifyId"));
item.setStatus(_ctx.stringValue("DescribeWhitelistSettingResponse.Items["+ i +"].Status"));
item.setGmtCreate(_ctx.stringValue("DescribeWhitelistSettingResponse.Items["+ i +"].GmtCreate"));
item.setGmtModified(_ctx.stringValue("DescribeWhitelistSettingResponse.Items["+ i +"].GmtModified"));
itemsList.add(item);
}
describeWhitelistSettingResponse.setItems(itemsList);
return describeWhitelistSettingResponse;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cloudauth-v5/1.0.5/com/aliyuncs/v5/cloudauth/transform
|
java-sources/com/aliyun/aliyun-java-sdk-cloudauth-v5/1.0.5/com/aliyuncs/v5/cloudauth/transform/v20190307/DetectFaceAttributesResponseUnmarshaller.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.cloudauth.transform.v20190307;
import java.util.ArrayList;
import java.util.List;
import com.aliyuncs.v5.cloudauth.model.v20190307.DetectFaceAttributesResponse;
import com.aliyuncs.v5.cloudauth.model.v20190307.DetectFaceAttributesResponse.Data;
import com.aliyuncs.v5.cloudauth.model.v20190307.DetectFaceAttributesResponse.Data.FaceAttributesDetectInfo;
import com.aliyuncs.v5.cloudauth.model.v20190307.DetectFaceAttributesResponse.Data.FaceAttributesDetectInfo.FaceAttributes;
import com.aliyuncs.v5.cloudauth.model.v20190307.DetectFaceAttributesResponse.Data.FaceAttributesDetectInfo.FaceAttributes.Gender;
import com.aliyuncs.v5.cloudauth.model.v20190307.DetectFaceAttributesResponse.Data.FaceAttributesDetectInfo.FaceAttributes.Headpose;
import com.aliyuncs.v5.cloudauth.model.v20190307.DetectFaceAttributesResponse.Data.FaceAttributesDetectInfo.FaceAttributes.Smiling;
import com.aliyuncs.v5.cloudauth.model.v20190307.DetectFaceAttributesResponse.Data.FaceAttributesDetectInfo.FaceRect;
import com.aliyuncs.v5.transform.UnmarshallerContext;
public class DetectFaceAttributesResponseUnmarshaller {
public static DetectFaceAttributesResponse unmarshall(DetectFaceAttributesResponse detectFaceAttributesResponse, UnmarshallerContext _ctx) {
detectFaceAttributesResponse.setRequestId(_ctx.stringValue("DetectFaceAttributesResponse.RequestId"));
detectFaceAttributesResponse.setSuccess(_ctx.booleanValue("DetectFaceAttributesResponse.Success"));
detectFaceAttributesResponse.setCode(_ctx.stringValue("DetectFaceAttributesResponse.Code"));
detectFaceAttributesResponse.setMessage(_ctx.stringValue("DetectFaceAttributesResponse.Message"));
Data data = new Data();
data.setImgWidth(_ctx.integerValue("DetectFaceAttributesResponse.Data.ImgWidth"));
data.setImgHeight(_ctx.integerValue("DetectFaceAttributesResponse.Data.ImgHeight"));
List<FaceAttributesDetectInfo> faceInfosList = new ArrayList<FaceAttributesDetectInfo>();
for (int i = 0; i < _ctx.lengthValue("DetectFaceAttributesResponse.Data.FaceInfos.Length"); i++) {
FaceAttributesDetectInfo faceAttributesDetectInfo = new FaceAttributesDetectInfo();
FaceRect faceRect = new FaceRect();
faceRect.setTop(_ctx.integerValue("DetectFaceAttributesResponse.Data.FaceInfos["+ i +"].FaceRect.Top"));
faceRect.setLeft(_ctx.integerValue("DetectFaceAttributesResponse.Data.FaceInfos["+ i +"].FaceRect.Left"));
faceRect.setWidth(_ctx.integerValue("DetectFaceAttributesResponse.Data.FaceInfos["+ i +"].FaceRect.Width"));
faceRect.setHeight(_ctx.integerValue("DetectFaceAttributesResponse.Data.FaceInfos["+ i +"].FaceRect.Height"));
faceAttributesDetectInfo.setFaceRect(faceRect);
FaceAttributes faceAttributes = new FaceAttributes();
faceAttributes.setAge(_ctx.integerValue("DetectFaceAttributesResponse.Data.FaceInfos["+ i +"].FaceAttributes.Age"));
faceAttributes.setGlasses(_ctx.stringValue("DetectFaceAttributesResponse.Data.FaceInfos["+ i +"].FaceAttributes.Glasses"));
faceAttributes.setFacetype(_ctx.stringValue("DetectFaceAttributesResponse.Data.FaceInfos["+ i +"].FaceAttributes.Facetype"));
faceAttributes.setBlur(_ctx.floatValue("DetectFaceAttributesResponse.Data.FaceInfos["+ i +"].FaceAttributes.Blur"));
faceAttributes.setFacequal(_ctx.floatValue("DetectFaceAttributesResponse.Data.FaceInfos["+ i +"].FaceAttributes.Facequal"));
faceAttributes.setIntegrity(_ctx.integerValue("DetectFaceAttributesResponse.Data.FaceInfos["+ i +"].FaceAttributes.Integrity"));
faceAttributes.setRespirator(_ctx.stringValue("DetectFaceAttributesResponse.Data.FaceInfos["+ i +"].FaceAttributes.Respirator"));
faceAttributes.setAppearanceScore(_ctx.floatValue("DetectFaceAttributesResponse.Data.FaceInfos["+ i +"].FaceAttributes.AppearanceScore"));
Gender gender = new Gender();
gender.setScore(_ctx.floatValue("DetectFaceAttributesResponse.Data.FaceInfos["+ i +"].FaceAttributes.Gender.Score"));
gender.setValue(_ctx.stringValue("DetectFaceAttributesResponse.Data.FaceInfos["+ i +"].FaceAttributes.Gender.Value"));
faceAttributes.setGender(gender);
Smiling smiling = new Smiling();
smiling.setValue(_ctx.floatValue("DetectFaceAttributesResponse.Data.FaceInfos["+ i +"].FaceAttributes.Smiling.Value"));
smiling.setThreshold(_ctx.floatValue("DetectFaceAttributesResponse.Data.FaceInfos["+ i +"].FaceAttributes.Smiling.Threshold"));
faceAttributes.setSmiling(smiling);
Headpose headpose = new Headpose();
headpose.setPitchAngle(_ctx.floatValue("DetectFaceAttributesResponse.Data.FaceInfos["+ i +"].FaceAttributes.Headpose.PitchAngle"));
headpose.setRollAngle(_ctx.floatValue("DetectFaceAttributesResponse.Data.FaceInfos["+ i +"].FaceAttributes.Headpose.RollAngle"));
headpose.setYawAngle(_ctx.floatValue("DetectFaceAttributesResponse.Data.FaceInfos["+ i +"].FaceAttributes.Headpose.YawAngle"));
faceAttributes.setHeadpose(headpose);
faceAttributesDetectInfo.setFaceAttributes(faceAttributes);
faceInfosList.add(faceAttributesDetectInfo);
}
data.setFaceInfos(faceInfosList);
detectFaceAttributesResponse.setData(data);
return detectFaceAttributesResponse;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cloudauth-v5/1.0.5/com/aliyuncs/v5/cloudauth/transform
|
java-sources/com/aliyun/aliyun-java-sdk-cloudauth-v5/1.0.5/com/aliyuncs/v5/cloudauth/transform/v20190307/InitDeviceResponseUnmarshaller.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.cloudauth.transform.v20190307;
import com.aliyuncs.v5.cloudauth.model.v20190307.InitDeviceResponse;
import com.aliyuncs.v5.cloudauth.model.v20190307.InitDeviceResponse.ResultObject;
import com.aliyuncs.v5.transform.UnmarshallerContext;
public class InitDeviceResponseUnmarshaller {
public static InitDeviceResponse unmarshall(InitDeviceResponse initDeviceResponse, UnmarshallerContext _ctx) {
initDeviceResponse.setRequestId(_ctx.stringValue("InitDeviceResponse.RequestId"));
initDeviceResponse.setMessage(_ctx.stringValue("InitDeviceResponse.Message"));
initDeviceResponse.setCode(_ctx.stringValue("InitDeviceResponse.Code"));
ResultObject resultObject = new ResultObject();
resultObject.setCertifyId(_ctx.stringValue("InitDeviceResponse.ResultObject.CertifyId"));
resultObject.setBizProtocol(_ctx.stringValue("InitDeviceResponse.ResultObject.Protocol"));
resultObject.setExtParams(_ctx.stringValue("InitDeviceResponse.ResultObject.ExtParams"));
resultObject.setRetCode(_ctx.stringValue("InitDeviceResponse.ResultObject.RetCode"));
resultObject.setRetCodeSub(_ctx.stringValue("InitDeviceResponse.ResultObject.RetCodeSub"));
resultObject.setRetMessageSub(_ctx.stringValue("InitDeviceResponse.ResultObject.RetMessageSub"));
resultObject.setMessage(_ctx.stringValue("InitDeviceResponse.ResultObject.Message"));
resultObject.setOssEndPoint(_ctx.stringValue("InitDeviceResponse.ResultObject.OssEndPoint"));
resultObject.setAccessKeyId(_ctx.stringValue("InitDeviceResponse.ResultObject.AccessKeyId"));
resultObject.setAccessKeySecret(_ctx.stringValue("InitDeviceResponse.ResultObject.AccessKeySecret"));
resultObject.setSecurityToken(_ctx.stringValue("InitDeviceResponse.ResultObject.SecurityToken"));
resultObject.setBucketName(_ctx.stringValue("InitDeviceResponse.ResultObject.BucketName"));
resultObject.setFileNamePrefix(_ctx.stringValue("InitDeviceResponse.ResultObject.FileNamePrefix"));
resultObject.setFileName(_ctx.stringValue("InitDeviceResponse.ResultObject.FileName"));
resultObject.setPresignedUrl(_ctx.stringValue("InitDeviceResponse.ResultObject.PresignedUrl"));
initDeviceResponse.setResultObject(resultObject);
return initDeviceResponse;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cloudauth-v5/1.0.5/com/aliyuncs/v5/cloudauth/transform
|
java-sources/com/aliyun/aliyun-java-sdk-cloudauth-v5/1.0.5/com/aliyuncs/v5/cloudauth/transform/v20190307/InitFaceVerifyResponseUnmarshaller.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.cloudauth.transform.v20190307;
import com.aliyuncs.v5.cloudauth.model.v20190307.InitFaceVerifyResponse;
import com.aliyuncs.v5.cloudauth.model.v20190307.InitFaceVerifyResponse.ResultObject;
import com.aliyuncs.v5.transform.UnmarshallerContext;
public class InitFaceVerifyResponseUnmarshaller {
public static InitFaceVerifyResponse unmarshall(InitFaceVerifyResponse initFaceVerifyResponse, UnmarshallerContext _ctx) {
initFaceVerifyResponse.setRequestId(_ctx.stringValue("InitFaceVerifyResponse.RequestId"));
initFaceVerifyResponse.setCode(_ctx.stringValue("InitFaceVerifyResponse.Code"));
initFaceVerifyResponse.setMessage(_ctx.stringValue("InitFaceVerifyResponse.Message"));
ResultObject resultObject = new ResultObject();
resultObject.setCertifyId(_ctx.stringValue("InitFaceVerifyResponse.ResultObject.CertifyId"));
resultObject.setCertifyUrl(_ctx.stringValue("InitFaceVerifyResponse.ResultObject.CertifyUrl"));
initFaceVerifyResponse.setResultObject(resultObject);
return initFaceVerifyResponse;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cloudauth-v5/1.0.5/com/aliyuncs/v5/cloudauth/transform
|
java-sources/com/aliyun/aliyun-java-sdk-cloudauth-v5/1.0.5/com/aliyuncs/v5/cloudauth/transform/v20190307/LivenessFaceVerifyResponseUnmarshaller.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.cloudauth.transform.v20190307;
import com.aliyuncs.v5.cloudauth.model.v20190307.LivenessFaceVerifyResponse;
import com.aliyuncs.v5.cloudauth.model.v20190307.LivenessFaceVerifyResponse.ResultObject;
import com.aliyuncs.v5.transform.UnmarshallerContext;
public class LivenessFaceVerifyResponseUnmarshaller {
public static LivenessFaceVerifyResponse unmarshall(LivenessFaceVerifyResponse livenessFaceVerifyResponse, UnmarshallerContext _ctx) {
livenessFaceVerifyResponse.setRequestId(_ctx.stringValue("LivenessFaceVerifyResponse.RequestId"));
livenessFaceVerifyResponse.setCode(_ctx.stringValue("LivenessFaceVerifyResponse.Code"));
livenessFaceVerifyResponse.setMessage(_ctx.stringValue("LivenessFaceVerifyResponse.Message"));
ResultObject resultObject = new ResultObject();
resultObject.setCertifyId(_ctx.stringValue("LivenessFaceVerifyResponse.ResultObject.CertifyId"));
resultObject.setSubCode(_ctx.stringValue("LivenessFaceVerifyResponse.ResultObject.SubCode"));
resultObject.setMaterialInfo(_ctx.stringValue("LivenessFaceVerifyResponse.ResultObject.MaterialInfo"));
resultObject.setPassed(_ctx.stringValue("LivenessFaceVerifyResponse.ResultObject.Passed"));
livenessFaceVerifyResponse.setResultObject(resultObject);
return livenessFaceVerifyResponse;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cloudauth-v5/1.0.5/com/aliyuncs/v5/cloudauth/transform
|
java-sources/com/aliyun/aliyun-java-sdk-cloudauth-v5/1.0.5/com/aliyuncs/v5/cloudauth/transform/v20190307/ModifyDeviceInfoResponseUnmarshaller.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.cloudauth.transform.v20190307;
import com.aliyuncs.v5.cloudauth.model.v20190307.ModifyDeviceInfoResponse;
import com.aliyuncs.v5.transform.UnmarshallerContext;
public class ModifyDeviceInfoResponseUnmarshaller {
public static ModifyDeviceInfoResponse unmarshall(ModifyDeviceInfoResponse modifyDeviceInfoResponse, UnmarshallerContext _ctx) {
modifyDeviceInfoResponse.setRequestId(_ctx.stringValue("ModifyDeviceInfoResponse.RequestId"));
modifyDeviceInfoResponse.setDeviceId(_ctx.stringValue("ModifyDeviceInfoResponse.DeviceId"));
modifyDeviceInfoResponse.setUserDeviceId(_ctx.stringValue("ModifyDeviceInfoResponse.UserDeviceId"));
modifyDeviceInfoResponse.setBizType(_ctx.stringValue("ModifyDeviceInfoResponse.BizType"));
modifyDeviceInfoResponse.setBeginDay(_ctx.stringValue("ModifyDeviceInfoResponse.BeginDay"));
modifyDeviceInfoResponse.setExpiredDay(_ctx.stringValue("ModifyDeviceInfoResponse.ExpiredDay"));
return modifyDeviceInfoResponse;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cloudauth-v5/1.0.5/com/aliyuncs/v5/cloudauth/transform
|
java-sources/com/aliyun/aliyun-java-sdk-cloudauth-v5/1.0.5/com/aliyuncs/v5/cloudauth/transform/v20190307/UpdateAppPackageResponseUnmarshaller.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.cloudauth.transform.v20190307;
import com.aliyuncs.v5.cloudauth.model.v20190307.UpdateAppPackageResponse;
import com.aliyuncs.v5.transform.UnmarshallerContext;
public class UpdateAppPackageResponseUnmarshaller {
public static UpdateAppPackageResponse unmarshall(UpdateAppPackageResponse updateAppPackageResponse, UnmarshallerContext _ctx) {
updateAppPackageResponse.setRequestId(_ctx.stringValue("UpdateAppPackageResponse.RequestId"));
updateAppPackageResponse.setTaskId(_ctx.stringValue("UpdateAppPackageResponse.TaskId"));
return updateAppPackageResponse;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cloudauth-v5/1.0.5/com/aliyuncs/v5/cloudauth/transform
|
java-sources/com/aliyun/aliyun-java-sdk-cloudauth-v5/1.0.5/com/aliyuncs/v5/cloudauth/transform/v20190307/UpdateFaceConfigResponseUnmarshaller.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.cloudauth.transform.v20190307;
import com.aliyuncs.v5.cloudauth.model.v20190307.UpdateFaceConfigResponse;
import com.aliyuncs.v5.transform.UnmarshallerContext;
public class UpdateFaceConfigResponseUnmarshaller {
public static UpdateFaceConfigResponse unmarshall(UpdateFaceConfigResponse updateFaceConfigResponse, UnmarshallerContext _ctx) {
updateFaceConfigResponse.setRequestId(_ctx.stringValue("UpdateFaceConfigResponse.RequestId"));
return updateFaceConfigResponse;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cloudauth-v5/1.0.5/com/aliyuncs/v5/cloudauth/transform
|
java-sources/com/aliyun/aliyun-java-sdk-cloudauth-v5/1.0.5/com/aliyuncs/v5/cloudauth/transform/v20190307/UpdateVerifySettingResponseUnmarshaller.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.cloudauth.transform.v20190307;
import java.util.ArrayList;
import java.util.List;
import com.aliyuncs.v5.cloudauth.model.v20190307.UpdateVerifySettingResponse;
import com.aliyuncs.v5.transform.UnmarshallerContext;
public class UpdateVerifySettingResponseUnmarshaller {
public static UpdateVerifySettingResponse unmarshall(UpdateVerifySettingResponse updateVerifySettingResponse, UnmarshallerContext _ctx) {
updateVerifySettingResponse.setRequestId(_ctx.stringValue("UpdateVerifySettingResponse.RequestId"));
updateVerifySettingResponse.setBizType(_ctx.stringValue("UpdateVerifySettingResponse.BizType"));
updateVerifySettingResponse.setBizName(_ctx.stringValue("UpdateVerifySettingResponse.BizName"));
updateVerifySettingResponse.setSolution(_ctx.stringValue("UpdateVerifySettingResponse.Solution"));
List<String> stepList = new ArrayList<String>();
for (int i = 0; i < _ctx.lengthValue("UpdateVerifySettingResponse.StepList.Length"); i++) {
stepList.add(_ctx.stringValue("UpdateVerifySettingResponse.StepList["+ i +"]"));
}
updateVerifySettingResponse.setStepList(stepList);
return updateVerifySettingResponse;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cloudauth-v5/1.0.5/com/aliyuncs/v5/cloudauth/transform
|
java-sources/com/aliyun/aliyun-java-sdk-cloudauth-v5/1.0.5/com/aliyuncs/v5/cloudauth/transform/v20190307/VerifyDeviceResponseUnmarshaller.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.cloudauth.transform.v20190307;
import com.aliyuncs.v5.cloudauth.model.v20190307.VerifyDeviceResponse;
import com.aliyuncs.v5.cloudauth.model.v20190307.VerifyDeviceResponse.ResultObject;
import com.aliyuncs.v5.transform.UnmarshallerContext;
public class VerifyDeviceResponseUnmarshaller {
public static VerifyDeviceResponse unmarshall(VerifyDeviceResponse verifyDeviceResponse, UnmarshallerContext _ctx) {
verifyDeviceResponse.setRequestId(_ctx.stringValue("VerifyDeviceResponse.RequestId"));
verifyDeviceResponse.setCode(_ctx.stringValue("VerifyDeviceResponse.Code"));
verifyDeviceResponse.setMessage(_ctx.stringValue("VerifyDeviceResponse.Message"));
ResultObject resultObject = new ResultObject();
resultObject.setValidationRetCode(_ctx.stringValue("VerifyDeviceResponse.ResultObject.ValidationRetCode"));
resultObject.setProductRetCode(_ctx.stringValue("VerifyDeviceResponse.ResultObject.ProductRetCode"));
resultObject.setRetCodeSub(_ctx.stringValue("VerifyDeviceResponse.ResultObject.RetCodeSub"));
resultObject.setRetMessageSub(_ctx.stringValue("VerifyDeviceResponse.ResultObject.RetMessageSub"));
resultObject.setHasNext(_ctx.stringValue("VerifyDeviceResponse.ResultObject.HasNext"));
resultObject.setExtParams(_ctx.stringValue("VerifyDeviceResponse.ResultObject.ExtParams"));
verifyDeviceResponse.setResultObject(resultObject);
return verifyDeviceResponse;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-cloudauth-v5/1.0.5/com/aliyuncs/v5/cloudauth/transform
|
java-sources/com/aliyun/aliyun-java-sdk-cloudauth-v5/1.0.5/com/aliyuncs/v5/cloudauth/transform/v20190307/VerifyMaterialResponseUnmarshaller.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.cloudauth.transform.v20190307;
import com.aliyuncs.v5.cloudauth.model.v20190307.VerifyMaterialResponse;
import com.aliyuncs.v5.cloudauth.model.v20190307.VerifyMaterialResponse.Material;
import com.aliyuncs.v5.cloudauth.model.v20190307.VerifyMaterialResponse.Material.IdCardInfo;
import com.aliyuncs.v5.transform.UnmarshallerContext;
public class VerifyMaterialResponseUnmarshaller {
public static VerifyMaterialResponse unmarshall(VerifyMaterialResponse verifyMaterialResponse, UnmarshallerContext _ctx) {
verifyMaterialResponse.setRequestId(_ctx.stringValue("VerifyMaterialResponse.RequestId"));
verifyMaterialResponse.setVerifyToken(_ctx.stringValue("VerifyMaterialResponse.VerifyToken"));
verifyMaterialResponse.setVerifyStatus(_ctx.integerValue("VerifyMaterialResponse.VerifyStatus"));
verifyMaterialResponse.setAuthorityComparisionScore(_ctx.floatValue("VerifyMaterialResponse.AuthorityComparisionScore"));
verifyMaterialResponse.setIdCardFaceComparisonScore(_ctx.floatValue("VerifyMaterialResponse.IdCardFaceComparisonScore"));
Material material = new Material();
material.setFaceImageUrl(_ctx.stringValue("VerifyMaterialResponse.Material.FaceImageUrl"));
material.setIdCardName(_ctx.stringValue("VerifyMaterialResponse.Material.IdCardName"));
material.setIdCardNumber(_ctx.stringValue("VerifyMaterialResponse.Material.IdCardNumber"));
material.setFaceQuality(_ctx.stringValue("VerifyMaterialResponse.Material.FaceQuality"));
material.setFaceGlobalUrl(_ctx.stringValue("VerifyMaterialResponse.Material.FaceGlobalUrl"));
material.setFaceMask(_ctx.stringValue("VerifyMaterialResponse.Material.FaceMask"));
IdCardInfo idCardInfo = new IdCardInfo();
idCardInfo.setNumber(_ctx.stringValue("VerifyMaterialResponse.Material.IdCardInfo.Number"));
idCardInfo.setAddress(_ctx.stringValue("VerifyMaterialResponse.Material.IdCardInfo.Address"));
idCardInfo.setNationality(_ctx.stringValue("VerifyMaterialResponse.Material.IdCardInfo.Nationality"));
idCardInfo.setEndDate(_ctx.stringValue("VerifyMaterialResponse.Material.IdCardInfo.EndDate"));
idCardInfo.setFrontImageUrl(_ctx.stringValue("VerifyMaterialResponse.Material.IdCardInfo.FrontImageUrl"));
idCardInfo.setAuthority(_ctx.stringValue("VerifyMaterialResponse.Material.IdCardInfo.Authority"));
idCardInfo.setSex(_ctx.stringValue("VerifyMaterialResponse.Material.IdCardInfo.Sex"));
idCardInfo.setName(_ctx.stringValue("VerifyMaterialResponse.Material.IdCardInfo.Name"));
idCardInfo.setBirth(_ctx.stringValue("VerifyMaterialResponse.Material.IdCardInfo.Birth"));
idCardInfo.setBackImageUrl(_ctx.stringValue("VerifyMaterialResponse.Material.IdCardInfo.BackImageUrl"));
idCardInfo.setStartDate(_ctx.stringValue("VerifyMaterialResponse.Material.IdCardInfo.StartDate"));
material.setIdCardInfo(idCardInfo);
verifyMaterialResponse.setMaterial(material);
return verifyMaterialResponse;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-clouddesktop/1.1.0/com/aliyuncs/clouddesktop/model
|
java-sources/com/aliyun/aliyun-java-sdk-clouddesktop/1.1.0/com/aliyuncs/clouddesktop/model/v20170301/AllocOwnerAuthConfigRequest.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.clouddesktop.model.v20170301;
import com.aliyuncs.RpcAcsRequest;
/**
* @author auto create
* @version
*/
public class AllocOwnerAuthConfigRequest extends RpcAcsRequest<AllocOwnerAuthConfigResponse> {
public AllocOwnerAuthConfigRequest() {
super("CloudDesktop", "2017-03-01", "AllocOwnerAuthConfig", "CloudDesktop");
}
private String adType;
private String adOU;
private String clientToken;
private String adAdminName;
private String adAdminPassword;
private String securityGroupId;
private String domainName;
private String adDnsIpAddress;
private String adTrustDomain;
private String adIpAddress;
private String adBackupDnsIpAddress;
private String vpcId;
private String adBackupIpAddress;
private String adGroup;
public String getAdType() {
return this.adType;
}
public void setAdType(String adType) {
this.adType = adType;
if(adType != null){
putQueryParameter("AdType", adType);
}
}
public String getAdOU() {
return this.adOU;
}
public void setAdOU(String adOU) {
this.adOU = adOU;
if(adOU != null){
putQueryParameter("AdOU", adOU);
}
}
public String getClientToken() {
return this.clientToken;
}
public void setClientToken(String clientToken) {
this.clientToken = clientToken;
if(clientToken != null){
putQueryParameter("ClientToken", clientToken);
}
}
public String getAdAdminName() {
return this.adAdminName;
}
public void setAdAdminName(String adAdminName) {
this.adAdminName = adAdminName;
if(adAdminName != null){
putQueryParameter("AdAdminName", adAdminName);
}
}
public String getAdAdminPassword() {
return this.adAdminPassword;
}
public void setAdAdminPassword(String adAdminPassword) {
this.adAdminPassword = adAdminPassword;
if(adAdminPassword != null){
putQueryParameter("AdAdminPassword", adAdminPassword);
}
}
public String getSecurityGroupId() {
return this.securityGroupId;
}
public void setSecurityGroupId(String securityGroupId) {
this.securityGroupId = securityGroupId;
if(securityGroupId != null){
putQueryParameter("SecurityGroupId", securityGroupId);
}
}
public String getDomainName() {
return this.domainName;
}
public void setDomainName(String domainName) {
this.domainName = domainName;
if(domainName != null){
putQueryParameter("DomainName", domainName);
}
}
public String getAdDnsIpAddress() {
return this.adDnsIpAddress;
}
public void setAdDnsIpAddress(String adDnsIpAddress) {
this.adDnsIpAddress = adDnsIpAddress;
if(adDnsIpAddress != null){
putQueryParameter("AdDnsIpAddress", adDnsIpAddress);
}
}
public String getAdTrustDomain() {
return this.adTrustDomain;
}
public void setAdTrustDomain(String adTrustDomain) {
this.adTrustDomain = adTrustDomain;
if(adTrustDomain != null){
putQueryParameter("AdTrustDomain", adTrustDomain);
}
}
public String getAdIpAddress() {
return this.adIpAddress;
}
public void setAdIpAddress(String adIpAddress) {
this.adIpAddress = adIpAddress;
if(adIpAddress != null){
putQueryParameter("AdIpAddress", adIpAddress);
}
}
public String getAdBackupDnsIpAddress() {
return this.adBackupDnsIpAddress;
}
public void setAdBackupDnsIpAddress(String adBackupDnsIpAddress) {
this.adBackupDnsIpAddress = adBackupDnsIpAddress;
if(adBackupDnsIpAddress != null){
putQueryParameter("AdBackupDnsIpAddress", adBackupDnsIpAddress);
}
}
public String getVpcId() {
return this.vpcId;
}
public void setVpcId(String vpcId) {
this.vpcId = vpcId;
if(vpcId != null){
putQueryParameter("VpcId", vpcId);
}
}
public String getAdBackupIpAddress() {
return this.adBackupIpAddress;
}
public void setAdBackupIpAddress(String adBackupIpAddress) {
this.adBackupIpAddress = adBackupIpAddress;
if(adBackupIpAddress != null){
putQueryParameter("AdBackupIpAddress", adBackupIpAddress);
}
}
public String getAdGroup() {
return this.adGroup;
}
public void setAdGroup(String adGroup) {
this.adGroup = adGroup;
if(adGroup != null){
putQueryParameter("AdGroup", adGroup);
}
}
@Override
public Class<AllocOwnerAuthConfigResponse> getResponseClass() {
return AllocOwnerAuthConfigResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-clouddesktop/1.1.0/com/aliyuncs/clouddesktop/model
|
java-sources/com/aliyun/aliyun-java-sdk-clouddesktop/1.1.0/com/aliyuncs/clouddesktop/model/v20170301/AllocOwnerAuthConfigResponse.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.clouddesktop.model.v20170301;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.clouddesktop.transform.v20170301.AllocOwnerAuthConfigResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class AllocOwnerAuthConfigResponse 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 AllocOwnerAuthConfigResponse getInstance(UnmarshallerContext context) {
return AllocOwnerAuthConfigResponseUnmarshaller.unmarshall(this, context);
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-clouddesktop/1.1.0/com/aliyuncs/clouddesktop/model
|
java-sources/com/aliyun/aliyun-java-sdk-clouddesktop/1.1.0/com/aliyuncs/clouddesktop/model/v20170301/AllocOwnerAuthDefaultRequest.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.clouddesktop.model.v20170301;
import com.aliyuncs.RpcAcsRequest;
/**
* @author auto create
* @version
*/
public class AllocOwnerAuthDefaultRequest extends RpcAcsRequest<AllocOwnerAuthDefaultResponse> {
public AllocOwnerAuthDefaultRequest() {
super("CloudDesktop", "2017-03-01", "AllocOwnerAuthDefault", "CloudDesktop");
}
private String vpcId;
private String securityGroupId;
public String getVpcId() {
return this.vpcId;
}
public void setVpcId(String vpcId) {
this.vpcId = vpcId;
if(vpcId != null){
putQueryParameter("VpcId", vpcId);
}
}
public String getSecurityGroupId() {
return this.securityGroupId;
}
public void setSecurityGroupId(String securityGroupId) {
this.securityGroupId = securityGroupId;
if(securityGroupId != null){
putQueryParameter("SecurityGroupId", securityGroupId);
}
}
@Override
public Class<AllocOwnerAuthDefaultResponse> getResponseClass() {
return AllocOwnerAuthDefaultResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-clouddesktop/1.1.0/com/aliyuncs/clouddesktop/model
|
java-sources/com/aliyun/aliyun-java-sdk-clouddesktop/1.1.0/com/aliyuncs/clouddesktop/model/v20170301/AllocOwnerAuthDefaultResponse.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.clouddesktop.model.v20170301;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.clouddesktop.transform.v20170301.AllocOwnerAuthDefaultResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class AllocOwnerAuthDefaultResponse 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 AllocOwnerAuthDefaultResponse getInstance(UnmarshallerContext context) {
return AllocOwnerAuthDefaultResponseUnmarshaller.unmarshall(this, context);
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-clouddesktop/1.1.0/com/aliyuncs/clouddesktop/model
|
java-sources/com/aliyun/aliyun-java-sdk-clouddesktop/1.1.0/com/aliyuncs/clouddesktop/model/v20170301/ChangeActivityDirectoryPasswordRequest.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.clouddesktop.model.v20170301;
import com.aliyuncs.RpcAcsRequest;
/**
* @author auto create
* @version
*/
public class ChangeActivityDirectoryPasswordRequest extends RpcAcsRequest<ChangeActivityDirectoryPasswordResponse> {
public ChangeActivityDirectoryPasswordRequest() {
super("CloudDesktop", "2017-03-01", "ChangeActivityDirectoryPassword", "CloudDesktop");
}
private String oldPassword;
private String newPassword;
public String getOldPassword() {
return this.oldPassword;
}
public void setOldPassword(String oldPassword) {
this.oldPassword = oldPassword;
if(oldPassword != null){
putQueryParameter("OldPassword", oldPassword);
}
}
public String getNewPassword() {
return this.newPassword;
}
public void setNewPassword(String newPassword) {
this.newPassword = newPassword;
if(newPassword != null){
putQueryParameter("NewPassword", newPassword);
}
}
@Override
public Class<ChangeActivityDirectoryPasswordResponse> getResponseClass() {
return ChangeActivityDirectoryPasswordResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-clouddesktop/1.1.0/com/aliyuncs/clouddesktop/model
|
java-sources/com/aliyun/aliyun-java-sdk-clouddesktop/1.1.0/com/aliyuncs/clouddesktop/model/v20170301/ChangeActivityDirectoryPasswordResponse.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.clouddesktop.model.v20170301;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.clouddesktop.transform.v20170301.ChangeActivityDirectoryPasswordResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class ChangeActivityDirectoryPasswordResponse 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 ChangeActivityDirectoryPasswordResponse getInstance(UnmarshallerContext context) {
return ChangeActivityDirectoryPasswordResponseUnmarshaller.unmarshall(this, context);
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-clouddesktop/1.1.0/com/aliyuncs/clouddesktop/model
|
java-sources/com/aliyun/aliyun-java-sdk-clouddesktop/1.1.0/com/aliyuncs/clouddesktop/model/v20170301/CheckOwnerRoleAuthorizedRequest.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.clouddesktop.model.v20170301;
import com.aliyuncs.RpcAcsRequest;
/**
* @author auto create
* @version
*/
public class CheckOwnerRoleAuthorizedRequest extends RpcAcsRequest<CheckOwnerRoleAuthorizedResponse> {
public CheckOwnerRoleAuthorizedRequest() {
super("CloudDesktop", "2017-03-01", "CheckOwnerRoleAuthorized", "CloudDesktop");
}
@Override
public Class<CheckOwnerRoleAuthorizedResponse> getResponseClass() {
return CheckOwnerRoleAuthorizedResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-clouddesktop/1.1.0/com/aliyuncs/clouddesktop/model
|
java-sources/com/aliyun/aliyun-java-sdk-clouddesktop/1.1.0/com/aliyuncs/clouddesktop/model/v20170301/CheckOwnerRoleAuthorizedResponse.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.clouddesktop.model.v20170301;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.clouddesktop.transform.v20170301.CheckOwnerRoleAuthorizedResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class CheckOwnerRoleAuthorizedResponse 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 CheckOwnerRoleAuthorizedResponse getInstance(UnmarshallerContext context) {
return CheckOwnerRoleAuthorizedResponseUnmarshaller.unmarshall(this, context);
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-clouddesktop/1.1.0/com/aliyuncs/clouddesktop/model
|
java-sources/com/aliyun/aliyun-java-sdk-clouddesktop/1.1.0/com/aliyuncs/clouddesktop/model/v20170301/CopyImageRequest.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.clouddesktop.model.v20170301;
import com.aliyuncs.RpcAcsRequest;
/**
* @author auto create
* @version
*/
public class CopyImageRequest extends RpcAcsRequest<CopyImageResponse> {
public CopyImageRequest() {
super("CloudDesktop", "2017-03-01", "CopyImage", "CloudDesktop");
}
private String imageId;
private String destinationImageName;
private String destinationRegionId;
private String destinationDescription;
public String getImageId() {
return this.imageId;
}
public void setImageId(String imageId) {
this.imageId = imageId;
if(imageId != null){
putQueryParameter("ImageId", imageId);
}
}
public String getDestinationImageName() {
return this.destinationImageName;
}
public void setDestinationImageName(String destinationImageName) {
this.destinationImageName = destinationImageName;
if(destinationImageName != null){
putQueryParameter("DestinationImageName", destinationImageName);
}
}
public String getDestinationRegionId() {
return this.destinationRegionId;
}
public void setDestinationRegionId(String destinationRegionId) {
this.destinationRegionId = destinationRegionId;
if(destinationRegionId != null){
putQueryParameter("DestinationRegionId", destinationRegionId);
}
}
public String getDestinationDescription() {
return this.destinationDescription;
}
public void setDestinationDescription(String destinationDescription) {
this.destinationDescription = destinationDescription;
if(destinationDescription != null){
putQueryParameter("DestinationDescription", destinationDescription);
}
}
@Override
public Class<CopyImageResponse> getResponseClass() {
return CopyImageResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-clouddesktop/1.1.0/com/aliyuncs/clouddesktop/model
|
java-sources/com/aliyun/aliyun-java-sdk-clouddesktop/1.1.0/com/aliyuncs/clouddesktop/model/v20170301/CopyImageResponse.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.clouddesktop.model.v20170301;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.clouddesktop.transform.v20170301.CopyImageResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class CopyImageResponse 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 CopyImageResponse getInstance(UnmarshallerContext context) {
return CopyImageResponseUnmarshaller.unmarshall(this, context);
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-clouddesktop/1.1.0/com/aliyuncs/clouddesktop/model
|
java-sources/com/aliyun/aliyun-java-sdk-clouddesktop/1.1.0/com/aliyuncs/clouddesktop/model/v20170301/CreateCompanyAliasRequest.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.clouddesktop.model.v20170301;
import com.aliyuncs.RpcAcsRequest;
/**
* @author auto create
* @version
*/
public class CreateCompanyAliasRequest extends RpcAcsRequest<CreateCompanyAliasResponse> {
public CreateCompanyAliasRequest() {
super("CloudDesktop", "2017-03-01", "CreateCompanyAlias", "CloudDesktop");
}
private String companyAlias;
public String getCompanyAlias() {
return this.companyAlias;
}
public void setCompanyAlias(String companyAlias) {
this.companyAlias = companyAlias;
if(companyAlias != null){
putQueryParameter("CompanyAlias", companyAlias);
}
}
@Override
public Class<CreateCompanyAliasResponse> getResponseClass() {
return CreateCompanyAliasResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-clouddesktop/1.1.0/com/aliyuncs/clouddesktop/model
|
java-sources/com/aliyun/aliyun-java-sdk-clouddesktop/1.1.0/com/aliyuncs/clouddesktop/model/v20170301/CreateCompanyAliasResponse.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.clouddesktop.model.v20170301;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.clouddesktop.transform.v20170301.CreateCompanyAliasResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class CreateCompanyAliasResponse 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 CreateCompanyAliasResponse getInstance(UnmarshallerContext context) {
return CreateCompanyAliasResponseUnmarshaller.unmarshall(this, context);
}
}
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.