index
int64
repo_id
string
file_path
string
content
string
0
java-sources/com/aliyun/aliyun-java-sdk-cloudauth/2.0.37/com/aliyuncs/cloudauth/model
java-sources/com/aliyun/aliyun-java-sdk-cloudauth/2.0.37/com/aliyuncs/cloudauth/model/v20190307/MobileOnlineTimeResponse.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.cloudauth.model.v20190307; import com.aliyuncs.AcsResponse; import com.aliyuncs.cloudauth.transform.v20190307.MobileOnlineTimeResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class MobileOnlineTimeResponse 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 bizCode; private String ispName; private String timeCode; public String getBizCode() { return this.bizCode; } public void setBizCode(String bizCode) { this.bizCode = bizCode; } public String getIspName() { return this.ispName; } public void setIspName(String ispName) { this.ispName = ispName; } public String getTimeCode() { return this.timeCode; } public void setTimeCode(String timeCode) { this.timeCode = timeCode; } } @Override public MobileOnlineTimeResponse getInstance(UnmarshallerContext context) { return MobileOnlineTimeResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cloudauth/2.0.37/com/aliyuncs/cloudauth/model
java-sources/com/aliyun/aliyun-java-sdk-cloudauth/2.0.37/com/aliyuncs/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.cloudauth.model.v20190307; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.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", "cloudauth"); setMethod(MethodType.POST); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.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/2.0.37/com/aliyuncs/cloudauth/model
java-sources/com/aliyun/aliyun-java-sdk-cloudauth/2.0.37/com/aliyuncs/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.cloudauth.model.v20190307; import com.aliyuncs.AcsResponse; import com.aliyuncs.cloudauth.transform.v20190307.ModifyDeviceInfoResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class ModifyDeviceInfoResponse extends AcsResponse { private String requestId; private String userDeviceId; private String deviceId; private String expiredDay; private String beginDay; private String bizType; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public String getUserDeviceId() { return this.userDeviceId; } public void setUserDeviceId(String userDeviceId) { this.userDeviceId = userDeviceId; } public String getDeviceId() { return this.deviceId; } public void setDeviceId(String deviceId) { this.deviceId = deviceId; } public String getExpiredDay() { return this.expiredDay; } public void setExpiredDay(String expiredDay) { this.expiredDay = expiredDay; } public String getBeginDay() { return this.beginDay; } public void setBeginDay(String beginDay) { this.beginDay = beginDay; } public String getBizType() { return this.bizType; } public void setBizType(String bizType) { this.bizType = bizType; } @Override public ModifyDeviceInfoResponse getInstance(UnmarshallerContext context) { return ModifyDeviceInfoResponseUnmarshaller.unmarshall(this, context); } }
0
java-sources/com/aliyun/aliyun-java-sdk-cloudauth/2.0.37/com/aliyuncs/cloudauth/model
java-sources/com/aliyun/aliyun-java-sdk-cloudauth/2.0.37/com/aliyuncs/cloudauth/model/v20190307/PageQueryWhiteListSettingRequest.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.cloudauth.model.v20190307; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.ProtocolType; import com.aliyuncs.http.MethodType; import com.aliyuncs.cloudauth.Endpoint; /** * @author auto create * @version */ public class PageQueryWhiteListSettingRequest extends RpcAcsRequest<PageQueryWhiteListSettingResponse> { private String validEndDate; private String certifyId; private String certNo; private Integer pageSize; private Integer currentPage; private String serviceCode; private Long sceneId; private String validStartDate; private String status; public PageQueryWhiteListSettingRequest() { super("Cloudauth", "2019-03-07", "PageQueryWhiteListSetting", "cloudauth"); setProtocol(ProtocolType.HTTPS); setMethod(MethodType.POST); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.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 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 Integer getPageSize() { return this.pageSize; } public void setPageSize(Integer pageSize) { this.pageSize = pageSize; if(pageSize != null){ putQueryParameter("PageSize", pageSize.toString()); } } 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 String getValidStartDate() { return this.validStartDate; } public void setValidStartDate(String validStartDate) { this.validStartDate = validStartDate; if(validStartDate != null){ putQueryParameter("ValidStartDate", validStartDate); } } public String getStatus() { return this.status; } public void setStatus(String status) { this.status = status; if(status != null){ putQueryParameter("Status", status); } } @Override public Class<PageQueryWhiteListSettingResponse> getResponseClass() { return PageQueryWhiteListSettingResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cloudauth/2.0.37/com/aliyuncs/cloudauth/model
java-sources/com/aliyun/aliyun-java-sdk-cloudauth/2.0.37/com/aliyuncs/cloudauth/model/v20190307/PageQueryWhiteListSettingResponse.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.cloudauth.model.v20190307; import java.util.List; import com.aliyuncs.AcsResponse; import com.aliyuncs.cloudauth.transform.v20190307.PageQueryWhiteListSettingResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class PageQueryWhiteListSettingResponse extends AcsResponse { private String requestId; private String code; private String message; private Boolean success; private Integer totalItem; private Integer totalPage; private Integer currentPage; private Integer pageSize; private List<ResultObjectItem> 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 Boolean getSuccess() { return this.success; } public void setSuccess(Boolean success) { this.success = success; } public Integer getTotalItem() { return this.totalItem; } public void setTotalItem(Integer totalItem) { this.totalItem = totalItem; } public Integer getTotalPage() { return this.totalPage; } public void setTotalPage(Integer totalPage) { this.totalPage = totalPage; } 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<ResultObjectItem> getResultObject() { return this.resultObject; } public void setResultObject(List<ResultObjectItem> resultObject) { this.resultObject = resultObject; } public static class ResultObjectItem { private Long id; private String gmtCreate; private String gmtModified; private String serviceCode; private String certifyId; private String certNo; private Long sceneId; private String validStartDate; private String validEndDate; private String status; private String remark; public Long getId() { return this.id; } public void setId(Long id) { this.id = id; } 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; } public String getServiceCode() { return this.serviceCode; } public void setServiceCode(String serviceCode) { this.serviceCode = serviceCode; } public String getCertifyId() { return this.certifyId; } public void setCertifyId(String certifyId) { this.certifyId = certifyId; } public String getCertNo() { return this.certNo; } public void setCertNo(String certNo) { this.certNo = certNo; } 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 getStatus() { return this.status; } public void setStatus(String status) { this.status = status; } public String getRemark() { return this.remark; } public void setRemark(String remark) { this.remark = remark; } } @Override public PageQueryWhiteListSettingResponse getInstance(UnmarshallerContext context) { return PageQueryWhiteListSettingResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cloudauth/2.0.37/com/aliyuncs/cloudauth/model
java-sources/com/aliyun/aliyun-java-sdk-cloudauth/2.0.37/com/aliyuncs/cloudauth/model/v20190307/RemoveWhiteListSettingRequest.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.cloudauth.model.v20190307; import com.aliyuncs.RpcAcsRequest; import java.util.List; import com.google.gson.Gson; import com.google.gson.annotations.SerializedName; import com.aliyuncs.http.ProtocolType; import com.aliyuncs.http.MethodType; import com.aliyuncs.cloudauth.Endpoint; /** * @author auto create * @version */ public class RemoveWhiteListSettingRequest extends RpcAcsRequest<RemoveWhiteListSettingResponse> { private String serviceCode; @SerializedName("ids") private List<Long> ids; public RemoveWhiteListSettingRequest() { super("Cloudauth", "2019-03-07", "RemoveWhiteListSetting", "cloudauth"); setProtocol(ProtocolType.HTTPS); setMethod(MethodType.POST); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } public String getServiceCode() { return this.serviceCode; } public void setServiceCode(String serviceCode) { this.serviceCode = serviceCode; if(serviceCode != null){ putQueryParameter("ServiceCode", serviceCode); } } public List<Long> getIds() { return this.ids; } public void setIds(List<Long> ids) { this.ids = ids; if (ids != null) { putQueryParameter("Ids" , new Gson().toJson(ids)); } } @Override public Class<RemoveWhiteListSettingResponse> getResponseClass() { return RemoveWhiteListSettingResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cloudauth/2.0.37/com/aliyuncs/cloudauth/model
java-sources/com/aliyun/aliyun-java-sdk-cloudauth/2.0.37/com/aliyuncs/cloudauth/model/v20190307/RemoveWhiteListSettingResponse.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.cloudauth.model.v20190307; import com.aliyuncs.AcsResponse; import com.aliyuncs.cloudauth.transform.v20190307.RemoveWhiteListSettingResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class RemoveWhiteListSettingResponse extends AcsResponse { private String requestId; private String code; private String message; private Boolean success; private Boolean 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 Boolean getSuccess() { return this.success; } public void setSuccess(Boolean success) { this.success = success; } public Boolean getResultObject() { return this.resultObject; } public void setResultObject(Boolean resultObject) { this.resultObject = resultObject; } @Override public RemoveWhiteListSettingResponse getInstance(UnmarshallerContext context) { return RemoveWhiteListSettingResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cloudauth/2.0.37/com/aliyuncs/cloudauth/model
java-sources/com/aliyun/aliyun-java-sdk-cloudauth/2.0.37/com/aliyuncs/cloudauth/model/v20190307/Vehicle5ItemQueryRequest.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.cloudauth.model.v20190307; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.ProtocolType; import com.aliyuncs.http.MethodType; import com.aliyuncs.cloudauth.Endpoint; /** * @author auto create * @version */ public class Vehicle5ItemQueryRequest extends RpcAcsRequest<Vehicle5ItemQueryResponse> { private String vehicleType; private String paramType; private String vehicleNum; public Vehicle5ItemQueryRequest() { super("Cloudauth", "2019-03-07", "Vehicle5ItemQuery", "cloudauth"); setProtocol(ProtocolType.HTTPS); setMethod(MethodType.POST); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } public String getVehicleType() { return this.vehicleType; } public void setVehicleType(String vehicleType) { this.vehicleType = vehicleType; if(vehicleType != null){ putQueryParameter("VehicleType", vehicleType); } } public String getParamType() { return this.paramType; } public void setParamType(String paramType) { this.paramType = paramType; if(paramType != null){ putQueryParameter("ParamType", paramType); } } public String getVehicleNum() { return this.vehicleNum; } public void setVehicleNum(String vehicleNum) { this.vehicleNum = vehicleNum; if(vehicleNum != null){ putQueryParameter("VehicleNum", vehicleNum); } } @Override public Class<Vehicle5ItemQueryResponse> getResponseClass() { return Vehicle5ItemQueryResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cloudauth/2.0.37/com/aliyuncs/cloudauth/model
java-sources/com/aliyun/aliyun-java-sdk-cloudauth/2.0.37/com/aliyuncs/cloudauth/model/v20190307/Vehicle5ItemQueryResponse.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.cloudauth.model.v20190307; import com.aliyuncs.AcsResponse; import com.aliyuncs.cloudauth.transform.v20190307.Vehicle5ItemQueryResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class Vehicle5ItemQueryResponse 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 bizCode; private String vehicleInfo; public String getBizCode() { return this.bizCode; } public void setBizCode(String bizCode) { this.bizCode = bizCode; } public String getVehicleInfo() { return this.vehicleInfo; } public void setVehicleInfo(String vehicleInfo) { this.vehicleInfo = vehicleInfo; } } @Override public Vehicle5ItemQueryResponse getInstance(UnmarshallerContext context) { return Vehicle5ItemQueryResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cloudauth/2.0.37/com/aliyuncs/cloudauth/model
java-sources/com/aliyun/aliyun-java-sdk-cloudauth/2.0.37/com/aliyuncs/cloudauth/model/v20190307/VehicleInsureQueryRequest.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.cloudauth.model.v20190307; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.ProtocolType; import com.aliyuncs.http.MethodType; import com.aliyuncs.cloudauth.Endpoint; /** * @author auto create * @version */ public class VehicleInsureQueryRequest extends RpcAcsRequest<VehicleInsureQueryResponse> { private String vehicleType; private String paramType; private String vehicleNum; private String vin; public VehicleInsureQueryRequest() { super("Cloudauth", "2019-03-07", "VehicleInsureQuery", "cloudauth"); setProtocol(ProtocolType.HTTPS); setMethod(MethodType.POST); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } public String getVehicleType() { return this.vehicleType; } public void setVehicleType(String vehicleType) { this.vehicleType = vehicleType; if(vehicleType != null){ putQueryParameter("VehicleType", vehicleType); } } public String getParamType() { return this.paramType; } public void setParamType(String paramType) { this.paramType = paramType; if(paramType != null){ putQueryParameter("ParamType", paramType); } } public String getVehicleNum() { return this.vehicleNum; } public void setVehicleNum(String vehicleNum) { this.vehicleNum = vehicleNum; if(vehicleNum != null){ putQueryParameter("VehicleNum", vehicleNum); } } public String getVin() { return this.vin; } public void setVin(String vin) { this.vin = vin; if(vin != null){ putQueryParameter("Vin", vin); } } @Override public Class<VehicleInsureQueryResponse> getResponseClass() { return VehicleInsureQueryResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cloudauth/2.0.37/com/aliyuncs/cloudauth/model
java-sources/com/aliyun/aliyun-java-sdk-cloudauth/2.0.37/com/aliyuncs/cloudauth/model/v20190307/VehicleInsureQueryResponse.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.cloudauth.model.v20190307; import com.aliyuncs.AcsResponse; import com.aliyuncs.cloudauth.transform.v20190307.VehicleInsureQueryResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class VehicleInsureQueryResponse 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 bizCode; private String vehicleInfo; public String getBizCode() { return this.bizCode; } public void setBizCode(String bizCode) { this.bizCode = bizCode; } public String getVehicleInfo() { return this.vehicleInfo; } public void setVehicleInfo(String vehicleInfo) { this.vehicleInfo = vehicleInfo; } } @Override public VehicleInsureQueryResponse getInstance(UnmarshallerContext context) { return VehicleInsureQueryResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cloudauth/2.0.37/com/aliyuncs/cloudauth/model
java-sources/com/aliyun/aliyun-java-sdk-cloudauth/2.0.37/com/aliyuncs/cloudauth/model/v20190307/VehicleMetaVerifyRequest.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.cloudauth.model.v20190307; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.ProtocolType; import com.aliyuncs.http.MethodType; import com.aliyuncs.cloudauth.Endpoint; /** * @author auto create * @version */ public class VehicleMetaVerifyRequest extends RpcAcsRequest<VehicleMetaVerifyResponse> { private String vehicleType; private String paramType; private String vehicleNum; private String identifyNum; private String verifyMetaType; private String userName; public VehicleMetaVerifyRequest() { super("Cloudauth", "2019-03-07", "VehicleMetaVerify", "cloudauth"); setProtocol(ProtocolType.HTTPS); setMethod(MethodType.POST); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } public String getVehicleType() { return this.vehicleType; } public void setVehicleType(String vehicleType) { this.vehicleType = vehicleType; if(vehicleType != null){ putQueryParameter("VehicleType", vehicleType); } } public String getParamType() { return this.paramType; } public void setParamType(String paramType) { this.paramType = paramType; if(paramType != null){ putQueryParameter("ParamType", paramType); } } public String getVehicleNum() { return this.vehicleNum; } public void setVehicleNum(String vehicleNum) { this.vehicleNum = vehicleNum; if(vehicleNum != null){ putQueryParameter("VehicleNum", vehicleNum); } } public String getIdentifyNum() { return this.identifyNum; } public void setIdentifyNum(String identifyNum) { this.identifyNum = identifyNum; if(identifyNum != null){ putQueryParameter("IdentifyNum", identifyNum); } } public String getVerifyMetaType() { return this.verifyMetaType; } public void setVerifyMetaType(String verifyMetaType) { this.verifyMetaType = verifyMetaType; if(verifyMetaType != null){ putQueryParameter("VerifyMetaType", verifyMetaType); } } public String getUserName() { return this.userName; } public void setUserName(String userName) { this.userName = userName; if(userName != null){ putQueryParameter("UserName", userName); } } @Override public Class<VehicleMetaVerifyResponse> getResponseClass() { return VehicleMetaVerifyResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cloudauth/2.0.37/com/aliyuncs/cloudauth/model
java-sources/com/aliyun/aliyun-java-sdk-cloudauth/2.0.37/com/aliyuncs/cloudauth/model/v20190307/VehicleMetaVerifyResponse.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.cloudauth.model.v20190307; import com.aliyuncs.AcsResponse; import com.aliyuncs.cloudauth.transform.v20190307.VehicleMetaVerifyResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class VehicleMetaVerifyResponse 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 bizCode; public String getBizCode() { return this.bizCode; } public void setBizCode(String bizCode) { this.bizCode = bizCode; } } @Override public VehicleMetaVerifyResponse getInstance(UnmarshallerContext context) { return VehicleMetaVerifyResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cloudauth/2.0.37/com/aliyuncs/cloudauth/model
java-sources/com/aliyun/aliyun-java-sdk-cloudauth/2.0.37/com/aliyuncs/cloudauth/model/v20190307/VehicleMetaVerifyV2Request.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.cloudauth.model.v20190307; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.ProtocolType; import com.aliyuncs.http.MethodType; import com.aliyuncs.cloudauth.Endpoint; /** * @author auto create * @version */ public class VehicleMetaVerifyV2Request extends RpcAcsRequest<VehicleMetaVerifyV2Response> { private String vehicleType; private String paramType; private String vehicleNum; private String identifyNum; private String verifyMetaType; private String userName; public VehicleMetaVerifyV2Request() { super("Cloudauth", "2019-03-07", "VehicleMetaVerifyV2", "cloudauth"); setProtocol(ProtocolType.HTTPS); setMethod(MethodType.POST); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } public String getVehicleType() { return this.vehicleType; } public void setVehicleType(String vehicleType) { this.vehicleType = vehicleType; if(vehicleType != null){ putQueryParameter("VehicleType", vehicleType); } } public String getParamType() { return this.paramType; } public void setParamType(String paramType) { this.paramType = paramType; if(paramType != null){ putQueryParameter("ParamType", paramType); } } public String getVehicleNum() { return this.vehicleNum; } public void setVehicleNum(String vehicleNum) { this.vehicleNum = vehicleNum; if(vehicleNum != null){ putQueryParameter("VehicleNum", vehicleNum); } } public String getIdentifyNum() { return this.identifyNum; } public void setIdentifyNum(String identifyNum) { this.identifyNum = identifyNum; if(identifyNum != null){ putQueryParameter("IdentifyNum", identifyNum); } } public String getVerifyMetaType() { return this.verifyMetaType; } public void setVerifyMetaType(String verifyMetaType) { this.verifyMetaType = verifyMetaType; if(verifyMetaType != null){ putQueryParameter("VerifyMetaType", verifyMetaType); } } public String getUserName() { return this.userName; } public void setUserName(String userName) { this.userName = userName; if(userName != null){ putQueryParameter("UserName", userName); } } @Override public Class<VehicleMetaVerifyV2Response> getResponseClass() { return VehicleMetaVerifyV2Response.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cloudauth/2.0.37/com/aliyuncs/cloudauth/model
java-sources/com/aliyun/aliyun-java-sdk-cloudauth/2.0.37/com/aliyuncs/cloudauth/model/v20190307/VehicleMetaVerifyV2Response.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.cloudauth.model.v20190307; import com.aliyuncs.AcsResponse; import com.aliyuncs.cloudauth.transform.v20190307.VehicleMetaVerifyV2ResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class VehicleMetaVerifyV2Response 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 bizCode; private String vehicleInfo; public String getBizCode() { return this.bizCode; } public void setBizCode(String bizCode) { this.bizCode = bizCode; } public String getVehicleInfo() { return this.vehicleInfo; } public void setVehicleInfo(String vehicleInfo) { this.vehicleInfo = vehicleInfo; } } @Override public VehicleMetaVerifyV2Response getInstance(UnmarshallerContext context) { return VehicleMetaVerifyV2ResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cloudauth/2.0.37/com/aliyuncs/cloudauth/model
java-sources/com/aliyun/aliyun-java-sdk-cloudauth/2.0.37/com/aliyuncs/cloudauth/model/v20190307/VehicleQueryRequest.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.cloudauth.model.v20190307; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.ProtocolType; import com.aliyuncs.http.MethodType; import com.aliyuncs.cloudauth.Endpoint; /** * @author auto create * @version */ public class VehicleQueryRequest extends RpcAcsRequest<VehicleQueryResponse> { private String vehicleType; private String paramType; private String vehicleNum; public VehicleQueryRequest() { super("Cloudauth", "2019-03-07", "VehicleQuery", "cloudauth"); setProtocol(ProtocolType.HTTPS); setMethod(MethodType.POST); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } public String getVehicleType() { return this.vehicleType; } public void setVehicleType(String vehicleType) { this.vehicleType = vehicleType; if(vehicleType != null){ putQueryParameter("VehicleType", vehicleType); } } public String getParamType() { return this.paramType; } public void setParamType(String paramType) { this.paramType = paramType; if(paramType != null){ putQueryParameter("ParamType", paramType); } } public String getVehicleNum() { return this.vehicleNum; } public void setVehicleNum(String vehicleNum) { this.vehicleNum = vehicleNum; if(vehicleNum != null){ putQueryParameter("VehicleNum", vehicleNum); } } @Override public Class<VehicleQueryResponse> getResponseClass() { return VehicleQueryResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cloudauth/2.0.37/com/aliyuncs/cloudauth/model
java-sources/com/aliyun/aliyun-java-sdk-cloudauth/2.0.37/com/aliyuncs/cloudauth/model/v20190307/VehicleQueryResponse.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.cloudauth.model.v20190307; import com.aliyuncs.AcsResponse; import com.aliyuncs.cloudauth.transform.v20190307.VehicleQueryResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class VehicleQueryResponse 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 bizCode; private String vehicleInfo; public String getBizCode() { return this.bizCode; } public void setBizCode(String bizCode) { this.bizCode = bizCode; } public String getVehicleInfo() { return this.vehicleInfo; } public void setVehicleInfo(String vehicleInfo) { this.vehicleInfo = vehicleInfo; } } @Override public VehicleQueryResponse getInstance(UnmarshallerContext context) { return VehicleQueryResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cloudauth/2.0.37/com/aliyuncs/cloudauth/model
java-sources/com/aliyun/aliyun-java-sdk-cloudauth/2.0.37/com/aliyuncs/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.cloudauth.model.v20190307; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.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", "cloudauth"); setMethod(MethodType.POST); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.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/2.0.37/com/aliyuncs/cloudauth/model
java-sources/com/aliyun/aliyun-java-sdk-cloudauth/2.0.37/com/aliyuncs/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.cloudauth.model.v20190307; import com.aliyuncs.AcsResponse; import com.aliyuncs.cloudauth.transform.v20190307.VerifyMaterialResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class VerifyMaterialResponse extends AcsResponse { private Float authorityComparisionScore; private Integer verifyStatus; private String requestId; private String verifyToken; private Float idCardFaceComparisonScore; private Material material; public Float getAuthorityComparisionScore() { return this.authorityComparisionScore; } public void setAuthorityComparisionScore(Float authorityComparisionScore) { this.authorityComparisionScore = authorityComparisionScore; } public Integer getVerifyStatus() { return this.verifyStatus; } public void setVerifyStatus(Integer verifyStatus) { this.verifyStatus = verifyStatus; } 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 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 idCardNumber; private String faceGlobalUrl; private String faceImageUrl; private String faceMask; private String idCardName; private String faceQuality; private IdCardInfo idCardInfo; public String getIdCardNumber() { return this.idCardNumber; } public void setIdCardNumber(String idCardNumber) { this.idCardNumber = idCardNumber; } public String getFaceGlobalUrl() { return this.faceGlobalUrl; } public void setFaceGlobalUrl(String faceGlobalUrl) { this.faceGlobalUrl = faceGlobalUrl; } public String getFaceImageUrl() { return this.faceImageUrl; } public void setFaceImageUrl(String faceImageUrl) { this.faceImageUrl = faceImageUrl; } public String getFaceMask() { return this.faceMask; } public void setFaceMask(String faceMask) { this.faceMask = faceMask; } public String getIdCardName() { return this.idCardName; } public void setIdCardName(String idCardName) { this.idCardName = idCardName; } public String getFaceQuality() { return this.faceQuality; } public void setFaceQuality(String faceQuality) { this.faceQuality = faceQuality; } public IdCardInfo getIdCardInfo() { return this.idCardInfo; } public void setIdCardInfo(IdCardInfo idCardInfo) { this.idCardInfo = idCardInfo; } public static class IdCardInfo { private String sex; private String endDate; private String authority; private String address; private String number; private String startDate; private String backImageUrl; private String nationality; private String birth; private String name; private String frontImageUrl; public String getSex() { return this.sex; } public void setSex(String sex) { this.sex = sex; } public String getEndDate() { return this.endDate; } public void setEndDate(String endDate) { this.endDate = endDate; } public String getAuthority() { return this.authority; } public void setAuthority(String authority) { this.authority = authority; } public String getAddress() { return this.address; } public void setAddress(String address) { this.address = address; } public String getNumber() { return this.number; } public void setNumber(String number) { this.number = number; } public String getStartDate() { return this.startDate; } public void setStartDate(String startDate) { this.startDate = startDate; } public String getBackImageUrl() { return this.backImageUrl; } public void setBackImageUrl(String backImageUrl) { this.backImageUrl = backImageUrl; } public String getNationality() { return this.nationality; } public void setNationality(String nationality) { this.nationality = nationality; } public String getBirth() { return this.birth; } public void setBirth(String birth) { this.birth = birth; } public String getName() { return this.name; } public void setName(String name) { this.name = name; } public String getFrontImageUrl() { return this.frontImageUrl; } public void setFrontImageUrl(String frontImageUrl) { this.frontImageUrl = frontImageUrl; } } } @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/2.0.37/com/aliyuncs/cloudauth/transform
java-sources/com/aliyun/aliyun-java-sdk-cloudauth/2.0.37/com/aliyuncs/cloudauth/transform/v20190307/AIGCFaceVerifyResponseUnmarshaller.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.cloudauth.transform.v20190307; import com.aliyuncs.cloudauth.model.v20190307.AIGCFaceVerifyResponse; import com.aliyuncs.cloudauth.model.v20190307.AIGCFaceVerifyResponse.ResultObject; import com.aliyuncs.transform.UnmarshallerContext; public class AIGCFaceVerifyResponseUnmarshaller { public static AIGCFaceVerifyResponse unmarshall(AIGCFaceVerifyResponse aIGCFaceVerifyResponse, UnmarshallerContext _ctx) { aIGCFaceVerifyResponse.setRequestId(_ctx.stringValue("AIGCFaceVerifyResponse.RequestId")); aIGCFaceVerifyResponse.setMessage(_ctx.stringValue("AIGCFaceVerifyResponse.Message")); aIGCFaceVerifyResponse.setCode(_ctx.stringValue("AIGCFaceVerifyResponse.Code")); ResultObject resultObject = new ResultObject(); resultObject.setResult(_ctx.stringValue("AIGCFaceVerifyResponse.ResultObject.Result")); resultObject.setScore(_ctx.stringValue("AIGCFaceVerifyResponse.ResultObject.Score")); resultObject.setCertifyId(_ctx.stringValue("AIGCFaceVerifyResponse.ResultObject.CertifyId")); aIGCFaceVerifyResponse.setResultObject(resultObject); return aIGCFaceVerifyResponse; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cloudauth/2.0.37/com/aliyuncs/cloudauth/transform
java-sources/com/aliyun/aliyun-java-sdk-cloudauth/2.0.37/com/aliyuncs/cloudauth/transform/v20190307/BankMetaVerifyResponseUnmarshaller.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.cloudauth.transform.v20190307; import com.aliyuncs.cloudauth.model.v20190307.BankMetaVerifyResponse; import com.aliyuncs.cloudauth.model.v20190307.BankMetaVerifyResponse.ResultObject; import com.aliyuncs.transform.UnmarshallerContext; public class BankMetaVerifyResponseUnmarshaller { public static BankMetaVerifyResponse unmarshall(BankMetaVerifyResponse bankMetaVerifyResponse, UnmarshallerContext _ctx) { bankMetaVerifyResponse.setRequestId(_ctx.stringValue("BankMetaVerifyResponse.RequestId")); bankMetaVerifyResponse.setCode(_ctx.stringValue("BankMetaVerifyResponse.Code")); bankMetaVerifyResponse.setMessage(_ctx.stringValue("BankMetaVerifyResponse.Message")); ResultObject resultObject = new ResultObject(); resultObject.setBizCode(_ctx.stringValue("BankMetaVerifyResponse.ResultObject.BizCode")); resultObject.setSubCode(_ctx.stringValue("BankMetaVerifyResponse.ResultObject.SubCode")); bankMetaVerifyResponse.setResultObject(resultObject); return bankMetaVerifyResponse; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cloudauth/2.0.37/com/aliyuncs/cloudauth/transform
java-sources/com/aliyun/aliyun-java-sdk-cloudauth/2.0.37/com/aliyuncs/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.cloudauth.transform.v20190307; import com.aliyuncs.cloudauth.model.v20190307.CompareFaceVerifyResponse; import com.aliyuncs.cloudauth.model.v20190307.CompareFaceVerifyResponse.ResultObject; import com.aliyuncs.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/2.0.37/com/aliyuncs/cloudauth/transform
java-sources/com/aliyun/aliyun-java-sdk-cloudauth/2.0.37/com/aliyuncs/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.cloudauth.transform.v20190307; import com.aliyuncs.cloudauth.model.v20190307.CompareFacesResponse; import com.aliyuncs.cloudauth.model.v20190307.CompareFacesResponse.Data; import com.aliyuncs.transform.UnmarshallerContext; public class CompareFacesResponseUnmarshaller { public static CompareFacesResponse unmarshall(CompareFacesResponse compareFacesResponse, UnmarshallerContext _ctx) { compareFacesResponse.setRequestId(_ctx.stringValue("CompareFacesResponse.RequestId")); compareFacesResponse.setCode(_ctx.stringValue("CompareFacesResponse.Code")); compareFacesResponse.setMessage(_ctx.stringValue("CompareFacesResponse.Message")); compareFacesResponse.setSuccess(_ctx.booleanValue("CompareFacesResponse.Success")); 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/2.0.37/com/aliyuncs/cloudauth/transform
java-sources/com/aliyun/aliyun-java-sdk-cloudauth/2.0.37/com/aliyuncs/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.cloudauth.transform.v20190307; import com.aliyuncs.cloudauth.model.v20190307.ContrastFaceVerifyResponse; import com.aliyuncs.cloudauth.model.v20190307.ContrastFaceVerifyResponse.ResultObject; import com.aliyuncs.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/2.0.37/com/aliyuncs/cloudauth/transform
java-sources/com/aliyun/aliyun-java-sdk-cloudauth/2.0.37/com/aliyuncs/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.cloudauth.transform.v20190307; import com.aliyuncs.cloudauth.model.v20190307.CreateAuthKeyResponse; import com.aliyuncs.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/2.0.37/com/aliyuncs/cloudauth/transform
java-sources/com/aliyun/aliyun-java-sdk-cloudauth/2.0.37/com/aliyuncs/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.cloudauth.transform.v20190307; import java.util.ArrayList; import java.util.List; import com.aliyuncs.cloudauth.model.v20190307.CreateVerifySettingResponse; import com.aliyuncs.transform.UnmarshallerContext; public class CreateVerifySettingResponseUnmarshaller { public static CreateVerifySettingResponse unmarshall(CreateVerifySettingResponse createVerifySettingResponse, UnmarshallerContext _ctx) { createVerifySettingResponse.setRequestId(_ctx.stringValue("CreateVerifySettingResponse.RequestId")); createVerifySettingResponse.setBizName(_ctx.stringValue("CreateVerifySettingResponse.BizName")); createVerifySettingResponse.setSolution(_ctx.stringValue("CreateVerifySettingResponse.Solution")); createVerifySettingResponse.setBizType(_ctx.stringValue("CreateVerifySettingResponse.BizType")); 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/2.0.37/com/aliyuncs/cloudauth/transform
java-sources/com/aliyun/aliyun-java-sdk-cloudauth/2.0.37/com/aliyuncs/cloudauth/transform/v20190307/CredentialVerifyResponseUnmarshaller.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.cloudauth.transform.v20190307; import com.aliyuncs.cloudauth.model.v20190307.CredentialVerifyResponse; import com.aliyuncs.cloudauth.model.v20190307.CredentialVerifyResponse.ResultObject; import com.aliyuncs.cloudauth.model.v20190307.CredentialVerifyResponse.ResultObject.VlResult; import java.util.Map; import com.aliyuncs.transform.UnmarshallerContext; public class CredentialVerifyResponseUnmarshaller { public static CredentialVerifyResponse unmarshall(CredentialVerifyResponse credentialVerifyResponse, UnmarshallerContext _ctx) { credentialVerifyResponse.setRequestId(_ctx.stringValue("CredentialVerifyResponse.RequestId")); credentialVerifyResponse.setCode(_ctx.stringValue("CredentialVerifyResponse.Code")); credentialVerifyResponse.setMessage(_ctx.stringValue("CredentialVerifyResponse.Message")); ResultObject resultObject = new ResultObject(); resultObject.setResult(_ctx.stringValue("CredentialVerifyResponse.ResultObject.Result")); resultObject.setRiskTag(_ctx.stringValue("CredentialVerifyResponse.ResultObject.RiskTag")); resultObject.setRiskScore(_ctx.mapValue("CredentialVerifyResponse.ResultObject.RiskScore")); resultObject.setOcrInfo(_ctx.stringValue("CredentialVerifyResponse.ResultObject.OcrInfo")); resultObject.setVerifyResult(_ctx.stringValue("CredentialVerifyResponse.ResultObject.VerifyResult")); resultObject.setVerifyDetail(_ctx.stringValue("CredentialVerifyResponse.ResultObject.VerifyDetail")); resultObject.setMaterialInfo(_ctx.stringValue("CredentialVerifyResponse.ResultObject.MaterialInfo")); VlResult vlResult = new VlResult(); vlResult.setSuccess(_ctx.booleanValue("CredentialVerifyResponse.ResultObject.VlResult.Success")); vlResult.setVlContent(_ctx.stringValue("CredentialVerifyResponse.ResultObject.VlResult.VlContent")); resultObject.setVlResult(vlResult); credentialVerifyResponse.setResultObject(resultObject); return credentialVerifyResponse; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cloudauth/2.0.37/com/aliyuncs/cloudauth/transform
java-sources/com/aliyun/aliyun-java-sdk-cloudauth/2.0.37/com/aliyuncs/cloudauth/transform/v20190307/DeepfakeDetectResponseUnmarshaller.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.cloudauth.transform.v20190307; import com.aliyuncs.cloudauth.model.v20190307.DeepfakeDetectResponse; import com.aliyuncs.cloudauth.model.v20190307.DeepfakeDetectResponse.ResultObject; import java.util.Map; import com.aliyuncs.transform.UnmarshallerContext; public class DeepfakeDetectResponseUnmarshaller { public static DeepfakeDetectResponse unmarshall(DeepfakeDetectResponse deepfakeDetectResponse, UnmarshallerContext _ctx) { deepfakeDetectResponse.setRequestId(_ctx.stringValue("DeepfakeDetectResponse.RequestId")); deepfakeDetectResponse.setCode(_ctx.stringValue("DeepfakeDetectResponse.Code")); deepfakeDetectResponse.setMessage(_ctx.stringValue("DeepfakeDetectResponse.Message")); ResultObject resultObject = new ResultObject(); resultObject.setResult(_ctx.stringValue("DeepfakeDetectResponse.ResultObject.Result")); resultObject.setRiskTag(_ctx.stringValue("DeepfakeDetectResponse.ResultObject.RiskTag")); resultObject.setRiskScore(_ctx.mapValue("DeepfakeDetectResponse.ResultObject.RiskScore")); deepfakeDetectResponse.setResultObject(resultObject); return deepfakeDetectResponse; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cloudauth/2.0.37/com/aliyuncs/cloudauth/transform
java-sources/com/aliyun/aliyun-java-sdk-cloudauth/2.0.37/com/aliyuncs/cloudauth/transform/v20190307/DeleteFaceVerifyResultResponseUnmarshaller.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.cloudauth.transform.v20190307; import com.aliyuncs.cloudauth.model.v20190307.DeleteFaceVerifyResultResponse; import com.aliyuncs.cloudauth.model.v20190307.DeleteFaceVerifyResultResponse.ResultObject; import com.aliyuncs.transform.UnmarshallerContext; public class DeleteFaceVerifyResultResponseUnmarshaller { public static DeleteFaceVerifyResultResponse unmarshall(DeleteFaceVerifyResultResponse deleteFaceVerifyResultResponse, UnmarshallerContext _ctx) { deleteFaceVerifyResultResponse.setRequestId(_ctx.stringValue("DeleteFaceVerifyResultResponse.RequestId")); deleteFaceVerifyResultResponse.setCode(_ctx.stringValue("DeleteFaceVerifyResultResponse.Code")); deleteFaceVerifyResultResponse.setMessage(_ctx.stringValue("DeleteFaceVerifyResultResponse.Message")); ResultObject resultObject = new ResultObject(); resultObject.setCertifyId(_ctx.stringValue("DeleteFaceVerifyResultResponse.ResultObject.CertifyId")); resultObject.setDeleteResult(_ctx.stringValue("DeleteFaceVerifyResultResponse.ResultObject.DeleteResult")); resultObject.setFailReason(_ctx.stringValue("DeleteFaceVerifyResultResponse.ResultObject.FailReason")); deleteFaceVerifyResultResponse.setResultObject(resultObject); return deleteFaceVerifyResultResponse; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cloudauth/2.0.37/com/aliyuncs/cloudauth/transform
java-sources/com/aliyun/aliyun-java-sdk-cloudauth/2.0.37/com/aliyuncs/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.cloudauth.transform.v20190307; import java.util.ArrayList; import java.util.List; import com.aliyuncs.cloudauth.model.v20190307.DescribeDeviceInfoResponse; import com.aliyuncs.cloudauth.model.v20190307.DescribeDeviceInfoResponse.DeviceInfo; import com.aliyuncs.transform.UnmarshallerContext; public class DescribeDeviceInfoResponseUnmarshaller { public static DescribeDeviceInfoResponse unmarshall(DescribeDeviceInfoResponse describeDeviceInfoResponse, UnmarshallerContext _ctx) { describeDeviceInfoResponse.setRequestId(_ctx.stringValue("DescribeDeviceInfoResponse.RequestId")); describeDeviceInfoResponse.setCurrentPage(_ctx.integerValue("DescribeDeviceInfoResponse.CurrentPage")); describeDeviceInfoResponse.setPageSize(_ctx.integerValue("DescribeDeviceInfoResponse.PageSize")); describeDeviceInfoResponse.setTotalCount(_ctx.integerValue("DescribeDeviceInfoResponse.TotalCount")); List<DeviceInfo> deviceInfoList = new ArrayList<DeviceInfo>(); for (int i = 0; i < _ctx.lengthValue("DescribeDeviceInfoResponse.DeviceInfoList.Length"); i++) { DeviceInfo deviceInfo = new DeviceInfo(); deviceInfo.setExpiredDay(_ctx.stringValue("DescribeDeviceInfoResponse.DeviceInfoList["+ i +"].ExpiredDay")); deviceInfo.setUserDeviceId(_ctx.stringValue("DescribeDeviceInfoResponse.DeviceInfoList["+ i +"].UserDeviceId")); deviceInfo.setDeviceId(_ctx.stringValue("DescribeDeviceInfoResponse.DeviceInfoList["+ i +"].DeviceId")); deviceInfo.setBeginDay(_ctx.stringValue("DescribeDeviceInfoResponse.DeviceInfoList["+ i +"].BeginDay")); deviceInfo.setBizType(_ctx.stringValue("DescribeDeviceInfoResponse.DeviceInfoList["+ i +"].BizType")); deviceInfoList.add(deviceInfo); } describeDeviceInfoResponse.setDeviceInfoList(deviceInfoList); return describeDeviceInfoResponse; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cloudauth/2.0.37/com/aliyuncs/cloudauth/transform
java-sources/com/aliyun/aliyun-java-sdk-cloudauth/2.0.37/com/aliyuncs/cloudauth/transform/v20190307/DescribeFaceGuardRiskResponseUnmarshaller.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.cloudauth.transform.v20190307; import com.aliyuncs.cloudauth.model.v20190307.DescribeFaceGuardRiskResponse; import com.aliyuncs.cloudauth.model.v20190307.DescribeFaceGuardRiskResponse.ResultObject; import com.aliyuncs.transform.UnmarshallerContext; public class DescribeFaceGuardRiskResponseUnmarshaller { public static DescribeFaceGuardRiskResponse unmarshall(DescribeFaceGuardRiskResponse describeFaceGuardRiskResponse, UnmarshallerContext _ctx) { describeFaceGuardRiskResponse.setRequestId(_ctx.stringValue("DescribeFaceGuardRiskResponse.RequestId")); describeFaceGuardRiskResponse.setCode(_ctx.stringValue("DescribeFaceGuardRiskResponse.Code")); describeFaceGuardRiskResponse.setMessage(_ctx.stringValue("DescribeFaceGuardRiskResponse.Message")); ResultObject resultObject = new ResultObject(); resultObject.setRiakTags(_ctx.stringValue("DescribeFaceGuardRiskResponse.ResultObject.RiakTags")); resultObject.setRiskExtends(_ctx.stringValue("DescribeFaceGuardRiskResponse.ResultObject.RiskExtends")); resultObject.setRiskTags(_ctx.stringValue("DescribeFaceGuardRiskResponse.ResultObject.RiskTags")); resultObject.setCertifyId(_ctx.stringValue("DescribeFaceGuardRiskResponse.ResultObject.CertifyId")); describeFaceGuardRiskResponse.setResultObject(resultObject); return describeFaceGuardRiskResponse; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cloudauth/2.0.37/com/aliyuncs/cloudauth/transform
java-sources/com/aliyun/aliyun-java-sdk-cloudauth/2.0.37/com/aliyuncs/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.cloudauth.transform.v20190307; import com.aliyuncs.cloudauth.model.v20190307.DescribeFaceVerifyResponse; import com.aliyuncs.cloudauth.model.v20190307.DescribeFaceVerifyResponse.ResultObject; import com.aliyuncs.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")); resultObject.setDeviceRisk(_ctx.stringValue("DescribeFaceVerifyResponse.ResultObject.DeviceRisk")); resultObject.setSuccess(_ctx.stringValue("DescribeFaceVerifyResponse.ResultObject.Success")); resultObject.setUserInfo(_ctx.stringValue("DescribeFaceVerifyResponse.ResultObject.UserInfo")); describeFaceVerifyResponse.setResultObject(resultObject); return describeFaceVerifyResponse; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cloudauth/2.0.37/com/aliyuncs/cloudauth/transform
java-sources/com/aliyun/aliyun-java-sdk-cloudauth/2.0.37/com/aliyuncs/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.cloudauth.transform.v20190307; import com.aliyuncs.cloudauth.model.v20190307.DescribeOssUploadTokenResponse; import com.aliyuncs.cloudauth.model.v20190307.DescribeOssUploadTokenResponse.OssUploadToken; import com.aliyuncs.transform.UnmarshallerContext; public class DescribeOssUploadTokenResponseUnmarshaller { public static DescribeOssUploadTokenResponse unmarshall(DescribeOssUploadTokenResponse describeOssUploadTokenResponse, UnmarshallerContext _ctx) { describeOssUploadTokenResponse.setRequestId(_ctx.stringValue("DescribeOssUploadTokenResponse.RequestId")); OssUploadToken ossUploadToken = new OssUploadToken(); ossUploadToken.setKey(_ctx.stringValue("DescribeOssUploadTokenResponse.OssUploadToken.Key")); ossUploadToken.setToken(_ctx.stringValue("DescribeOssUploadTokenResponse.OssUploadToken.Token")); ossUploadToken.setSecret(_ctx.stringValue("DescribeOssUploadTokenResponse.OssUploadToken.Secret")); ossUploadToken.setExpired(_ctx.longValue("DescribeOssUploadTokenResponse.OssUploadToken.Expired")); ossUploadToken.setPath(_ctx.stringValue("DescribeOssUploadTokenResponse.OssUploadToken.Path")); ossUploadToken.setEndPoint(_ctx.stringValue("DescribeOssUploadTokenResponse.OssUploadToken.EndPoint")); ossUploadToken.setBucket(_ctx.stringValue("DescribeOssUploadTokenResponse.OssUploadToken.Bucket")); describeOssUploadTokenResponse.setOssUploadToken(ossUploadToken); return describeOssUploadTokenResponse; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cloudauth/2.0.37/com/aliyuncs/cloudauth/transform
java-sources/com/aliyun/aliyun-java-sdk-cloudauth/2.0.37/com/aliyuncs/cloudauth/transform/v20190307/DescribePageFaceVerifyDataResponseUnmarshaller.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.cloudauth.transform.v20190307; import java.util.ArrayList; import java.util.List; import com.aliyuncs.cloudauth.model.v20190307.DescribePageFaceVerifyDataResponse; import com.aliyuncs.cloudauth.model.v20190307.DescribePageFaceVerifyDataResponse.ItemsItem; import com.aliyuncs.transform.UnmarshallerContext; public class DescribePageFaceVerifyDataResponseUnmarshaller { public static DescribePageFaceVerifyDataResponse unmarshall(DescribePageFaceVerifyDataResponse describePageFaceVerifyDataResponse, UnmarshallerContext _ctx) { describePageFaceVerifyDataResponse.setRequestId(_ctx.stringValue("DescribePageFaceVerifyDataResponse.RequestId")); describePageFaceVerifyDataResponse.setSuccess(_ctx.stringValue("DescribePageFaceVerifyDataResponse.Success")); describePageFaceVerifyDataResponse.setCode(_ctx.stringValue("DescribePageFaceVerifyDataResponse.Code")); describePageFaceVerifyDataResponse.setMessage(_ctx.stringValue("DescribePageFaceVerifyDataResponse.Message")); describePageFaceVerifyDataResponse.setTotalCount(_ctx.stringValue("DescribePageFaceVerifyDataResponse.TotalCount")); describePageFaceVerifyDataResponse.setPageSize(_ctx.stringValue("DescribePageFaceVerifyDataResponse.PageSize")); describePageFaceVerifyDataResponse.setTotalPage(_ctx.stringValue("DescribePageFaceVerifyDataResponse.TotalPage")); describePageFaceVerifyDataResponse.setCurrentPage(_ctx.stringValue("DescribePageFaceVerifyDataResponse.CurrentPage")); List<ItemsItem> items = new ArrayList<ItemsItem>(); for (int i = 0; i < _ctx.lengthValue("DescribePageFaceVerifyDataResponse.Items.Length"); i++) { ItemsItem itemsItem = new ItemsItem(); itemsItem.setDate(_ctx.stringValue("DescribePageFaceVerifyDataResponse.Items["+ i +"].Date")); itemsItem.setTotalCount(_ctx.stringValue("DescribePageFaceVerifyDataResponse.Items["+ i +"].TotalCount")); itemsItem.setSuccessCount(_ctx.stringValue("DescribePageFaceVerifyDataResponse.Items["+ i +"].SuccessCount")); itemsItem.setSceneId(_ctx.stringValue("DescribePageFaceVerifyDataResponse.Items["+ i +"].SceneId")); itemsItem.setSceneName(_ctx.stringValue("DescribePageFaceVerifyDataResponse.Items["+ i +"].SceneName")); itemsItem.setProductCode(_ctx.stringValue("DescribePageFaceVerifyDataResponse.Items["+ i +"].ProductCode")); items.add(itemsItem); } describePageFaceVerifyDataResponse.setItems(items); return describePageFaceVerifyDataResponse; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cloudauth/2.0.37/com/aliyuncs/cloudauth/transform
java-sources/com/aliyun/aliyun-java-sdk-cloudauth/2.0.37/com/aliyuncs/cloudauth/transform/v20190307/DescribeSmartStatisticsPageListResponseUnmarshaller.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.cloudauth.transform.v20190307; import java.util.ArrayList; import java.util.List; import com.aliyuncs.cloudauth.model.v20190307.DescribeSmartStatisticsPageListResponse; import com.aliyuncs.cloudauth.model.v20190307.DescribeSmartStatisticsPageListResponse.ItemsItem; import com.aliyuncs.transform.UnmarshallerContext; public class DescribeSmartStatisticsPageListResponseUnmarshaller { public static DescribeSmartStatisticsPageListResponse unmarshall(DescribeSmartStatisticsPageListResponse describeSmartStatisticsPageListResponse, UnmarshallerContext _ctx) { describeSmartStatisticsPageListResponse.setRequestId(_ctx.stringValue("DescribeSmartStatisticsPageListResponse.RequestId")); describeSmartStatisticsPageListResponse.setCurrentPage(_ctx.integerValue("DescribeSmartStatisticsPageListResponse.CurrentPage")); describeSmartStatisticsPageListResponse.setTotalPage(_ctx.integerValue("DescribeSmartStatisticsPageListResponse.TotalPage")); describeSmartStatisticsPageListResponse.setPageSize(_ctx.integerValue("DescribeSmartStatisticsPageListResponse.PageSize")); describeSmartStatisticsPageListResponse.setTotalCount(_ctx.integerValue("DescribeSmartStatisticsPageListResponse.TotalCount")); List<ItemsItem> items = new ArrayList<ItemsItem>(); for (int i = 0; i < _ctx.lengthValue("DescribeSmartStatisticsPageListResponse.Items.Length"); i++) { ItemsItem itemsItem = new ItemsItem(); itemsItem.setDate(_ctx.stringValue("DescribeSmartStatisticsPageListResponse.Items["+ i +"].Date")); itemsItem.setSceneId(_ctx.longValue("DescribeSmartStatisticsPageListResponse.Items["+ i +"].SceneId")); itemsItem.setSceneName(_ctx.stringValue("DescribeSmartStatisticsPageListResponse.Items["+ i +"].SceneName")); itemsItem.setTotalCount(_ctx.integerValue("DescribeSmartStatisticsPageListResponse.Items["+ i +"].TotalCount")); itemsItem.setSuccessCount(_ctx.integerValue("DescribeSmartStatisticsPageListResponse.Items["+ i +"].SuccessCount")); itemsItem.setPassRate(_ctx.stringValue("DescribeSmartStatisticsPageListResponse.Items["+ i +"].PassRate")); itemsItem.setProductCode(_ctx.stringValue("DescribeSmartStatisticsPageListResponse.Items["+ i +"].ProductCode")); items.add(itemsItem); } describeSmartStatisticsPageListResponse.setItems(items); return describeSmartStatisticsPageListResponse; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cloudauth/2.0.37/com/aliyuncs/cloudauth/transform
java-sources/com/aliyun/aliyun-java-sdk-cloudauth/2.0.37/com/aliyuncs/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.cloudauth.transform.v20190307; import java.util.ArrayList; import java.util.List; import com.aliyuncs.cloudauth.model.v20190307.DescribeVerifyResultResponse; import com.aliyuncs.cloudauth.model.v20190307.DescribeVerifyResultResponse.Material; import com.aliyuncs.cloudauth.model.v20190307.DescribeVerifyResultResponse.Material.IdCardInfo; import com.aliyuncs.transform.UnmarshallerContext; public class DescribeVerifyResultResponseUnmarshaller { public static DescribeVerifyResultResponse unmarshall(DescribeVerifyResultResponse describeVerifyResultResponse, UnmarshallerContext _ctx) { describeVerifyResultResponse.setRequestId(_ctx.stringValue("DescribeVerifyResultResponse.RequestId")); describeVerifyResultResponse.setAuthorityComparisionScore(_ctx.floatValue("DescribeVerifyResultResponse.AuthorityComparisionScore")); describeVerifyResultResponse.setVerifyStatus(_ctx.integerValue("DescribeVerifyResultResponse.VerifyStatus")); describeVerifyResultResponse.setFaceComparisonScore(_ctx.floatValue("DescribeVerifyResultResponse.FaceComparisonScore")); describeVerifyResultResponse.setIdCardFaceComparisonScore(_ctx.floatValue("DescribeVerifyResultResponse.IdCardFaceComparisonScore")); Material material = new Material(); material.setIdCardNumber(_ctx.stringValue("DescribeVerifyResultResponse.Material.IdCardNumber")); material.setFaceGlobalUrl(_ctx.stringValue("DescribeVerifyResultResponse.Material.FaceGlobalUrl")); material.setFaceImageUrl(_ctx.stringValue("DescribeVerifyResultResponse.Material.FaceImageUrl")); material.setFaceMask(_ctx.booleanValue("DescribeVerifyResultResponse.Material.FaceMask")); material.setIdCardName(_ctx.stringValue("DescribeVerifyResultResponse.Material.IdCardName")); material.setFaceQuality(_ctx.stringValue("DescribeVerifyResultResponse.Material.FaceQuality")); 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.setSex(_ctx.stringValue("DescribeVerifyResultResponse.Material.IdCardInfo.Sex")); idCardInfo.setEndDate(_ctx.stringValue("DescribeVerifyResultResponse.Material.IdCardInfo.EndDate")); idCardInfo.setAuthority(_ctx.stringValue("DescribeVerifyResultResponse.Material.IdCardInfo.Authority")); idCardInfo.setAddress(_ctx.stringValue("DescribeVerifyResultResponse.Material.IdCardInfo.Address")); idCardInfo.setNumber(_ctx.stringValue("DescribeVerifyResultResponse.Material.IdCardInfo.Number")); idCardInfo.setStartDate(_ctx.stringValue("DescribeVerifyResultResponse.Material.IdCardInfo.StartDate")); idCardInfo.setBackImageUrl(_ctx.stringValue("DescribeVerifyResultResponse.Material.IdCardInfo.BackImageUrl")); idCardInfo.setNationality(_ctx.stringValue("DescribeVerifyResultResponse.Material.IdCardInfo.Nationality")); idCardInfo.setBirth(_ctx.stringValue("DescribeVerifyResultResponse.Material.IdCardInfo.Birth")); idCardInfo.setName(_ctx.stringValue("DescribeVerifyResultResponse.Material.IdCardInfo.Name")); idCardInfo.setFrontImageUrl(_ctx.stringValue("DescribeVerifyResultResponse.Material.IdCardInfo.FrontImageUrl")); material.setIdCardInfo(idCardInfo); describeVerifyResultResponse.setMaterial(material); return describeVerifyResultResponse; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cloudauth/2.0.37/com/aliyuncs/cloudauth/transform
java-sources/com/aliyun/aliyun-java-sdk-cloudauth/2.0.37/com/aliyuncs/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.cloudauth.transform.v20190307; import com.aliyuncs.cloudauth.model.v20190307.DescribeVerifySDKResponse; import com.aliyuncs.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/2.0.37/com/aliyuncs/cloudauth/transform
java-sources/com/aliyun/aliyun-java-sdk-cloudauth/2.0.37/com/aliyuncs/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.cloudauth.transform.v20190307; import com.aliyuncs.cloudauth.model.v20190307.DescribeVerifyTokenResponse; import com.aliyuncs.cloudauth.model.v20190307.DescribeVerifyTokenResponse.OssUploadToken; import com.aliyuncs.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.setKey(_ctx.stringValue("DescribeVerifyTokenResponse.OssUploadToken.Key")); ossUploadToken.setToken(_ctx.stringValue("DescribeVerifyTokenResponse.OssUploadToken.Token")); ossUploadToken.setSecret(_ctx.stringValue("DescribeVerifyTokenResponse.OssUploadToken.Secret")); ossUploadToken.setExpired(_ctx.longValue("DescribeVerifyTokenResponse.OssUploadToken.Expired")); ossUploadToken.setPath(_ctx.stringValue("DescribeVerifyTokenResponse.OssUploadToken.Path")); ossUploadToken.setEndPoint(_ctx.stringValue("DescribeVerifyTokenResponse.OssUploadToken.EndPoint")); ossUploadToken.setBucket(_ctx.stringValue("DescribeVerifyTokenResponse.OssUploadToken.Bucket")); describeVerifyTokenResponse.setOssUploadToken(ossUploadToken); return describeVerifyTokenResponse; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cloudauth/2.0.37/com/aliyuncs/cloudauth/transform
java-sources/com/aliyun/aliyun-java-sdk-cloudauth/2.0.37/com/aliyuncs/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.cloudauth.transform.v20190307; import java.util.ArrayList; import java.util.List; import com.aliyuncs.cloudauth.model.v20190307.DetectFaceAttributesResponse; import com.aliyuncs.cloudauth.model.v20190307.DetectFaceAttributesResponse.Data; import com.aliyuncs.cloudauth.model.v20190307.DetectFaceAttributesResponse.Data.FaceAttributesDetectInfo; import com.aliyuncs.cloudauth.model.v20190307.DetectFaceAttributesResponse.Data.FaceAttributesDetectInfo.FaceAttributes; import com.aliyuncs.cloudauth.model.v20190307.DetectFaceAttributesResponse.Data.FaceAttributesDetectInfo.FaceAttributes.Gender; import com.aliyuncs.cloudauth.model.v20190307.DetectFaceAttributesResponse.Data.FaceAttributesDetectInfo.FaceAttributes.Headpose; import com.aliyuncs.cloudauth.model.v20190307.DetectFaceAttributesResponse.Data.FaceAttributesDetectInfo.FaceAttributes.Smiling; import com.aliyuncs.cloudauth.model.v20190307.DetectFaceAttributesResponse.Data.FaceAttributesDetectInfo.FaceRect; import com.aliyuncs.transform.UnmarshallerContext; public class DetectFaceAttributesResponseUnmarshaller { public static DetectFaceAttributesResponse unmarshall(DetectFaceAttributesResponse detectFaceAttributesResponse, UnmarshallerContext _ctx) { detectFaceAttributesResponse.setRequestId(_ctx.stringValue("DetectFaceAttributesResponse.RequestId")); detectFaceAttributesResponse.setCode(_ctx.stringValue("DetectFaceAttributesResponse.Code")); detectFaceAttributesResponse.setMessage(_ctx.stringValue("DetectFaceAttributesResponse.Message")); detectFaceAttributesResponse.setSuccess(_ctx.booleanValue("DetectFaceAttributesResponse.Success")); Data data = new Data(); data.setImgHeight(_ctx.integerValue("DetectFaceAttributesResponse.Data.ImgHeight")); data.setImgWidth(_ctx.integerValue("DetectFaceAttributesResponse.Data.ImgWidth")); List<FaceAttributesDetectInfo> faceInfos = new ArrayList<FaceAttributesDetectInfo>(); for (int i = 0; i < _ctx.lengthValue("DetectFaceAttributesResponse.Data.FaceInfos.Length"); i++) { FaceAttributesDetectInfo faceAttributesDetectInfo = new FaceAttributesDetectInfo(); FaceRect faceRect = new FaceRect(); faceRect.setLeft(_ctx.integerValue("DetectFaceAttributesResponse.Data.FaceInfos["+ i +"].FaceRect.Left")); faceRect.setTop(_ctx.integerValue("DetectFaceAttributesResponse.Data.FaceInfos["+ i +"].FaceRect.Top")); 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.setGlasses(_ctx.stringValue("DetectFaceAttributesResponse.Data.FaceInfos["+ i +"].FaceAttributes.Glasses")); faceAttributes.setFacequal(_ctx.floatValue("DetectFaceAttributesResponse.Data.FaceInfos["+ i +"].FaceAttributes.Facequal")); faceAttributes.setIntegrity(_ctx.integerValue("DetectFaceAttributesResponse.Data.FaceInfos["+ i +"].FaceAttributes.Integrity")); faceAttributes.setFacetype(_ctx.stringValue("DetectFaceAttributesResponse.Data.FaceInfos["+ i +"].FaceAttributes.Facetype")); faceAttributes.setRespirator(_ctx.stringValue("DetectFaceAttributesResponse.Data.FaceInfos["+ i +"].FaceAttributes.Respirator")); faceAttributes.setAppearanceScore(_ctx.floatValue("DetectFaceAttributesResponse.Data.FaceInfos["+ i +"].FaceAttributes.AppearanceScore")); faceAttributes.setAge(_ctx.integerValue("DetectFaceAttributesResponse.Data.FaceInfos["+ i +"].FaceAttributes.Age")); faceAttributes.setBlur(_ctx.floatValue("DetectFaceAttributesResponse.Data.FaceInfos["+ i +"].FaceAttributes.Blur")); Gender gender = new Gender(); gender.setValue(_ctx.stringValue("DetectFaceAttributesResponse.Data.FaceInfos["+ i +"].FaceAttributes.Gender.Value")); gender.setScore(_ctx.floatValue("DetectFaceAttributesResponse.Data.FaceInfos["+ i +"].FaceAttributes.Gender.Score")); 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); faceInfos.add(faceAttributesDetectInfo); } data.setFaceInfos(faceInfos); detectFaceAttributesResponse.setData(data); return detectFaceAttributesResponse; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cloudauth/2.0.37/com/aliyuncs/cloudauth/transform
java-sources/com/aliyun/aliyun-java-sdk-cloudauth/2.0.37/com/aliyuncs/cloudauth/transform/v20190307/Id2MetaPeriodVerifyResponseUnmarshaller.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.cloudauth.transform.v20190307; import com.aliyuncs.cloudauth.model.v20190307.Id2MetaPeriodVerifyResponse; import com.aliyuncs.cloudauth.model.v20190307.Id2MetaPeriodVerifyResponse.ResultObject; import com.aliyuncs.transform.UnmarshallerContext; public class Id2MetaPeriodVerifyResponseUnmarshaller { public static Id2MetaPeriodVerifyResponse unmarshall(Id2MetaPeriodVerifyResponse id2MetaPeriodVerifyResponse, UnmarshallerContext _ctx) { id2MetaPeriodVerifyResponse.setRequestId(_ctx.stringValue("Id2MetaPeriodVerifyResponse.RequestId")); id2MetaPeriodVerifyResponse.setCode(_ctx.stringValue("Id2MetaPeriodVerifyResponse.Code")); id2MetaPeriodVerifyResponse.setMessage(_ctx.stringValue("Id2MetaPeriodVerifyResponse.Message")); ResultObject resultObject = new ResultObject(); resultObject.setBizCode(_ctx.stringValue("Id2MetaPeriodVerifyResponse.ResultObject.BizCode")); id2MetaPeriodVerifyResponse.setResultObject(resultObject); return id2MetaPeriodVerifyResponse; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cloudauth/2.0.37/com/aliyuncs/cloudauth/transform
java-sources/com/aliyun/aliyun-java-sdk-cloudauth/2.0.37/com/aliyuncs/cloudauth/transform/v20190307/Id2MetaStandardVerifyResponseUnmarshaller.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.cloudauth.transform.v20190307; import com.aliyuncs.cloudauth.model.v20190307.Id2MetaStandardVerifyResponse; import com.aliyuncs.cloudauth.model.v20190307.Id2MetaStandardVerifyResponse.ResultObject; import com.aliyuncs.transform.UnmarshallerContext; public class Id2MetaStandardVerifyResponseUnmarshaller { public static Id2MetaStandardVerifyResponse unmarshall(Id2MetaStandardVerifyResponse id2MetaStandardVerifyResponse, UnmarshallerContext _ctx) { id2MetaStandardVerifyResponse.setRequestId(_ctx.stringValue("Id2MetaStandardVerifyResponse.RequestId")); id2MetaStandardVerifyResponse.setCode(_ctx.stringValue("Id2MetaStandardVerifyResponse.Code")); id2MetaStandardVerifyResponse.setMessage(_ctx.stringValue("Id2MetaStandardVerifyResponse.Message")); ResultObject resultObject = new ResultObject(); resultObject.setBizCode(_ctx.stringValue("Id2MetaStandardVerifyResponse.ResultObject.BizCode")); id2MetaStandardVerifyResponse.setResultObject(resultObject); return id2MetaStandardVerifyResponse; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cloudauth/2.0.37/com/aliyuncs/cloudauth/transform
java-sources/com/aliyun/aliyun-java-sdk-cloudauth/2.0.37/com/aliyuncs/cloudauth/transform/v20190307/Id2MetaVerifyResponseUnmarshaller.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.cloudauth.transform.v20190307; import com.aliyuncs.cloudauth.model.v20190307.Id2MetaVerifyResponse; import com.aliyuncs.cloudauth.model.v20190307.Id2MetaVerifyResponse.ResultObject; import com.aliyuncs.transform.UnmarshallerContext; public class Id2MetaVerifyResponseUnmarshaller { public static Id2MetaVerifyResponse unmarshall(Id2MetaVerifyResponse id2MetaVerifyResponse, UnmarshallerContext _ctx) { id2MetaVerifyResponse.setRequestId(_ctx.stringValue("Id2MetaVerifyResponse.RequestId")); id2MetaVerifyResponse.setCode(_ctx.stringValue("Id2MetaVerifyResponse.Code")); id2MetaVerifyResponse.setMessage(_ctx.stringValue("Id2MetaVerifyResponse.Message")); ResultObject resultObject = new ResultObject(); resultObject.setBizCode(_ctx.stringValue("Id2MetaVerifyResponse.ResultObject.BizCode")); id2MetaVerifyResponse.setResultObject(resultObject); return id2MetaVerifyResponse; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cloudauth/2.0.37/com/aliyuncs/cloudauth/transform
java-sources/com/aliyun/aliyun-java-sdk-cloudauth/2.0.37/com/aliyuncs/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.cloudauth.transform.v20190307; import com.aliyuncs.cloudauth.model.v20190307.InitFaceVerifyResponse; import com.aliyuncs.cloudauth.model.v20190307.InitFaceVerifyResponse.ResultObject; import com.aliyuncs.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/2.0.37/com/aliyuncs/cloudauth/transform
java-sources/com/aliyun/aliyun-java-sdk-cloudauth/2.0.37/com/aliyuncs/cloudauth/transform/v20190307/InsertWhiteListSettingResponseUnmarshaller.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.cloudauth.transform.v20190307; import com.aliyuncs.cloudauth.model.v20190307.InsertWhiteListSettingResponse; import com.aliyuncs.transform.UnmarshallerContext; public class InsertWhiteListSettingResponseUnmarshaller { public static InsertWhiteListSettingResponse unmarshall(InsertWhiteListSettingResponse insertWhiteListSettingResponse, UnmarshallerContext _ctx) { insertWhiteListSettingResponse.setRequestId(_ctx.stringValue("InsertWhiteListSettingResponse.RequestId")); insertWhiteListSettingResponse.setCode(_ctx.stringValue("InsertWhiteListSettingResponse.Code")); insertWhiteListSettingResponse.setMessage(_ctx.stringValue("InsertWhiteListSettingResponse.Message")); insertWhiteListSettingResponse.setSuccess(_ctx.booleanValue("InsertWhiteListSettingResponse.Success")); insertWhiteListSettingResponse.setResultObject(_ctx.booleanValue("InsertWhiteListSettingResponse.ResultObject")); return insertWhiteListSettingResponse; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cloudauth/2.0.37/com/aliyuncs/cloudauth/transform
java-sources/com/aliyun/aliyun-java-sdk-cloudauth/2.0.37/com/aliyuncs/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.cloudauth.transform.v20190307; import com.aliyuncs.cloudauth.model.v20190307.LivenessFaceVerifyResponse; import com.aliyuncs.cloudauth.model.v20190307.LivenessFaceVerifyResponse.ResultObject; import com.aliyuncs.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/2.0.37/com/aliyuncs/cloudauth/transform
java-sources/com/aliyun/aliyun-java-sdk-cloudauth/2.0.37/com/aliyuncs/cloudauth/transform/v20190307/Mobile3MetaDetailStandardVerifyResponseUnmarshaller.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.cloudauth.transform.v20190307; import com.aliyuncs.cloudauth.model.v20190307.Mobile3MetaDetailStandardVerifyResponse; import com.aliyuncs.cloudauth.model.v20190307.Mobile3MetaDetailStandardVerifyResponse.ResultObject; import com.aliyuncs.transform.UnmarshallerContext; public class Mobile3MetaDetailStandardVerifyResponseUnmarshaller { public static Mobile3MetaDetailStandardVerifyResponse unmarshall(Mobile3MetaDetailStandardVerifyResponse mobile3MetaDetailStandardVerifyResponse, UnmarshallerContext _ctx) { mobile3MetaDetailStandardVerifyResponse.setRequestId(_ctx.stringValue("Mobile3MetaDetailStandardVerifyResponse.RequestId")); mobile3MetaDetailStandardVerifyResponse.setCode(_ctx.stringValue("Mobile3MetaDetailStandardVerifyResponse.Code")); mobile3MetaDetailStandardVerifyResponse.setMessage(_ctx.stringValue("Mobile3MetaDetailStandardVerifyResponse.Message")); ResultObject resultObject = new ResultObject(); resultObject.setBizCode(_ctx.stringValue("Mobile3MetaDetailStandardVerifyResponse.ResultObject.BizCode")); resultObject.setSubCode(_ctx.stringValue("Mobile3MetaDetailStandardVerifyResponse.ResultObject.SubCode")); resultObject.setIspName(_ctx.stringValue("Mobile3MetaDetailStandardVerifyResponse.ResultObject.IspName")); mobile3MetaDetailStandardVerifyResponse.setResultObject(resultObject); return mobile3MetaDetailStandardVerifyResponse; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cloudauth/2.0.37/com/aliyuncs/cloudauth/transform
java-sources/com/aliyun/aliyun-java-sdk-cloudauth/2.0.37/com/aliyuncs/cloudauth/transform/v20190307/Mobile3MetaDetailVerifyResponseUnmarshaller.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.cloudauth.transform.v20190307; import com.aliyuncs.cloudauth.model.v20190307.Mobile3MetaDetailVerifyResponse; import com.aliyuncs.cloudauth.model.v20190307.Mobile3MetaDetailVerifyResponse.ResultObject; import com.aliyuncs.transform.UnmarshallerContext; public class Mobile3MetaDetailVerifyResponseUnmarshaller { public static Mobile3MetaDetailVerifyResponse unmarshall(Mobile3MetaDetailVerifyResponse mobile3MetaDetailVerifyResponse, UnmarshallerContext _ctx) { mobile3MetaDetailVerifyResponse.setRequestId(_ctx.stringValue("Mobile3MetaDetailVerifyResponse.RequestId")); mobile3MetaDetailVerifyResponse.setCode(_ctx.stringValue("Mobile3MetaDetailVerifyResponse.Code")); mobile3MetaDetailVerifyResponse.setMessage(_ctx.stringValue("Mobile3MetaDetailVerifyResponse.Message")); ResultObject resultObject = new ResultObject(); resultObject.setBizCode(_ctx.stringValue("Mobile3MetaDetailVerifyResponse.ResultObject.BizCode")); resultObject.setSubCode(_ctx.stringValue("Mobile3MetaDetailVerifyResponse.ResultObject.SubCode")); resultObject.setIspName(_ctx.stringValue("Mobile3MetaDetailVerifyResponse.ResultObject.IspName")); mobile3MetaDetailVerifyResponse.setResultObject(resultObject); return mobile3MetaDetailVerifyResponse; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cloudauth/2.0.37/com/aliyuncs/cloudauth/transform
java-sources/com/aliyun/aliyun-java-sdk-cloudauth/2.0.37/com/aliyuncs/cloudauth/transform/v20190307/Mobile3MetaSimpleStandardVerifyResponseUnmarshaller.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.cloudauth.transform.v20190307; import com.aliyuncs.cloudauth.model.v20190307.Mobile3MetaSimpleStandardVerifyResponse; import com.aliyuncs.cloudauth.model.v20190307.Mobile3MetaSimpleStandardVerifyResponse.ResultObject; import com.aliyuncs.transform.UnmarshallerContext; public class Mobile3MetaSimpleStandardVerifyResponseUnmarshaller { public static Mobile3MetaSimpleStandardVerifyResponse unmarshall(Mobile3MetaSimpleStandardVerifyResponse mobile3MetaSimpleStandardVerifyResponse, UnmarshallerContext _ctx) { mobile3MetaSimpleStandardVerifyResponse.setRequestId(_ctx.stringValue("Mobile3MetaSimpleStandardVerifyResponse.RequestId")); mobile3MetaSimpleStandardVerifyResponse.setCode(_ctx.stringValue("Mobile3MetaSimpleStandardVerifyResponse.Code")); mobile3MetaSimpleStandardVerifyResponse.setMessage(_ctx.stringValue("Mobile3MetaSimpleStandardVerifyResponse.Message")); ResultObject resultObject = new ResultObject(); resultObject.setBizCode(_ctx.stringValue("Mobile3MetaSimpleStandardVerifyResponse.ResultObject.BizCode")); resultObject.setIspName(_ctx.stringValue("Mobile3MetaSimpleStandardVerifyResponse.ResultObject.IspName")); mobile3MetaSimpleStandardVerifyResponse.setResultObject(resultObject); return mobile3MetaSimpleStandardVerifyResponse; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cloudauth/2.0.37/com/aliyuncs/cloudauth/transform
java-sources/com/aliyun/aliyun-java-sdk-cloudauth/2.0.37/com/aliyuncs/cloudauth/transform/v20190307/Mobile3MetaSimpleVerifyResponseUnmarshaller.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.cloudauth.transform.v20190307; import com.aliyuncs.cloudauth.model.v20190307.Mobile3MetaSimpleVerifyResponse; import com.aliyuncs.cloudauth.model.v20190307.Mobile3MetaSimpleVerifyResponse.ResultObject; import com.aliyuncs.transform.UnmarshallerContext; public class Mobile3MetaSimpleVerifyResponseUnmarshaller { public static Mobile3MetaSimpleVerifyResponse unmarshall(Mobile3MetaSimpleVerifyResponse mobile3MetaSimpleVerifyResponse, UnmarshallerContext _ctx) { mobile3MetaSimpleVerifyResponse.setRequestId(_ctx.stringValue("Mobile3MetaSimpleVerifyResponse.RequestId")); mobile3MetaSimpleVerifyResponse.setCode(_ctx.stringValue("Mobile3MetaSimpleVerifyResponse.Code")); mobile3MetaSimpleVerifyResponse.setMessage(_ctx.stringValue("Mobile3MetaSimpleVerifyResponse.Message")); ResultObject resultObject = new ResultObject(); resultObject.setBizCode(_ctx.stringValue("Mobile3MetaSimpleVerifyResponse.ResultObject.BizCode")); resultObject.setIspName(_ctx.stringValue("Mobile3MetaSimpleVerifyResponse.ResultObject.IspName")); mobile3MetaSimpleVerifyResponse.setResultObject(resultObject); return mobile3MetaSimpleVerifyResponse; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cloudauth/2.0.37/com/aliyuncs/cloudauth/transform
java-sources/com/aliyun/aliyun-java-sdk-cloudauth/2.0.37/com/aliyuncs/cloudauth/transform/v20190307/MobileDetectResponseUnmarshaller.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.cloudauth.transform.v20190307; import java.util.ArrayList; import java.util.List; import com.aliyuncs.cloudauth.model.v20190307.MobileDetectResponse; import com.aliyuncs.cloudauth.model.v20190307.MobileDetectResponse.ResultObject; import com.aliyuncs.cloudauth.model.v20190307.MobileDetectResponse.ResultObject.ItemsItem; import com.aliyuncs.transform.UnmarshallerContext; public class MobileDetectResponseUnmarshaller { public static MobileDetectResponse unmarshall(MobileDetectResponse mobileDetectResponse, UnmarshallerContext _ctx) { mobileDetectResponse.setRequestId(_ctx.stringValue("MobileDetectResponse.RequestId")); mobileDetectResponse.setCode(_ctx.stringValue("MobileDetectResponse.Code")); mobileDetectResponse.setMessage(_ctx.stringValue("MobileDetectResponse.Message")); ResultObject resultObject = new ResultObject(); resultObject.setChargeCount(_ctx.stringValue("MobileDetectResponse.ResultObject.ChargeCount")); List<ItemsItem> items = new ArrayList<ItemsItem>(); for (int i = 0; i < _ctx.lengthValue("MobileDetectResponse.ResultObject.Items.Length"); i++) { ItemsItem itemsItem = new ItemsItem(); itemsItem.setMobile(_ctx.stringValue("MobileDetectResponse.ResultObject.Items["+ i +"].Mobile")); itemsItem.setBizCode(_ctx.stringValue("MobileDetectResponse.ResultObject.Items["+ i +"].BizCode")); itemsItem.setSubCode(_ctx.stringValue("MobileDetectResponse.ResultObject.Items["+ i +"].SubCode")); itemsItem.setIspName(_ctx.stringValue("MobileDetectResponse.ResultObject.Items["+ i +"].IspName")); itemsItem.setArea(_ctx.stringValue("MobileDetectResponse.ResultObject.Items["+ i +"].Area")); items.add(itemsItem); } resultObject.setItems(items); mobileDetectResponse.setResultObject(resultObject); return mobileDetectResponse; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cloudauth/2.0.37/com/aliyuncs/cloudauth/transform
java-sources/com/aliyun/aliyun-java-sdk-cloudauth/2.0.37/com/aliyuncs/cloudauth/transform/v20190307/MobileOnlineStatusResponseUnmarshaller.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.cloudauth.transform.v20190307; import com.aliyuncs.cloudauth.model.v20190307.MobileOnlineStatusResponse; import com.aliyuncs.cloudauth.model.v20190307.MobileOnlineStatusResponse.ResultObject; import com.aliyuncs.transform.UnmarshallerContext; public class MobileOnlineStatusResponseUnmarshaller { public static MobileOnlineStatusResponse unmarshall(MobileOnlineStatusResponse mobileOnlineStatusResponse, UnmarshallerContext _ctx) { mobileOnlineStatusResponse.setRequestId(_ctx.stringValue("MobileOnlineStatusResponse.RequestId")); mobileOnlineStatusResponse.setCode(_ctx.stringValue("MobileOnlineStatusResponse.Code")); mobileOnlineStatusResponse.setMessage(_ctx.stringValue("MobileOnlineStatusResponse.Message")); ResultObject resultObject = new ResultObject(); resultObject.setBizCode(_ctx.stringValue("MobileOnlineStatusResponse.ResultObject.BizCode")); resultObject.setIspName(_ctx.stringValue("MobileOnlineStatusResponse.ResultObject.IspName")); resultObject.setSubCode(_ctx.stringValue("MobileOnlineStatusResponse.ResultObject.SubCode")); mobileOnlineStatusResponse.setResultObject(resultObject); return mobileOnlineStatusResponse; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cloudauth/2.0.37/com/aliyuncs/cloudauth/transform
java-sources/com/aliyun/aliyun-java-sdk-cloudauth/2.0.37/com/aliyuncs/cloudauth/transform/v20190307/MobileOnlineTimeResponseUnmarshaller.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.cloudauth.transform.v20190307; import com.aliyuncs.cloudauth.model.v20190307.MobileOnlineTimeResponse; import com.aliyuncs.cloudauth.model.v20190307.MobileOnlineTimeResponse.ResultObject; import com.aliyuncs.transform.UnmarshallerContext; public class MobileOnlineTimeResponseUnmarshaller { public static MobileOnlineTimeResponse unmarshall(MobileOnlineTimeResponse mobileOnlineTimeResponse, UnmarshallerContext _ctx) { mobileOnlineTimeResponse.setRequestId(_ctx.stringValue("MobileOnlineTimeResponse.RequestId")); mobileOnlineTimeResponse.setCode(_ctx.stringValue("MobileOnlineTimeResponse.Code")); mobileOnlineTimeResponse.setMessage(_ctx.stringValue("MobileOnlineTimeResponse.Message")); ResultObject resultObject = new ResultObject(); resultObject.setBizCode(_ctx.stringValue("MobileOnlineTimeResponse.ResultObject.BizCode")); resultObject.setIspName(_ctx.stringValue("MobileOnlineTimeResponse.ResultObject.IspName")); resultObject.setTimeCode(_ctx.stringValue("MobileOnlineTimeResponse.ResultObject.TimeCode")); mobileOnlineTimeResponse.setResultObject(resultObject); return mobileOnlineTimeResponse; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cloudauth/2.0.37/com/aliyuncs/cloudauth/transform
java-sources/com/aliyun/aliyun-java-sdk-cloudauth/2.0.37/com/aliyuncs/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.cloudauth.transform.v20190307; import com.aliyuncs.cloudauth.model.v20190307.ModifyDeviceInfoResponse; import com.aliyuncs.transform.UnmarshallerContext; public class ModifyDeviceInfoResponseUnmarshaller { public static ModifyDeviceInfoResponse unmarshall(ModifyDeviceInfoResponse modifyDeviceInfoResponse, UnmarshallerContext _ctx) { modifyDeviceInfoResponse.setRequestId(_ctx.stringValue("ModifyDeviceInfoResponse.RequestId")); modifyDeviceInfoResponse.setUserDeviceId(_ctx.stringValue("ModifyDeviceInfoResponse.UserDeviceId")); modifyDeviceInfoResponse.setDeviceId(_ctx.stringValue("ModifyDeviceInfoResponse.DeviceId")); modifyDeviceInfoResponse.setExpiredDay(_ctx.stringValue("ModifyDeviceInfoResponse.ExpiredDay")); modifyDeviceInfoResponse.setBeginDay(_ctx.stringValue("ModifyDeviceInfoResponse.BeginDay")); modifyDeviceInfoResponse.setBizType(_ctx.stringValue("ModifyDeviceInfoResponse.BizType")); return modifyDeviceInfoResponse; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cloudauth/2.0.37/com/aliyuncs/cloudauth/transform
java-sources/com/aliyun/aliyun-java-sdk-cloudauth/2.0.37/com/aliyuncs/cloudauth/transform/v20190307/PageQueryWhiteListSettingResponseUnmarshaller.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.cloudauth.transform.v20190307; import java.util.ArrayList; import java.util.List; import com.aliyuncs.cloudauth.model.v20190307.PageQueryWhiteListSettingResponse; import com.aliyuncs.cloudauth.model.v20190307.PageQueryWhiteListSettingResponse.ResultObjectItem; import com.aliyuncs.transform.UnmarshallerContext; public class PageQueryWhiteListSettingResponseUnmarshaller { public static PageQueryWhiteListSettingResponse unmarshall(PageQueryWhiteListSettingResponse pageQueryWhiteListSettingResponse, UnmarshallerContext _ctx) { pageQueryWhiteListSettingResponse.setRequestId(_ctx.stringValue("PageQueryWhiteListSettingResponse.RequestId")); pageQueryWhiteListSettingResponse.setCode(_ctx.stringValue("PageQueryWhiteListSettingResponse.Code")); pageQueryWhiteListSettingResponse.setMessage(_ctx.stringValue("PageQueryWhiteListSettingResponse.Message")); pageQueryWhiteListSettingResponse.setSuccess(_ctx.booleanValue("PageQueryWhiteListSettingResponse.Success")); pageQueryWhiteListSettingResponse.setTotalItem(_ctx.integerValue("PageQueryWhiteListSettingResponse.TotalItem")); pageQueryWhiteListSettingResponse.setTotalPage(_ctx.integerValue("PageQueryWhiteListSettingResponse.TotalPage")); pageQueryWhiteListSettingResponse.setCurrentPage(_ctx.integerValue("PageQueryWhiteListSettingResponse.CurrentPage")); pageQueryWhiteListSettingResponse.setPageSize(_ctx.integerValue("PageQueryWhiteListSettingResponse.PageSize")); List<ResultObjectItem> resultObject = new ArrayList<ResultObjectItem>(); for (int i = 0; i < _ctx.lengthValue("PageQueryWhiteListSettingResponse.ResultObject.Length"); i++) { ResultObjectItem resultObjectItem = new ResultObjectItem(); resultObjectItem.setId(_ctx.longValue("PageQueryWhiteListSettingResponse.ResultObject["+ i +"].Id")); resultObjectItem.setGmtCreate(_ctx.stringValue("PageQueryWhiteListSettingResponse.ResultObject["+ i +"].GmtCreate")); resultObjectItem.setGmtModified(_ctx.stringValue("PageQueryWhiteListSettingResponse.ResultObject["+ i +"].GmtModified")); resultObjectItem.setServiceCode(_ctx.stringValue("PageQueryWhiteListSettingResponse.ResultObject["+ i +"].ServiceCode")); resultObjectItem.setCertifyId(_ctx.stringValue("PageQueryWhiteListSettingResponse.ResultObject["+ i +"].CertifyId")); resultObjectItem.setCertNo(_ctx.stringValue("PageQueryWhiteListSettingResponse.ResultObject["+ i +"].CertNo")); resultObjectItem.setSceneId(_ctx.longValue("PageQueryWhiteListSettingResponse.ResultObject["+ i +"].SceneId")); resultObjectItem.setValidStartDate(_ctx.stringValue("PageQueryWhiteListSettingResponse.ResultObject["+ i +"].ValidStartDate")); resultObjectItem.setValidEndDate(_ctx.stringValue("PageQueryWhiteListSettingResponse.ResultObject["+ i +"].ValidEndDate")); resultObjectItem.setStatus(_ctx.stringValue("PageQueryWhiteListSettingResponse.ResultObject["+ i +"].Status")); resultObjectItem.setRemark(_ctx.stringValue("PageQueryWhiteListSettingResponse.ResultObject["+ i +"].Remark")); resultObject.add(resultObjectItem); } pageQueryWhiteListSettingResponse.setResultObject(resultObject); return pageQueryWhiteListSettingResponse; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cloudauth/2.0.37/com/aliyuncs/cloudauth/transform
java-sources/com/aliyun/aliyun-java-sdk-cloudauth/2.0.37/com/aliyuncs/cloudauth/transform/v20190307/RemoveWhiteListSettingResponseUnmarshaller.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.cloudauth.transform.v20190307; import com.aliyuncs.cloudauth.model.v20190307.RemoveWhiteListSettingResponse; import com.aliyuncs.transform.UnmarshallerContext; public class RemoveWhiteListSettingResponseUnmarshaller { public static RemoveWhiteListSettingResponse unmarshall(RemoveWhiteListSettingResponse removeWhiteListSettingResponse, UnmarshallerContext _ctx) { removeWhiteListSettingResponse.setRequestId(_ctx.stringValue("RemoveWhiteListSettingResponse.RequestId")); removeWhiteListSettingResponse.setCode(_ctx.stringValue("RemoveWhiteListSettingResponse.Code")); removeWhiteListSettingResponse.setMessage(_ctx.stringValue("RemoveWhiteListSettingResponse.Message")); removeWhiteListSettingResponse.setSuccess(_ctx.booleanValue("RemoveWhiteListSettingResponse.Success")); removeWhiteListSettingResponse.setResultObject(_ctx.booleanValue("RemoveWhiteListSettingResponse.ResultObject")); return removeWhiteListSettingResponse; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cloudauth/2.0.37/com/aliyuncs/cloudauth/transform
java-sources/com/aliyun/aliyun-java-sdk-cloudauth/2.0.37/com/aliyuncs/cloudauth/transform/v20190307/Vehicle5ItemQueryResponseUnmarshaller.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.cloudauth.transform.v20190307; import com.aliyuncs.cloudauth.model.v20190307.Vehicle5ItemQueryResponse; import com.aliyuncs.cloudauth.model.v20190307.Vehicle5ItemQueryResponse.ResultObject; import com.aliyuncs.transform.UnmarshallerContext; public class Vehicle5ItemQueryResponseUnmarshaller { public static Vehicle5ItemQueryResponse unmarshall(Vehicle5ItemQueryResponse vehicle5ItemQueryResponse, UnmarshallerContext _ctx) { vehicle5ItemQueryResponse.setRequestId(_ctx.stringValue("Vehicle5ItemQueryResponse.RequestId")); vehicle5ItemQueryResponse.setMessage(_ctx.stringValue("Vehicle5ItemQueryResponse.Message")); vehicle5ItemQueryResponse.setCode(_ctx.stringValue("Vehicle5ItemQueryResponse.Code")); ResultObject resultObject = new ResultObject(); resultObject.setBizCode(_ctx.stringValue("Vehicle5ItemQueryResponse.ResultObject.BizCode")); resultObject.setVehicleInfo(_ctx.stringValue("Vehicle5ItemQueryResponse.ResultObject.VehicleInfo")); vehicle5ItemQueryResponse.setResultObject(resultObject); return vehicle5ItemQueryResponse; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cloudauth/2.0.37/com/aliyuncs/cloudauth/transform
java-sources/com/aliyun/aliyun-java-sdk-cloudauth/2.0.37/com/aliyuncs/cloudauth/transform/v20190307/VehicleInsureQueryResponseUnmarshaller.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.cloudauth.transform.v20190307; import com.aliyuncs.cloudauth.model.v20190307.VehicleInsureQueryResponse; import com.aliyuncs.cloudauth.model.v20190307.VehicleInsureQueryResponse.ResultObject; import com.aliyuncs.transform.UnmarshallerContext; public class VehicleInsureQueryResponseUnmarshaller { public static VehicleInsureQueryResponse unmarshall(VehicleInsureQueryResponse vehicleInsureQueryResponse, UnmarshallerContext _ctx) { vehicleInsureQueryResponse.setRequestId(_ctx.stringValue("VehicleInsureQueryResponse.RequestId")); vehicleInsureQueryResponse.setMessage(_ctx.stringValue("VehicleInsureQueryResponse.Message")); vehicleInsureQueryResponse.setCode(_ctx.stringValue("VehicleInsureQueryResponse.Code")); ResultObject resultObject = new ResultObject(); resultObject.setBizCode(_ctx.stringValue("VehicleInsureQueryResponse.ResultObject.BizCode")); resultObject.setVehicleInfo(_ctx.stringValue("VehicleInsureQueryResponse.ResultObject.VehicleInfo")); vehicleInsureQueryResponse.setResultObject(resultObject); return vehicleInsureQueryResponse; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cloudauth/2.0.37/com/aliyuncs/cloudauth/transform
java-sources/com/aliyun/aliyun-java-sdk-cloudauth/2.0.37/com/aliyuncs/cloudauth/transform/v20190307/VehicleMetaVerifyResponseUnmarshaller.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.cloudauth.transform.v20190307; import com.aliyuncs.cloudauth.model.v20190307.VehicleMetaVerifyResponse; import com.aliyuncs.cloudauth.model.v20190307.VehicleMetaVerifyResponse.ResultObject; import com.aliyuncs.transform.UnmarshallerContext; public class VehicleMetaVerifyResponseUnmarshaller { public static VehicleMetaVerifyResponse unmarshall(VehicleMetaVerifyResponse vehicleMetaVerifyResponse, UnmarshallerContext _ctx) { vehicleMetaVerifyResponse.setRequestId(_ctx.stringValue("VehicleMetaVerifyResponse.RequestId")); vehicleMetaVerifyResponse.setCode(_ctx.stringValue("VehicleMetaVerifyResponse.Code")); vehicleMetaVerifyResponse.setMessage(_ctx.stringValue("VehicleMetaVerifyResponse.Message")); ResultObject resultObject = new ResultObject(); resultObject.setBizCode(_ctx.stringValue("VehicleMetaVerifyResponse.ResultObject.BizCode")); vehicleMetaVerifyResponse.setResultObject(resultObject); return vehicleMetaVerifyResponse; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cloudauth/2.0.37/com/aliyuncs/cloudauth/transform
java-sources/com/aliyun/aliyun-java-sdk-cloudauth/2.0.37/com/aliyuncs/cloudauth/transform/v20190307/VehicleMetaVerifyV2ResponseUnmarshaller.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.cloudauth.transform.v20190307; import com.aliyuncs.cloudauth.model.v20190307.VehicleMetaVerifyV2Response; import com.aliyuncs.cloudauth.model.v20190307.VehicleMetaVerifyV2Response.ResultObject; import com.aliyuncs.transform.UnmarshallerContext; public class VehicleMetaVerifyV2ResponseUnmarshaller { public static VehicleMetaVerifyV2Response unmarshall(VehicleMetaVerifyV2Response vehicleMetaVerifyV2Response, UnmarshallerContext _ctx) { vehicleMetaVerifyV2Response.setRequestId(_ctx.stringValue("VehicleMetaVerifyV2Response.RequestId")); vehicleMetaVerifyV2Response.setCode(_ctx.stringValue("VehicleMetaVerifyV2Response.Code")); vehicleMetaVerifyV2Response.setMessage(_ctx.stringValue("VehicleMetaVerifyV2Response.Message")); ResultObject resultObject = new ResultObject(); resultObject.setBizCode(_ctx.stringValue("VehicleMetaVerifyV2Response.ResultObject.BizCode")); resultObject.setVehicleInfo(_ctx.stringValue("VehicleMetaVerifyV2Response.ResultObject.VehicleInfo")); vehicleMetaVerifyV2Response.setResultObject(resultObject); return vehicleMetaVerifyV2Response; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cloudauth/2.0.37/com/aliyuncs/cloudauth/transform
java-sources/com/aliyun/aliyun-java-sdk-cloudauth/2.0.37/com/aliyuncs/cloudauth/transform/v20190307/VehicleQueryResponseUnmarshaller.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.cloudauth.transform.v20190307; import com.aliyuncs.cloudauth.model.v20190307.VehicleQueryResponse; import com.aliyuncs.cloudauth.model.v20190307.VehicleQueryResponse.ResultObject; import com.aliyuncs.transform.UnmarshallerContext; public class VehicleQueryResponseUnmarshaller { public static VehicleQueryResponse unmarshall(VehicleQueryResponse vehicleQueryResponse, UnmarshallerContext _ctx) { vehicleQueryResponse.setRequestId(_ctx.stringValue("VehicleQueryResponse.RequestId")); vehicleQueryResponse.setMessage(_ctx.stringValue("VehicleQueryResponse.Message")); vehicleQueryResponse.setCode(_ctx.stringValue("VehicleQueryResponse.Code")); ResultObject resultObject = new ResultObject(); resultObject.setBizCode(_ctx.stringValue("VehicleQueryResponse.ResultObject.BizCode")); resultObject.setVehicleInfo(_ctx.stringValue("VehicleQueryResponse.ResultObject.VehicleInfo")); vehicleQueryResponse.setResultObject(resultObject); return vehicleQueryResponse; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cloudauth/2.0.37/com/aliyuncs/cloudauth/transform
java-sources/com/aliyun/aliyun-java-sdk-cloudauth/2.0.37/com/aliyuncs/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.cloudauth.transform.v20190307; import com.aliyuncs.cloudauth.model.v20190307.VerifyMaterialResponse; import com.aliyuncs.cloudauth.model.v20190307.VerifyMaterialResponse.Material; import com.aliyuncs.cloudauth.model.v20190307.VerifyMaterialResponse.Material.IdCardInfo; import com.aliyuncs.transform.UnmarshallerContext; public class VerifyMaterialResponseUnmarshaller { public static VerifyMaterialResponse unmarshall(VerifyMaterialResponse verifyMaterialResponse, UnmarshallerContext _ctx) { verifyMaterialResponse.setRequestId(_ctx.stringValue("VerifyMaterialResponse.RequestId")); verifyMaterialResponse.setAuthorityComparisionScore(_ctx.floatValue("VerifyMaterialResponse.AuthorityComparisionScore")); verifyMaterialResponse.setVerifyStatus(_ctx.integerValue("VerifyMaterialResponse.VerifyStatus")); verifyMaterialResponse.setVerifyToken(_ctx.stringValue("VerifyMaterialResponse.VerifyToken")); verifyMaterialResponse.setIdCardFaceComparisonScore(_ctx.floatValue("VerifyMaterialResponse.IdCardFaceComparisonScore")); Material material = new Material(); material.setIdCardNumber(_ctx.stringValue("VerifyMaterialResponse.Material.IdCardNumber")); material.setFaceGlobalUrl(_ctx.stringValue("VerifyMaterialResponse.Material.FaceGlobalUrl")); material.setFaceImageUrl(_ctx.stringValue("VerifyMaterialResponse.Material.FaceImageUrl")); material.setFaceMask(_ctx.stringValue("VerifyMaterialResponse.Material.FaceMask")); material.setIdCardName(_ctx.stringValue("VerifyMaterialResponse.Material.IdCardName")); material.setFaceQuality(_ctx.stringValue("VerifyMaterialResponse.Material.FaceQuality")); IdCardInfo idCardInfo = new IdCardInfo(); idCardInfo.setSex(_ctx.stringValue("VerifyMaterialResponse.Material.IdCardInfo.Sex")); idCardInfo.setEndDate(_ctx.stringValue("VerifyMaterialResponse.Material.IdCardInfo.EndDate")); idCardInfo.setAuthority(_ctx.stringValue("VerifyMaterialResponse.Material.IdCardInfo.Authority")); idCardInfo.setAddress(_ctx.stringValue("VerifyMaterialResponse.Material.IdCardInfo.Address")); idCardInfo.setNumber(_ctx.stringValue("VerifyMaterialResponse.Material.IdCardInfo.Number")); idCardInfo.setStartDate(_ctx.stringValue("VerifyMaterialResponse.Material.IdCardInfo.StartDate")); idCardInfo.setBackImageUrl(_ctx.stringValue("VerifyMaterialResponse.Material.IdCardInfo.BackImageUrl")); idCardInfo.setNationality(_ctx.stringValue("VerifyMaterialResponse.Material.IdCardInfo.Nationality")); idCardInfo.setBirth(_ctx.stringValue("VerifyMaterialResponse.Material.IdCardInfo.Birth")); idCardInfo.setName(_ctx.stringValue("VerifyMaterialResponse.Material.IdCardInfo.Name")); idCardInfo.setFrontImageUrl(_ctx.stringValue("VerifyMaterialResponse.Material.IdCardInfo.FrontImageUrl")); material.setIdCardInfo(idCardInfo); verifyMaterialResponse.setMaterial(material); return verifyMaterialResponse; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cloudauth-console/2.0.4/com/aliyuncs
java-sources/com/aliyun/aliyun-java-sdk-cloudauth-console/2.0.4/com/aliyuncs/cloudauth_console/Endpoint.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.cloudauth_console; import java.util.HashMap; public class Endpoint { public static HashMap<String, String> endpointMap = new HashMap<String, String>() {}; public static String endpointRegionalType = "regional"; }
0
java-sources/com/aliyun/aliyun-java-sdk-cloudauth-console/2.0.4/com/aliyuncs/cloudauth_console/model
java-sources/com/aliyun/aliyun-java-sdk-cloudauth-console/2.0.4/com/aliyuncs/cloudauth_console/model/v20190219/CreateProjectRequest.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.cloudauth_console.model.v20190219; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.cloudauth_console.Endpoint; /** * @author auto create * @version */ public class CreateProjectRequest extends RpcAcsRequest<CreateProjectResponse> { private String projectName; private String projectType; public CreateProjectRequest() { super("Cloudauth-console", "2019-02-19", "CreateProject", "cloudauth-console"); setMethod(MethodType.POST); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } public String getProjectName() { return this.projectName; } public void setProjectName(String projectName) { this.projectName = projectName; if(projectName != null){ putQueryParameter("ProjectName", projectName); } } public String getProjectType() { return this.projectType; } public void setProjectType(String projectType) { this.projectType = projectType; if(projectType != null){ putQueryParameter("ProjectType", projectType); } } @Override public Class<CreateProjectResponse> getResponseClass() { return CreateProjectResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cloudauth-console/2.0.4/com/aliyuncs/cloudauth_console/model
java-sources/com/aliyun/aliyun-java-sdk-cloudauth-console/2.0.4/com/aliyuncs/cloudauth_console/model/v20190219/CreateProjectResponse.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.cloudauth_console.model.v20190219; import com.aliyuncs.AcsResponse; import com.aliyuncs.cloudauth_console.transform.v20190219.CreateProjectResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class CreateProjectResponse extends AcsResponse { private String requestId; private Boolean success; private Integer httpStatusCode; 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 Integer getHttpStatusCode() { return this.httpStatusCode; } public void setHttpStatusCode(Integer httpStatusCode) { this.httpStatusCode = httpStatusCode; } public Data getData() { return this.data; } public void setData(Data data) { this.data = data; } public static class Data { private String projectId; private Long gmtCreate; public String getProjectId() { return this.projectId; } public void setProjectId(String projectId) { this.projectId = projectId; } public Long getGmtCreate() { return this.gmtCreate; } public void setGmtCreate(Long gmtCreate) { this.gmtCreate = gmtCreate; } } @Override public CreateProjectResponse getInstance(UnmarshallerContext context) { return CreateProjectResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cloudauth-console/2.0.4/com/aliyuncs/cloudauth_console/model
java-sources/com/aliyun/aliyun-java-sdk-cloudauth-console/2.0.4/com/aliyuncs/cloudauth_console/model/v20190219/CreateSlrRoleRequest.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.cloudauth_console.model.v20190219; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.cloudauth_console.Endpoint; /** * @author auto create * @version */ public class CreateSlrRoleRequest extends RpcAcsRequest<CreateSlrRoleResponse> { private String roleName; private Long durationSeconds; public CreateSlrRoleRequest() { super("Cloudauth-console", "2019-02-19", "CreateSlrRole", "cloudauth-console"); setMethod(MethodType.POST); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } public String getRoleName() { return this.roleName; } public void setRoleName(String roleName) { this.roleName = roleName; if(roleName != null){ putQueryParameter("RoleName", roleName); } } public Long getDurationSeconds() { return this.durationSeconds; } public void setDurationSeconds(Long durationSeconds) { this.durationSeconds = durationSeconds; if(durationSeconds != null){ putQueryParameter("DurationSeconds", durationSeconds.toString()); } } @Override public Class<CreateSlrRoleResponse> getResponseClass() { return CreateSlrRoleResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cloudauth-console/2.0.4/com/aliyuncs/cloudauth_console/model
java-sources/com/aliyun/aliyun-java-sdk-cloudauth-console/2.0.4/com/aliyuncs/cloudauth_console/model/v20190219/CreateSlrRoleResponse.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.cloudauth_console.model.v20190219; import com.aliyuncs.AcsResponse; import com.aliyuncs.cloudauth_console.transform.v20190219.CreateSlrRoleResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class CreateSlrRoleResponse extends AcsResponse { private String requestId; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } @Override public CreateSlrRoleResponse getInstance(UnmarshallerContext context) { return CreateSlrRoleResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cloudauth-console/2.0.4/com/aliyuncs/cloudauth_console/model
java-sources/com/aliyun/aliyun-java-sdk-cloudauth-console/2.0.4/com/aliyuncs/cloudauth_console/model/v20190219/DeleteMnsServeRequest.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.cloudauth_console.model.v20190219; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.cloudauth_console.Endpoint; /** * @author auto create * @version */ public class DeleteMnsServeRequest extends RpcAcsRequest<DeleteMnsServeResponse> { private String projectId; public DeleteMnsServeRequest() { super("Cloudauth-console", "2019-02-19", "DeleteMnsServe", "cloudauth-console"); setMethod(MethodType.POST); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } public String getProjectId() { return this.projectId; } public void setProjectId(String projectId) { this.projectId = projectId; if(projectId != null){ putQueryParameter("ProjectId", projectId); } } @Override public Class<DeleteMnsServeResponse> getResponseClass() { return DeleteMnsServeResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cloudauth-console/2.0.4/com/aliyuncs/cloudauth_console/model
java-sources/com/aliyun/aliyun-java-sdk-cloudauth-console/2.0.4/com/aliyuncs/cloudauth_console/model/v20190219/DeleteMnsServeResponse.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.cloudauth_console.model.v20190219; import com.aliyuncs.AcsResponse; import com.aliyuncs.cloudauth_console.transform.v20190219.DeleteMnsServeResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class DeleteMnsServeResponse extends AcsResponse { private String requestId; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } @Override public DeleteMnsServeResponse getInstance(UnmarshallerContext context) { return DeleteMnsServeResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cloudauth-console/2.0.4/com/aliyuncs/cloudauth_console/model
java-sources/com/aliyun/aliyun-java-sdk-cloudauth-console/2.0.4/com/aliyuncs/cloudauth_console/model/v20190219/DeleteUserGroupRequest.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.cloudauth_console.model.v20190219; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.cloudauth_console.Endpoint; /** * @author auto create * @version */ public class DeleteUserGroupRequest extends RpcAcsRequest<DeleteUserGroupResponse> { private Long groupId; private String projectId; public DeleteUserGroupRequest() { super("Cloudauth-console", "2019-02-19", "DeleteUserGroup", "cloudauth-console"); setMethod(MethodType.POST); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } public Long getGroupId() { return this.groupId; } public void setGroupId(Long groupId) { this.groupId = groupId; if(groupId != null){ putQueryParameter("GroupId", groupId.toString()); } } public String getProjectId() { return this.projectId; } public void setProjectId(String projectId) { this.projectId = projectId; if(projectId != null){ putQueryParameter("ProjectId", projectId); } } @Override public Class<DeleteUserGroupResponse> getResponseClass() { return DeleteUserGroupResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cloudauth-console/2.0.4/com/aliyuncs/cloudauth_console/model
java-sources/com/aliyun/aliyun-java-sdk-cloudauth-console/2.0.4/com/aliyuncs/cloudauth_console/model/v20190219/DeleteUserGroupResponse.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.cloudauth_console.model.v20190219; import com.aliyuncs.AcsResponse; import com.aliyuncs.cloudauth_console.transform.v20190219.DeleteUserGroupResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class DeleteUserGroupResponse extends AcsResponse { private String requestId; private Boolean success; 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; } @Override public DeleteUserGroupResponse getInstance(UnmarshallerContext context) { return DeleteUserGroupResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cloudauth-console/2.0.4/com/aliyuncs/cloudauth_console/model
java-sources/com/aliyun/aliyun-java-sdk-cloudauth-console/2.0.4/com/aliyuncs/cloudauth_console/model/v20190219/DeleteUserInfoRequest.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.cloudauth_console.model.v20190219; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.cloudauth_console.Endpoint; /** * @author auto create * @version */ public class DeleteUserInfoRequest extends RpcAcsRequest<DeleteUserInfoResponse> { private Long userId; private String projectId; public DeleteUserInfoRequest() { super("Cloudauth-console", "2019-02-19", "DeleteUserInfo", "cloudauth-console"); setMethod(MethodType.POST); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } public Long getUserId() { return this.userId; } public void setUserId(Long userId) { this.userId = userId; if(userId != null){ putQueryParameter("UserId", userId.toString()); } } public String getProjectId() { return this.projectId; } public void setProjectId(String projectId) { this.projectId = projectId; if(projectId != null){ putQueryParameter("ProjectId", projectId); } } @Override public Class<DeleteUserInfoResponse> getResponseClass() { return DeleteUserInfoResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cloudauth-console/2.0.4/com/aliyuncs/cloudauth_console/model
java-sources/com/aliyun/aliyun-java-sdk-cloudauth-console/2.0.4/com/aliyuncs/cloudauth_console/model/v20190219/DeleteUserInfoResponse.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.cloudauth_console.model.v20190219; import com.aliyuncs.AcsResponse; import com.aliyuncs.cloudauth_console.transform.v20190219.DeleteUserInfoResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class DeleteUserInfoResponse extends AcsResponse { private String requestId; private Boolean success; 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; } @Override public DeleteUserInfoResponse getInstance(UnmarshallerContext context) { return DeleteUserInfoResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cloudauth-console/2.0.4/com/aliyuncs/cloudauth_console/model
java-sources/com/aliyun/aliyun-java-sdk-cloudauth-console/2.0.4/com/aliyuncs/cloudauth_console/model/v20190219/DescribeAllEndPointRequest.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.cloudauth_console.model.v20190219; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.cloudauth_console.Endpoint; /** * @author auto create * @version */ public class DescribeAllEndPointRequest extends RpcAcsRequest<DescribeAllEndPointResponse> { public DescribeAllEndPointRequest() { super("Cloudauth-console", "2019-02-19", "DescribeAllEndPoint", "cloudauth-console"); setMethod(MethodType.POST); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } @Override public Class<DescribeAllEndPointResponse> getResponseClass() { return DescribeAllEndPointResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cloudauth-console/2.0.4/com/aliyuncs/cloudauth_console/model
java-sources/com/aliyun/aliyun-java-sdk-cloudauth-console/2.0.4/com/aliyuncs/cloudauth_console/model/v20190219/DescribeAllEndPointResponse.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.cloudauth_console.model.v20190219; import java.util.List; import com.aliyuncs.AcsResponse; import com.aliyuncs.cloudauth_console.transform.v20190219.DescribeAllEndPointResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class DescribeAllEndPointResponse extends AcsResponse { private String requestId; private Boolean success; private Integer httpStatusCode; private List<DataItem> 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 Integer getHttpStatusCode() { return this.httpStatusCode; } public void setHttpStatusCode(Integer httpStatusCode) { this.httpStatusCode = httpStatusCode; } public List<DataItem> getData() { return this.data; } public void setData(List<DataItem> data) { this.data = data; } public static class DataItem { private String endPoint; private String cityName; public String getEndPoint() { return this.endPoint; } public void setEndPoint(String endPoint) { this.endPoint = endPoint; } public String getCityName() { return this.cityName; } public void setCityName(String cityName) { this.cityName = cityName; } } @Override public DescribeAllEndPointResponse getInstance(UnmarshallerContext context) { return DescribeAllEndPointResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cloudauth-console/2.0.4/com/aliyuncs/cloudauth_console/model
java-sources/com/aliyun/aliyun-java-sdk-cloudauth-console/2.0.4/com/aliyuncs/cloudauth_console/model/v20190219/DescribeBindUserIdListRequest.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.cloudauth_console.model.v20190219; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.cloudauth_console.Endpoint; /** * @author auto create * @version */ public class DescribeBindUserIdListRequest extends RpcAcsRequest<DescribeBindUserIdListResponse> { private String projectId; public DescribeBindUserIdListRequest() { super("Cloudauth-console", "2019-02-19", "DescribeBindUserIdList", "cloudauth-console"); setMethod(MethodType.POST); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } public String getProjectId() { return this.projectId; } public void setProjectId(String projectId) { this.projectId = projectId; if(projectId != null){ putQueryParameter("ProjectId", projectId); } } @Override public Class<DescribeBindUserIdListResponse> getResponseClass() { return DescribeBindUserIdListResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cloudauth-console/2.0.4/com/aliyuncs/cloudauth_console/model
java-sources/com/aliyun/aliyun-java-sdk-cloudauth-console/2.0.4/com/aliyuncs/cloudauth_console/model/v20190219/DescribeBindUserIdListResponse.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.cloudauth_console.model.v20190219; import java.util.List; import com.aliyuncs.AcsResponse; import com.aliyuncs.cloudauth_console.transform.v20190219.DescribeBindUserIdListResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class DescribeBindUserIdListResponse extends AcsResponse { private String requestId; private List<UserInfoVo> data; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public List<UserInfoVo> getData() { return this.data; } public void setData(List<UserInfoVo> data) { this.data = data; } public static class UserInfoVo { private Long id; private String userName; private String certificateType; private String certificateNo; public Long getId() { return this.id; } public void setId(Long id) { this.id = id; } public String getUserName() { return this.userName; } public void setUserName(String userName) { this.userName = userName; } public String getCertificateType() { return this.certificateType; } public void setCertificateType(String certificateType) { this.certificateType = certificateType; } public String getCertificateNo() { return this.certificateNo; } public void setCertificateNo(String certificateNo) { this.certificateNo = certificateNo; } } @Override public DescribeBindUserIdListResponse getInstance(UnmarshallerContext context) { return DescribeBindUserIdListResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cloudauth-console/2.0.4/com/aliyuncs/cloudauth_console/model
java-sources/com/aliyun/aliyun-java-sdk-cloudauth-console/2.0.4/com/aliyuncs/cloudauth_console/model/v20190219/DescribeCertificateTypeListRequest.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.cloudauth_console.model.v20190219; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.cloudauth_console.Endpoint; /** * @author auto create * @version */ public class DescribeCertificateTypeListRequest extends RpcAcsRequest<DescribeCertificateTypeListResponse> { private String projectId; public DescribeCertificateTypeListRequest() { super("Cloudauth-console", "2019-02-19", "DescribeCertificateTypeList", "cloudauth-console"); setMethod(MethodType.POST); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } public String getProjectId() { return this.projectId; } public void setProjectId(String projectId) { this.projectId = projectId; if(projectId != null){ putQueryParameter("ProjectId", projectId); } } @Override public Class<DescribeCertificateTypeListResponse> getResponseClass() { return DescribeCertificateTypeListResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cloudauth-console/2.0.4/com/aliyuncs/cloudauth_console/model
java-sources/com/aliyun/aliyun-java-sdk-cloudauth-console/2.0.4/com/aliyuncs/cloudauth_console/model/v20190219/DescribeCertificateTypeListResponse.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.cloudauth_console.model.v20190219; import java.util.List; import com.aliyuncs.AcsResponse; import com.aliyuncs.cloudauth_console.transform.v20190219.DescribeCertificateTypeListResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class DescribeCertificateTypeListResponse extends AcsResponse { private String requestId; private List<String> typeList; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public List<String> getTypeList() { return this.typeList; } public void setTypeList(List<String> typeList) { this.typeList = typeList; } @Override public DescribeCertificateTypeListResponse getInstance(UnmarshallerContext context) { return DescribeCertificateTypeListResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cloudauth-console/2.0.4/com/aliyuncs/cloudauth_console/model
java-sources/com/aliyun/aliyun-java-sdk-cloudauth-console/2.0.4/com/aliyuncs/cloudauth_console/model/v20190219/DescribeDeviceListRequest.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.cloudauth_console.model.v20190219; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.cloudauth_console.Endpoint; /** * @author auto create * @version */ public class DescribeDeviceListRequest extends RpcAcsRequest<DescribeDeviceListResponse> { private Integer currentPage; private Integer pageSize; private String keyword; private String projectId; public DescribeDeviceListRequest() { super("Cloudauth-console", "2019-02-19", "DescribeDeviceList", "cloudauth-console"); setMethod(MethodType.POST); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } public Integer getCurrentPage() { return this.currentPage; } public void setCurrentPage(Integer currentPage) { this.currentPage = currentPage; if(currentPage != null){ putQueryParameter("CurrentPage", currentPage.toString()); } } public Integer getPageSize() { return this.pageSize; } public void setPageSize(Integer pageSize) { this.pageSize = pageSize; if(pageSize != null){ putQueryParameter("PageSize", pageSize.toString()); } } public String getKeyword() { return this.keyword; } public void setKeyword(String keyword) { this.keyword = keyword; if(keyword != null){ putQueryParameter("Keyword", keyword); } } public String getProjectId() { return this.projectId; } public void setProjectId(String projectId) { this.projectId = projectId; if(projectId != null){ putQueryParameter("ProjectId", projectId); } } @Override public Class<DescribeDeviceListResponse> getResponseClass() { return DescribeDeviceListResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cloudauth-console/2.0.4/com/aliyuncs/cloudauth_console/model
java-sources/com/aliyun/aliyun-java-sdk-cloudauth-console/2.0.4/com/aliyuncs/cloudauth_console/model/v20190219/DescribeDeviceListResponse.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.cloudauth_console.model.v20190219; import java.util.List; import com.aliyuncs.AcsResponse; import com.aliyuncs.cloudauth_console.transform.v20190219.DescribeDeviceListResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class DescribeDeviceListResponse extends AcsResponse { private String requestId; private Long totalCount; private List<DeviceItem> deviceList; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public Long getTotalCount() { return this.totalCount; } public void setTotalCount(Long totalCount) { this.totalCount = totalCount; } public List<DeviceItem> getDeviceList() { return this.deviceList; } public void setDeviceList(List<DeviceItem> deviceList) { this.deviceList = deviceList; } public static class DeviceItem { private String iotId; private String memoName; private String categoryName; private String deviceName; private String deviceStatus; public String getIotId() { return this.iotId; } public void setIotId(String iotId) { this.iotId = iotId; } public String getMemoName() { return this.memoName; } public void setMemoName(String memoName) { this.memoName = memoName; } public String getCategoryName() { return this.categoryName; } public void setCategoryName(String categoryName) { this.categoryName = categoryName; } public String getDeviceName() { return this.deviceName; } public void setDeviceName(String deviceName) { this.deviceName = deviceName; } public String getDeviceStatus() { return this.deviceStatus; } public void setDeviceStatus(String deviceStatus) { this.deviceStatus = deviceStatus; } } @Override public DescribeDeviceListResponse getInstance(UnmarshallerContext context) { return DescribeDeviceListResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cloudauth-console/2.0.4/com/aliyuncs/cloudauth_console/model
java-sources/com/aliyun/aliyun-java-sdk-cloudauth-console/2.0.4/com/aliyuncs/cloudauth_console/model/v20190219/DescribeExcelAnalysisResultRequest.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.cloudauth_console.model.v20190219; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.cloudauth_console.Endpoint; /** * @author auto create * @version */ public class DescribeExcelAnalysisResultRequest extends RpcAcsRequest<DescribeExcelAnalysisResultResponse> { private String projectId; private String key; public DescribeExcelAnalysisResultRequest() { super("Cloudauth-console", "2019-02-19", "DescribeExcelAnalysisResult", "cloudauth-console"); setMethod(MethodType.POST); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } public String getProjectId() { return this.projectId; } public void setProjectId(String projectId) { this.projectId = projectId; if(projectId != null){ putQueryParameter("ProjectId", projectId); } } public String getKey() { return this.key; } public void setKey(String key) { this.key = key; if(key != null){ putQueryParameter("Key", key); } } @Override public Class<DescribeExcelAnalysisResultResponse> getResponseClass() { return DescribeExcelAnalysisResultResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cloudauth-console/2.0.4/com/aliyuncs/cloudauth_console/model
java-sources/com/aliyun/aliyun-java-sdk-cloudauth-console/2.0.4/com/aliyuncs/cloudauth_console/model/v20190219/DescribeExcelAnalysisResultResponse.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.cloudauth_console.model.v20190219; import java.util.List; import com.aliyuncs.AcsResponse; import com.aliyuncs.cloudauth_console.transform.v20190219.DescribeExcelAnalysisResultResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class DescribeExcelAnalysisResultResponse extends AcsResponse { private String requestId; private Boolean success; private Integer httpStatusCode; private ExcelResult excelResult; 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 Integer getHttpStatusCode() { return this.httpStatusCode; } public void setHttpStatusCode(Integer httpStatusCode) { this.httpStatusCode = httpStatusCode; } public ExcelResult getExcelResult() { return this.excelResult; } public void setExcelResult(ExcelResult excelResult) { this.excelResult = excelResult; } public static class ExcelResult { private Integer total; private Integer updateCount; private Integer insertCount; private Integer errorCount; private List<String> errorLine; public Integer getTotal() { return this.total; } public void setTotal(Integer total) { this.total = total; } public Integer getUpdateCount() { return this.updateCount; } public void setUpdateCount(Integer updateCount) { this.updateCount = updateCount; } public Integer getInsertCount() { return this.insertCount; } public void setInsertCount(Integer insertCount) { this.insertCount = insertCount; } public Integer getErrorCount() { return this.errorCount; } public void setErrorCount(Integer errorCount) { this.errorCount = errorCount; } public List<String> getErrorLine() { return this.errorLine; } public void setErrorLine(List<String> errorLine) { this.errorLine = errorLine; } } @Override public DescribeExcelAnalysisResultResponse getInstance(UnmarshallerContext context) { return DescribeExcelAnalysisResultResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cloudauth-console/2.0.4/com/aliyuncs/cloudauth_console/model
java-sources/com/aliyun/aliyun-java-sdk-cloudauth-console/2.0.4/com/aliyuncs/cloudauth_console/model/v20190219/DescribeIdentifyRecordListRequest.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.cloudauth_console.model.v20190219; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.cloudauth_console.Endpoint; /** * @author auto create * @version */ public class DescribeIdentifyRecordListRequest extends RpcAcsRequest<DescribeIdentifyRecordListResponse> { private Long startTime; private String certificateNo; private Integer pageSize; private String projectId; private Long endTime; private Integer currentPage; private String groupName; private String phoneNo; private String deviceName; private String userName; public DescribeIdentifyRecordListRequest() { super("Cloudauth-console", "2019-02-19", "DescribeIdentifyRecordList", "cloudauth-console"); setMethod(MethodType.POST); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } public Long getStartTime() { return this.startTime; } public void setStartTime(Long startTime) { this.startTime = startTime; if(startTime != null){ putQueryParameter("StartTime", startTime.toString()); } } public String getCertificateNo() { return this.certificateNo; } public void setCertificateNo(String certificateNo) { this.certificateNo = certificateNo; if(certificateNo != null){ putQueryParameter("CertificateNo", certificateNo); } } public Integer getPageSize() { return this.pageSize; } public void setPageSize(Integer pageSize) { this.pageSize = pageSize; if(pageSize != null){ putQueryParameter("PageSize", pageSize.toString()); } } public String getProjectId() { return this.projectId; } public void setProjectId(String projectId) { this.projectId = projectId; if(projectId != null){ putQueryParameter("ProjectId", projectId); } } public Long getEndTime() { return this.endTime; } public void setEndTime(Long endTime) { this.endTime = endTime; if(endTime != null){ putQueryParameter("EndTime", endTime.toString()); } } public Integer getCurrentPage() { return this.currentPage; } public void setCurrentPage(Integer currentPage) { this.currentPage = currentPage; if(currentPage != null){ putQueryParameter("CurrentPage", currentPage.toString()); } } public String getGroupName() { return this.groupName; } public void setGroupName(String groupName) { this.groupName = groupName; if(groupName != null){ putQueryParameter("GroupName", groupName); } } public String getPhoneNo() { return this.phoneNo; } public void setPhoneNo(String phoneNo) { this.phoneNo = phoneNo; if(phoneNo != null){ putQueryParameter("PhoneNo", phoneNo); } } public String getDeviceName() { return this.deviceName; } public void setDeviceName(String deviceName) { this.deviceName = deviceName; if(deviceName != null){ putQueryParameter("DeviceName", deviceName); } } public String getUserName() { return this.userName; } public void setUserName(String userName) { this.userName = userName; if(userName != null){ putQueryParameter("UserName", userName); } } @Override public Class<DescribeIdentifyRecordListResponse> getResponseClass() { return DescribeIdentifyRecordListResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cloudauth-console/2.0.4/com/aliyuncs/cloudauth_console/model
java-sources/com/aliyun/aliyun-java-sdk-cloudauth-console/2.0.4/com/aliyuncs/cloudauth_console/model/v20190219/DescribeIdentifyRecordListResponse.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.cloudauth_console.model.v20190219; import java.util.List; import com.aliyuncs.AcsResponse; import com.aliyuncs.cloudauth_console.transform.v20190219.DescribeIdentifyRecordListResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class DescribeIdentifyRecordListResponse extends AcsResponse { private String requestId; private Long totalCount; private Boolean success; private Integer httpStatusCode; private List<RecognitionRecord> recordList; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public Long getTotalCount() { return this.totalCount; } public void setTotalCount(Long totalCount) { this.totalCount = totalCount; } public Boolean getSuccess() { return this.success; } public void setSuccess(Boolean success) { this.success = success; } public Integer getHttpStatusCode() { return this.httpStatusCode; } public void setHttpStatusCode(Integer httpStatusCode) { this.httpStatusCode = httpStatusCode; } public List<RecognitionRecord> getRecordList() { return this.recordList; } public void setRecordList(List<RecognitionRecord> recordList) { this.recordList = recordList; } public static class RecognitionRecord { private String capturedImage; private String groupName; private String identifyingImage; private String userName; private Long gmtCreate; private String iotId; private String deviceName; private Integer userId; public String getCapturedImage() { return this.capturedImage; } public void setCapturedImage(String capturedImage) { this.capturedImage = capturedImage; } public String getGroupName() { return this.groupName; } public void setGroupName(String groupName) { this.groupName = groupName; } public String getIdentifyingImage() { return this.identifyingImage; } public void setIdentifyingImage(String identifyingImage) { this.identifyingImage = identifyingImage; } public String getUserName() { return this.userName; } public void setUserName(String userName) { this.userName = userName; } public Long getGmtCreate() { return this.gmtCreate; } public void setGmtCreate(Long gmtCreate) { this.gmtCreate = gmtCreate; } public String getIotId() { return this.iotId; } public void setIotId(String iotId) { this.iotId = iotId; } public String getDeviceName() { return this.deviceName; } public void setDeviceName(String deviceName) { this.deviceName = deviceName; } public Integer getUserId() { return this.userId; } public void setUserId(Integer userId) { this.userId = userId; } } @Override public DescribeIdentifyRecordListResponse getInstance(UnmarshallerContext context) { return DescribeIdentifyRecordListResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cloudauth-console/2.0.4/com/aliyuncs/cloudauth_console/model
java-sources/com/aliyun/aliyun-java-sdk-cloudauth-console/2.0.4/com/aliyuncs/cloudauth_console/model/v20190219/DescribeMnsOauthRequest.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.cloudauth_console.model.v20190219; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.cloudauth_console.Endpoint; /** * @author auto create * @version */ public class DescribeMnsOauthRequest extends RpcAcsRequest<DescribeMnsOauthResponse> { private String projectId; public DescribeMnsOauthRequest() { super("Cloudauth-console", "2019-02-19", "DescribeMnsOauth", "cloudauth-console"); setMethod(MethodType.POST); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } public String getProjectId() { return this.projectId; } public void setProjectId(String projectId) { this.projectId = projectId; if(projectId != null){ putQueryParameter("ProjectId", projectId); } } @Override public Class<DescribeMnsOauthResponse> getResponseClass() { return DescribeMnsOauthResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cloudauth-console/2.0.4/com/aliyuncs/cloudauth_console/model
java-sources/com/aliyun/aliyun-java-sdk-cloudauth-console/2.0.4/com/aliyuncs/cloudauth_console/model/v20190219/DescribeMnsOauthResponse.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.cloudauth_console.model.v20190219; import java.util.List; import com.aliyuncs.AcsResponse; import com.aliyuncs.cloudauth_console.transform.v20190219.DescribeMnsOauthResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class DescribeMnsOauthResponse extends AcsResponse { private String requestId; private Data data; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public Data getData() { return this.data; } public void setData(Data data) { this.data = data; } public static class Data { private Boolean mnsServe; private Boolean openMnsService; private Boolean mnsAuthorized; private String topicName; private String endPoint; private List<String> topicList; public Boolean getMnsServe() { return this.mnsServe; } public void setMnsServe(Boolean mnsServe) { this.mnsServe = mnsServe; } public Boolean getOpenMnsService() { return this.openMnsService; } public void setOpenMnsService(Boolean openMnsService) { this.openMnsService = openMnsService; } public Boolean getMnsAuthorized() { return this.mnsAuthorized; } public void setMnsAuthorized(Boolean mnsAuthorized) { this.mnsAuthorized = mnsAuthorized; } public String getTopicName() { return this.topicName; } public void setTopicName(String topicName) { this.topicName = topicName; } public String getEndPoint() { return this.endPoint; } public void setEndPoint(String endPoint) { this.endPoint = endPoint; } public List<String> getTopicList() { return this.topicList; } public void setTopicList(List<String> topicList) { this.topicList = topicList; } } @Override public DescribeMnsOauthResponse getInstance(UnmarshallerContext context) { return DescribeMnsOauthResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cloudauth-console/2.0.4/com/aliyuncs/cloudauth_console/model
java-sources/com/aliyun/aliyun-java-sdk-cloudauth-console/2.0.4/com/aliyuncs/cloudauth_console/model/v20190219/DescribeOssOauthRequest.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.cloudauth_console.model.v20190219; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.cloudauth_console.Endpoint; /** * @author auto create * @version */ public class DescribeOssOauthRequest extends RpcAcsRequest<DescribeOssOauthResponse> { private String projectId; public DescribeOssOauthRequest() { super("Cloudauth-console", "2019-02-19", "DescribeOssOauth", "cloudauth-console"); setMethod(MethodType.POST); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } public String getProjectId() { return this.projectId; } public void setProjectId(String projectId) { this.projectId = projectId; if(projectId != null){ putQueryParameter("ProjectId", projectId); } } @Override public Class<DescribeOssOauthResponse> getResponseClass() { return DescribeOssOauthResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cloudauth-console/2.0.4/com/aliyuncs/cloudauth_console/model
java-sources/com/aliyun/aliyun-java-sdk-cloudauth-console/2.0.4/com/aliyuncs/cloudauth_console/model/v20190219/DescribeOssOauthResponse.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.cloudauth_console.model.v20190219; import com.aliyuncs.AcsResponse; import com.aliyuncs.cloudauth_console.transform.v20190219.DescribeOssOauthResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class DescribeOssOauthResponse extends AcsResponse { private String requestId; private Data data; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public Data getData() { return this.data; } public void setData(Data data) { this.data = data; } public static class Data { private Boolean ossServe; private Boolean openOssService; private Boolean ossAuthorized; private String bucketName; private Long openOssTime; public Boolean getOssServe() { return this.ossServe; } public void setOssServe(Boolean ossServe) { this.ossServe = ossServe; } public Boolean getOpenOssService() { return this.openOssService; } public void setOpenOssService(Boolean openOssService) { this.openOssService = openOssService; } public Boolean getOssAuthorized() { return this.ossAuthorized; } public void setOssAuthorized(Boolean ossAuthorized) { this.ossAuthorized = ossAuthorized; } public String getBucketName() { return this.bucketName; } public void setBucketName(String bucketName) { this.bucketName = bucketName; } public Long getOpenOssTime() { return this.openOssTime; } public void setOpenOssTime(Long openOssTime) { this.openOssTime = openOssTime; } } @Override public DescribeOssOauthResponse getInstance(UnmarshallerContext context) { return DescribeOssOauthResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cloudauth-console/2.0.4/com/aliyuncs/cloudauth_console/model
java-sources/com/aliyun/aliyun-java-sdk-cloudauth-console/2.0.4/com/aliyuncs/cloudauth_console/model/v20190219/DescribeSignedUrlRequest.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.cloudauth_console.model.v20190219; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.cloudauth_console.Endpoint; /** * @author auto create * @version */ public class DescribeSignedUrlRequest extends RpcAcsRequest<DescribeSignedUrlResponse> { private String projectId; private String key; public DescribeSignedUrlRequest() { super("Cloudauth-console", "2019-02-19", "DescribeSignedUrl", "cloudauth-console"); setMethod(MethodType.POST); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } public String getProjectId() { return this.projectId; } public void setProjectId(String projectId) { this.projectId = projectId; if(projectId != null){ putQueryParameter("ProjectId", projectId); } } public String getKey() { return this.key; } public void setKey(String key) { this.key = key; if(key != null){ putQueryParameter("Key", key); } } @Override public Class<DescribeSignedUrlResponse> getResponseClass() { return DescribeSignedUrlResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cloudauth-console/2.0.4/com/aliyuncs/cloudauth_console/model
java-sources/com/aliyun/aliyun-java-sdk-cloudauth-console/2.0.4/com/aliyuncs/cloudauth_console/model/v20190219/DescribeSignedUrlResponse.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.cloudauth_console.model.v20190219; import com.aliyuncs.AcsResponse; import com.aliyuncs.cloudauth_console.transform.v20190219.DescribeSignedUrlResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class DescribeSignedUrlResponse extends AcsResponse { private String requestId; private String imgUrl; private Boolean success; private Integer code; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public String getImgUrl() { return this.imgUrl; } public void setImgUrl(String imgUrl) { this.imgUrl = imgUrl; } public Boolean getSuccess() { return this.success; } public void setSuccess(Boolean success) { this.success = success; } public Integer getCode() { return this.code; } public void setCode(Integer code) { this.code = code; } @Override public DescribeSignedUrlResponse getInstance(UnmarshallerContext context) { return DescribeSignedUrlResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cloudauth-console/2.0.4/com/aliyuncs/cloudauth_console/model
java-sources/com/aliyun/aliyun-java-sdk-cloudauth-console/2.0.4/com/aliyuncs/cloudauth_console/model/v20190219/DescribeTopicRequest.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.cloudauth_console.model.v20190219; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.cloudauth_console.Endpoint; /** * @author auto create * @version */ public class DescribeTopicRequest extends RpcAcsRequest<DescribeTopicResponse> { private String endPoint; private String projectId; public DescribeTopicRequest() { super("Cloudauth-console", "2019-02-19", "DescribeTopic", "cloudauth-console"); setMethod(MethodType.POST); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } public String getEndPoint() { return this.endPoint; } public void setEndPoint(String endPoint) { this.endPoint = endPoint; if(endPoint != null){ putQueryParameter("EndPoint", endPoint); } } public String getProjectId() { return this.projectId; } public void setProjectId(String projectId) { this.projectId = projectId; if(projectId != null){ putQueryParameter("ProjectId", projectId); } } @Override public Class<DescribeTopicResponse> getResponseClass() { return DescribeTopicResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cloudauth-console/2.0.4/com/aliyuncs/cloudauth_console/model
java-sources/com/aliyun/aliyun-java-sdk-cloudauth-console/2.0.4/com/aliyuncs/cloudauth_console/model/v20190219/DescribeTopicResponse.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.cloudauth_console.model.v20190219; import java.util.List; import com.aliyuncs.AcsResponse; import com.aliyuncs.cloudauth_console.transform.v20190219.DescribeTopicResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class DescribeTopicResponse extends AcsResponse { private String requestId; private List<String> data; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public List<String> getData() { return this.data; } public void setData(List<String> data) { this.data = data; } @Override public DescribeTopicResponse getInstance(UnmarshallerContext context) { return DescribeTopicResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cloudauth-console/2.0.4/com/aliyuncs/cloudauth_console/model
java-sources/com/aliyun/aliyun-java-sdk-cloudauth-console/2.0.4/com/aliyuncs/cloudauth_console/model/v20190219/DescribeUploadPreSignRequest.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.cloudauth_console.model.v20190219; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.cloudauth_console.Endpoint; /** * @author auto create * @version */ public class DescribeUploadPreSignRequest extends RpcAcsRequest<DescribeUploadPreSignResponse> { public DescribeUploadPreSignRequest() { super("Cloudauth-console", "2019-02-19", "DescribeUploadPreSign", "cloudauth-console"); setMethod(MethodType.POST); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } @Override public Class<DescribeUploadPreSignResponse> getResponseClass() { return DescribeUploadPreSignResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cloudauth-console/2.0.4/com/aliyuncs/cloudauth_console/model
java-sources/com/aliyun/aliyun-java-sdk-cloudauth-console/2.0.4/com/aliyuncs/cloudauth_console/model/v20190219/DescribeUploadPreSignResponse.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.cloudauth_console.model.v20190219; import com.aliyuncs.AcsResponse; import com.aliyuncs.cloudauth_console.transform.v20190219.DescribeUploadPreSignResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class DescribeUploadPreSignResponse extends AcsResponse { private String requestId; private String accessId; private String signature; private String expire; private String host; private String key; private String policy; private Boolean success; private Integer code; 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 getSignature() { return this.signature; } public void setSignature(String signature) { this.signature = signature; } public String getExpire() { return this.expire; } public void setExpire(String expire) { this.expire = expire; } public String getHost() { return this.host; } public void setHost(String host) { this.host = host; } public String getKey() { return this.key; } public void setKey(String key) { this.key = key; } public String getPolicy() { return this.policy; } public void setPolicy(String policy) { this.policy = policy; } public Boolean getSuccess() { return this.success; } public void setSuccess(Boolean success) { this.success = success; } public Integer getCode() { return this.code; } public void setCode(Integer code) { this.code = code; } @Override public DescribeUploadPreSignResponse getInstance(UnmarshallerContext context) { return DescribeUploadPreSignResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cloudauth-console/2.0.4/com/aliyuncs/cloudauth_console/model
java-sources/com/aliyun/aliyun-java-sdk-cloudauth-console/2.0.4/com/aliyuncs/cloudauth_console/model/v20190219/DescribeUserGroupListRequest.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.cloudauth_console.model.v20190219; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.cloudauth_console.Endpoint; /** * @author auto create * @version */ public class DescribeUserGroupListRequest extends RpcAcsRequest<DescribeUserGroupListResponse> { private String projectId; public DescribeUserGroupListRequest() { super("Cloudauth-console", "2019-02-19", "DescribeUserGroupList", "cloudauth-console"); setMethod(MethodType.POST); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } public String getProjectId() { return this.projectId; } public void setProjectId(String projectId) { this.projectId = projectId; if(projectId != null){ putQueryParameter("ProjectId", projectId); } } @Override public Class<DescribeUserGroupListResponse> getResponseClass() { return DescribeUserGroupListResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cloudauth-console/2.0.4/com/aliyuncs/cloudauth_console/model
java-sources/com/aliyun/aliyun-java-sdk-cloudauth-console/2.0.4/com/aliyuncs/cloudauth_console/model/v20190219/DescribeUserGroupListResponse.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.cloudauth_console.model.v20190219; import java.util.List; import com.aliyuncs.AcsResponse; import com.aliyuncs.cloudauth_console.transform.v20190219.DescribeUserGroupListResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class DescribeUserGroupListResponse extends AcsResponse { private String requestId; private Boolean success; private List<DataItem> 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 List<DataItem> getData() { return this.data; } public void setData(List<DataItem> data) { this.data = data; } public static class DataItem { private Integer groupUserCount; private String groupName; private Long id; public Integer getGroupUserCount() { return this.groupUserCount; } public void setGroupUserCount(Integer groupUserCount) { this.groupUserCount = groupUserCount; } public String getGroupName() { return this.groupName; } public void setGroupName(String groupName) { this.groupName = groupName; } public Long getId() { return this.id; } public void setId(Long id) { this.id = id; } } @Override public DescribeUserGroupListResponse getInstance(UnmarshallerContext context) { return DescribeUserGroupListResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cloudauth-console/2.0.4/com/aliyuncs/cloudauth_console/model
java-sources/com/aliyun/aliyun-java-sdk-cloudauth-console/2.0.4/com/aliyuncs/cloudauth_console/model/v20190219/DescribeUserInfoListRequest.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.cloudauth_console.model.v20190219; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.cloudauth_console.Endpoint; /** * @author auto create * @version */ public class DescribeUserInfoListRequest extends RpcAcsRequest<DescribeUserInfoListResponse> { private String certificateNo; private Integer pageSize; private String projectId; private Long userGroupId; private Integer currentPage; private String phoneNo; private String userName; public DescribeUserInfoListRequest() { super("Cloudauth-console", "2019-02-19", "DescribeUserInfoList", "cloudauth-console"); setMethod(MethodType.POST); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } public String getCertificateNo() { return this.certificateNo; } public void setCertificateNo(String certificateNo) { this.certificateNo = certificateNo; if(certificateNo != null){ putQueryParameter("CertificateNo", certificateNo); } } public Integer getPageSize() { return this.pageSize; } public void setPageSize(Integer pageSize) { this.pageSize = pageSize; if(pageSize != null){ putQueryParameter("PageSize", pageSize.toString()); } } public String getProjectId() { return this.projectId; } public void setProjectId(String projectId) { this.projectId = projectId; if(projectId != null){ putQueryParameter("ProjectId", projectId); } } public Long getUserGroupId() { return this.userGroupId; } public void setUserGroupId(Long userGroupId) { this.userGroupId = userGroupId; if(userGroupId != null){ putQueryParameter("UserGroupId", userGroupId.toString()); } } public Integer getCurrentPage() { return this.currentPage; } public void setCurrentPage(Integer currentPage) { this.currentPage = currentPage; if(currentPage != null){ putQueryParameter("CurrentPage", currentPage.toString()); } } public String getPhoneNo() { return this.phoneNo; } public void setPhoneNo(String phoneNo) { this.phoneNo = phoneNo; if(phoneNo != null){ putQueryParameter("PhoneNo", phoneNo); } } public String getUserName() { return this.userName; } public void setUserName(String userName) { this.userName = userName; if(userName != null){ putQueryParameter("UserName", userName); } } @Override public Class<DescribeUserInfoListResponse> getResponseClass() { return DescribeUserInfoListResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cloudauth-console/2.0.4/com/aliyuncs/cloudauth_console/model
java-sources/com/aliyun/aliyun-java-sdk-cloudauth-console/2.0.4/com/aliyuncs/cloudauth_console/model/v20190219/DescribeUserInfoListResponse.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.cloudauth_console.model.v20190219; import java.util.List; import com.aliyuncs.AcsResponse; import com.aliyuncs.cloudauth_console.transform.v20190219.DescribeUserInfoListResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class DescribeUserInfoListResponse extends AcsResponse { private String requestId; private Long totalCount; private List<UserInfo> userInfoList; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public Long getTotalCount() { return this.totalCount; } public void setTotalCount(Long totalCount) { this.totalCount = totalCount; } public List<UserInfo> getUserInfoList() { return this.userInfoList; } public void setUserInfoList(List<UserInfo> userInfoList) { this.userInfoList = userInfoList; } public static class UserInfo { private Long birthday; private Long userGroupId; private String groupName; private String identifyingImage; private Integer sex; private Long id; private String userName; private String certificateNo; private String phoneNo; private String certificateType; public Long getBirthday() { return this.birthday; } public void setBirthday(Long birthday) { this.birthday = birthday; } public Long getUserGroupId() { return this.userGroupId; } public void setUserGroupId(Long userGroupId) { this.userGroupId = userGroupId; } public String getGroupName() { return this.groupName; } public void setGroupName(String groupName) { this.groupName = groupName; } public String getIdentifyingImage() { return this.identifyingImage; } public void setIdentifyingImage(String identifyingImage) { this.identifyingImage = identifyingImage; } public Integer getSex() { return this.sex; } public void setSex(Integer sex) { this.sex = sex; } public Long getId() { return this.id; } public void setId(Long id) { this.id = id; } public String getUserName() { return this.userName; } public void setUserName(String userName) { this.userName = userName; } public String getCertificateNo() { return this.certificateNo; } public void setCertificateNo(String certificateNo) { this.certificateNo = certificateNo; } public String getPhoneNo() { return this.phoneNo; } public void setPhoneNo(String phoneNo) { this.phoneNo = phoneNo; } public String getCertificateType() { return this.certificateType; } public void setCertificateType(String certificateType) { this.certificateType = certificateType; } } @Override public DescribeUserInfoListResponse getInstance(UnmarshallerContext context) { return DescribeUserInfoListResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cloudauth-console/2.0.4/com/aliyuncs/cloudauth_console/model
java-sources/com/aliyun/aliyun-java-sdk-cloudauth-console/2.0.4/com/aliyuncs/cloudauth_console/model/v20190219/GetAccountProjectRequest.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.cloudauth_console.model.v20190219; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.cloudauth_console.Endpoint; /** * @author auto create * @version */ public class GetAccountProjectRequest extends RpcAcsRequest<GetAccountProjectResponse> { public GetAccountProjectRequest() { super("Cloudauth-console", "2019-02-19", "GetAccountProject", "cloudauth-console"); setMethod(MethodType.POST); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } @Override public Class<GetAccountProjectResponse> getResponseClass() { return GetAccountProjectResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cloudauth-console/2.0.4/com/aliyuncs/cloudauth_console/model
java-sources/com/aliyun/aliyun-java-sdk-cloudauth-console/2.0.4/com/aliyuncs/cloudauth_console/model/v20190219/GetAccountProjectResponse.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.cloudauth_console.model.v20190219; import java.util.List; import com.aliyuncs.AcsResponse; import com.aliyuncs.cloudauth_console.transform.v20190219.GetAccountProjectResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class GetAccountProjectResponse extends AcsResponse { private String requestId; private Boolean success; private Integer httpStatusCode; private List<Data> list; 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 Integer getHttpStatusCode() { return this.httpStatusCode; } public void setHttpStatusCode(Integer httpStatusCode) { this.httpStatusCode = httpStatusCode; } public List<Data> getList() { return this.list; } public void setList(List<Data> list) { this.list = list; } public static class Data { private String projectName; private String projectId; public String getProjectName() { return this.projectName; } public void setProjectName(String projectName) { this.projectName = projectName; } public String getProjectId() { return this.projectId; } public void setProjectId(String projectId) { this.projectId = projectId; } } @Override public GetAccountProjectResponse getInstance(UnmarshallerContext context) { return GetAccountProjectResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }