index
int64
repo_id
string
file_path
string
content
string
0
java-sources/com/aliyun/aliyun-java-sdk-baas/2.2.3/com/aliyuncs/baas/model
java-sources/com/aliyun/aliyun-java-sdk-baas/2.2.3/com/aliyuncs/baas/model/v20181221/DescribeAntChainCertificateApplicationsV2Request.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.baas.model.v20181221; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.baas.Endpoint; /** * @author auto create * @version */ public class DescribeAntChainCertificateApplicationsV2Request extends RpcAcsRequest<DescribeAntChainCertificateApplicationsV2Response> { private Integer pageNumber; private String antChainId; private Integer pageSize; private String consortiumId; private String status; public DescribeAntChainCertificateApplicationsV2Request() { super("Baas", "2018-12-21", "DescribeAntChainCertificateApplicationsV2", "baas"); 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 getPageNumber() { return this.pageNumber; } public void setPageNumber(Integer pageNumber) { this.pageNumber = pageNumber; if(pageNumber != null){ putBodyParameter("PageNumber", pageNumber.toString()); } } public String getAntChainId() { return this.antChainId; } public void setAntChainId(String antChainId) { this.antChainId = antChainId; if(antChainId != null){ putBodyParameter("AntChainId", antChainId); } } public Integer getPageSize() { return this.pageSize; } public void setPageSize(Integer pageSize) { this.pageSize = pageSize; if(pageSize != null){ putBodyParameter("PageSize", pageSize.toString()); } } public String getConsortiumId() { return this.consortiumId; } public void setConsortiumId(String consortiumId) { this.consortiumId = consortiumId; if(consortiumId != null){ putBodyParameter("ConsortiumId", consortiumId); } } public String getStatus() { return this.status; } public void setStatus(String status) { this.status = status; if(status != null){ putBodyParameter("Status", status); } } @Override public Class<DescribeAntChainCertificateApplicationsV2Response> getResponseClass() { return DescribeAntChainCertificateApplicationsV2Response.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-baas/2.2.3/com/aliyuncs/baas/model
java-sources/com/aliyun/aliyun-java-sdk-baas/2.2.3/com/aliyuncs/baas/model/v20181221/DescribeAntChainCertificateApplicationsV2Response.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.baas.model.v20181221; import java.util.List; import com.aliyuncs.AcsResponse; import com.aliyuncs.baas.transform.v20181221.DescribeAntChainCertificateApplicationsV2ResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class DescribeAntChainCertificateApplicationsV2Response extends AcsResponse { private String httpStatusCode; private String requestId; private Boolean success; private String resultMessage; private String code; private String message; private String resultCode; private Result result; public String getHttpStatusCode() { return this.httpStatusCode; } public void setHttpStatusCode(String httpStatusCode) { this.httpStatusCode = httpStatusCode; } public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public Boolean getSuccess() { return this.success; } public void setSuccess(Boolean success) { this.success = success; } public String getResultMessage() { return this.resultMessage; } public void setResultMessage(String resultMessage) { this.resultMessage = resultMessage; } public String getCode() { return this.code; } public void setCode(String code) { this.code = code; } public String getMessage() { return this.message; } public void setMessage(String message) { this.message = message; } public String getResultCode() { return this.resultCode; } public void setResultCode(String resultCode) { this.resultCode = resultCode; } public Result getResult() { return this.result; } public void setResult(Result result) { this.result = result; } public static class Result { private List<CertificateApplicationsItem> certificateApplications; private Pagination pagination; public List<CertificateApplicationsItem> getCertificateApplications() { return this.certificateApplications; } public void setCertificateApplications(List<CertificateApplicationsItem> certificateApplications) { this.certificateApplications = certificateApplications; } public Pagination getPagination() { return this.pagination; } public void setPagination(Pagination pagination) { this.pagination = pagination; } public static class CertificateApplicationsItem { private String status; private Long updatetime; private Long createtime; private String bid; private String antChainId; private String username; public String getStatus() { return this.status; } public void setStatus(String status) { this.status = status; } public Long getUpdatetime() { return this.updatetime; } public void setUpdatetime(Long updatetime) { this.updatetime = updatetime; } public Long getCreatetime() { return this.createtime; } public void setCreatetime(Long createtime) { this.createtime = createtime; } public String getBid() { return this.bid; } public void setBid(String bid) { this.bid = bid; } public String getAntChainId() { return this.antChainId; } public void setAntChainId(String antChainId) { this.antChainId = antChainId; } public String getUsername() { return this.username; } public void setUsername(String username) { this.username = username; } } public static class Pagination { private Integer pageSize; private Integer pageNumber; private Integer totalCount; public Integer getPageSize() { return this.pageSize; } public void setPageSize(Integer pageSize) { this.pageSize = pageSize; } public Integer getPageNumber() { return this.pageNumber; } public void setPageNumber(Integer pageNumber) { this.pageNumber = pageNumber; } public Integer getTotalCount() { return this.totalCount; } public void setTotalCount(Integer totalCount) { this.totalCount = totalCount; } } } @Override public DescribeAntChainCertificateApplicationsV2Response getInstance(UnmarshallerContext context) { return DescribeAntChainCertificateApplicationsV2ResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-baas/2.2.3/com/aliyuncs/baas/model
java-sources/com/aliyun/aliyun-java-sdk-baas/2.2.3/com/aliyuncs/baas/model/v20181221/DescribeAntChainConsortiumsRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.baas.model.v20181221; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.baas.Endpoint; /** * @author auto create * @version */ public class DescribeAntChainConsortiumsRequest extends RpcAcsRequest<DescribeAntChainConsortiumsResponse> { private Integer pageNumber; private Integer pageSize; public DescribeAntChainConsortiumsRequest() { super("Baas", "2018-12-21", "DescribeAntChainConsortiums", "baas"); 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 getPageNumber() { return this.pageNumber; } public void setPageNumber(Integer pageNumber) { this.pageNumber = pageNumber; if(pageNumber != null){ putBodyParameter("PageNumber", pageNumber.toString()); } } public Integer getPageSize() { return this.pageSize; } public void setPageSize(Integer pageSize) { this.pageSize = pageSize; if(pageSize != null){ putBodyParameter("PageSize", pageSize.toString()); } } @Override public Class<DescribeAntChainConsortiumsResponse> getResponseClass() { return DescribeAntChainConsortiumsResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-baas/2.2.3/com/aliyuncs/baas/model
java-sources/com/aliyun/aliyun-java-sdk-baas/2.2.3/com/aliyuncs/baas/model/v20181221/DescribeAntChainConsortiumsResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.baas.model.v20181221; import java.util.List; import com.aliyuncs.AcsResponse; import com.aliyuncs.baas.transform.v20181221.DescribeAntChainConsortiumsResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class DescribeAntChainConsortiumsResponse extends AcsResponse { private String requestId; private Result result; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public Result getResult() { return this.result; } public void setResult(Result result) { this.result = result; } public static class Result { private List<AntConsortiumsItem> antConsortiums; private Pagination pagination; public List<AntConsortiumsItem> getAntConsortiums() { return this.antConsortiums; } public void setAntConsortiums(List<AntConsortiumsItem> antConsortiums) { this.antConsortiums = antConsortiums; } public Pagination getPagination() { return this.pagination; } public void setPagination(Pagination pagination) { this.pagination = pagination; } public static class AntConsortiumsItem { private String consortiumDescription; private String status; private String consortiumId; private Long createTime; private Long memberNum; private String role; private String consortiumName; private Long chainNum; public String getConsortiumDescription() { return this.consortiumDescription; } public void setConsortiumDescription(String consortiumDescription) { this.consortiumDescription = consortiumDescription; } public String getStatus() { return this.status; } public void setStatus(String status) { this.status = status; } public String getConsortiumId() { return this.consortiumId; } public void setConsortiumId(String consortiumId) { this.consortiumId = consortiumId; } public Long getCreateTime() { return this.createTime; } public void setCreateTime(Long createTime) { this.createTime = createTime; } public Long getMemberNum() { return this.memberNum; } public void setMemberNum(Long memberNum) { this.memberNum = memberNum; } public String getRole() { return this.role; } public void setRole(String role) { this.role = role; } public String getConsortiumName() { return this.consortiumName; } public void setConsortiumName(String consortiumName) { this.consortiumName = consortiumName; } public Long getChainNum() { return this.chainNum; } public void setChainNum(Long chainNum) { this.chainNum = chainNum; } } public static class Pagination { private Integer pageSize; private Integer pageNumber; private Integer totalCount; public Integer getPageSize() { return this.pageSize; } public void setPageSize(Integer pageSize) { this.pageSize = pageSize; } public Integer getPageNumber() { return this.pageNumber; } public void setPageNumber(Integer pageNumber) { this.pageNumber = pageNumber; } public Integer getTotalCount() { return this.totalCount; } public void setTotalCount(Integer totalCount) { this.totalCount = totalCount; } } } @Override public DescribeAntChainConsortiumsResponse getInstance(UnmarshallerContext context) { return DescribeAntChainConsortiumsResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-baas/2.2.3/com/aliyuncs/baas/model
java-sources/com/aliyun/aliyun-java-sdk-baas/2.2.3/com/aliyuncs/baas/model/v20181221/DescribeAntChainConsortiumsV2Request.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.baas.model.v20181221; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.baas.Endpoint; /** * @author auto create * @version */ public class DescribeAntChainConsortiumsV2Request extends RpcAcsRequest<DescribeAntChainConsortiumsV2Response> { private Integer pageNumber; private Integer pageSize; public DescribeAntChainConsortiumsV2Request() { super("Baas", "2018-12-21", "DescribeAntChainConsortiumsV2", "baas"); 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 getPageNumber() { return this.pageNumber; } public void setPageNumber(Integer pageNumber) { this.pageNumber = pageNumber; if(pageNumber != null){ putBodyParameter("PageNumber", pageNumber.toString()); } } public Integer getPageSize() { return this.pageSize; } public void setPageSize(Integer pageSize) { this.pageSize = pageSize; if(pageSize != null){ putBodyParameter("PageSize", pageSize.toString()); } } @Override public Class<DescribeAntChainConsortiumsV2Response> getResponseClass() { return DescribeAntChainConsortiumsV2Response.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-baas/2.2.3/com/aliyuncs/baas/model
java-sources/com/aliyun/aliyun-java-sdk-baas/2.2.3/com/aliyuncs/baas/model/v20181221/DescribeAntChainConsortiumsV2Response.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.baas.model.v20181221; import java.util.List; import com.aliyuncs.AcsResponse; import com.aliyuncs.baas.transform.v20181221.DescribeAntChainConsortiumsV2ResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class DescribeAntChainConsortiumsV2Response extends AcsResponse { private String httpStatusCode; private String requestId; private Boolean success; private String resultMessage; private String code; private String message; private String resultCode; private Result result; public String getHttpStatusCode() { return this.httpStatusCode; } public void setHttpStatusCode(String httpStatusCode) { this.httpStatusCode = httpStatusCode; } public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public Boolean getSuccess() { return this.success; } public void setSuccess(Boolean success) { this.success = success; } public String getResultMessage() { return this.resultMessage; } public void setResultMessage(String resultMessage) { this.resultMessage = resultMessage; } public String getCode() { return this.code; } public void setCode(String code) { this.code = code; } public String getMessage() { return this.message; } public void setMessage(String message) { this.message = message; } public String getResultCode() { return this.resultCode; } public void setResultCode(String resultCode) { this.resultCode = resultCode; } public Result getResult() { return this.result; } public void setResult(Result result) { this.result = result; } public static class Result { private List<AntConsortiumsItem> antConsortiums; private Pagination pagination; public List<AntConsortiumsItem> getAntConsortiums() { return this.antConsortiums; } public void setAntConsortiums(List<AntConsortiumsItem> antConsortiums) { this.antConsortiums = antConsortiums; } public Pagination getPagination() { return this.pagination; } public void setPagination(Pagination pagination) { this.pagination = pagination; } public static class AntConsortiumsItem { private String consortiumDescription; private String status; private Boolean isEmptyConsortium; private String consortiumId; private Long createTime; private Long memberNum; private String role; private String consortiumName; private Long chainNum; public String getConsortiumDescription() { return this.consortiumDescription; } public void setConsortiumDescription(String consortiumDescription) { this.consortiumDescription = consortiumDescription; } public String getStatus() { return this.status; } public void setStatus(String status) { this.status = status; } public Boolean getIsEmptyConsortium() { return this.isEmptyConsortium; } public void setIsEmptyConsortium(Boolean isEmptyConsortium) { this.isEmptyConsortium = isEmptyConsortium; } public String getConsortiumId() { return this.consortiumId; } public void setConsortiumId(String consortiumId) { this.consortiumId = consortiumId; } public Long getCreateTime() { return this.createTime; } public void setCreateTime(Long createTime) { this.createTime = createTime; } public Long getMemberNum() { return this.memberNum; } public void setMemberNum(Long memberNum) { this.memberNum = memberNum; } public String getRole() { return this.role; } public void setRole(String role) { this.role = role; } public String getConsortiumName() { return this.consortiumName; } public void setConsortiumName(String consortiumName) { this.consortiumName = consortiumName; } public Long getChainNum() { return this.chainNum; } public void setChainNum(Long chainNum) { this.chainNum = chainNum; } } public static class Pagination { private Integer pageSize; private Integer pageNumber; private Integer totalCount; public Integer getPageSize() { return this.pageSize; } public void setPageSize(Integer pageSize) { this.pageSize = pageSize; } public Integer getPageNumber() { return this.pageNumber; } public void setPageNumber(Integer pageNumber) { this.pageNumber = pageNumber; } public Integer getTotalCount() { return this.totalCount; } public void setTotalCount(Integer totalCount) { this.totalCount = totalCount; } } } @Override public DescribeAntChainConsortiumsV2Response getInstance(UnmarshallerContext context) { return DescribeAntChainConsortiumsV2ResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-baas/2.2.3/com/aliyuncs/baas/model
java-sources/com/aliyun/aliyun-java-sdk-baas/2.2.3/com/aliyuncs/baas/model/v20181221/DescribeAntChainContractProjectContentTreeRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.baas.model.v20181221; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.baas.Endpoint; /** * @author auto create * @version */ public class DescribeAntChainContractProjectContentTreeRequest extends RpcAcsRequest<DescribeAntChainContractProjectContentTreeResponse> { private String projectId; public DescribeAntChainContractProjectContentTreeRequest() { super("Baas", "2018-12-21", "DescribeAntChainContractProjectContentTree", "baas"); 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){ putBodyParameter("ProjectId", projectId); } } @Override public Class<DescribeAntChainContractProjectContentTreeResponse> getResponseClass() { return DescribeAntChainContractProjectContentTreeResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-baas/2.2.3/com/aliyuncs/baas/model
java-sources/com/aliyun/aliyun-java-sdk-baas/2.2.3/com/aliyuncs/baas/model/v20181221/DescribeAntChainContractProjectContentTreeResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.baas.model.v20181221; import java.util.List; import java.util.Map; import com.aliyuncs.AcsResponse; import com.aliyuncs.baas.transform.v20181221.DescribeAntChainContractProjectContentTreeResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class DescribeAntChainContractProjectContentTreeResponse extends AcsResponse { private String requestId; private Result result; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public Result getResult() { return this.result; } public void setResult(Result result) { this.result = result; } public static class Result { private String projectVersion; private String projectDescription; private String projectId; private String projectName; private List<Map<Object,Object>> children; public String getProjectVersion() { return this.projectVersion; } public void setProjectVersion(String projectVersion) { this.projectVersion = projectVersion; } public String getProjectDescription() { return this.projectDescription; } public void setProjectDescription(String projectDescription) { this.projectDescription = projectDescription; } public String getProjectId() { return this.projectId; } public void setProjectId(String projectId) { this.projectId = projectId; } public String getProjectName() { return this.projectName; } public void setProjectName(String projectName) { this.projectName = projectName; } public List<Map<Object,Object>> getChildren() { return this.children; } public void setChildren(List<Map<Object,Object>> children) { this.children = children; } } @Override public DescribeAntChainContractProjectContentTreeResponse getInstance(UnmarshallerContext context) { return DescribeAntChainContractProjectContentTreeResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-baas/2.2.3/com/aliyuncs/baas/model
java-sources/com/aliyun/aliyun-java-sdk-baas/2.2.3/com/aliyuncs/baas/model/v20181221/DescribeAntChainContractProjectContentTreeV2Request.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.baas.model.v20181221; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.baas.Endpoint; /** * @author auto create * @version */ public class DescribeAntChainContractProjectContentTreeV2Request extends RpcAcsRequest<DescribeAntChainContractProjectContentTreeV2Response> { private String projectId; private String consortiumId; public DescribeAntChainContractProjectContentTreeV2Request() { super("Baas", "2018-12-21", "DescribeAntChainContractProjectContentTreeV2", "baas"); 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){ putBodyParameter("ProjectId", projectId); } } public String getConsortiumId() { return this.consortiumId; } public void setConsortiumId(String consortiumId) { this.consortiumId = consortiumId; if(consortiumId != null){ putBodyParameter("ConsortiumId", consortiumId); } } @Override public Class<DescribeAntChainContractProjectContentTreeV2Response> getResponseClass() { return DescribeAntChainContractProjectContentTreeV2Response.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-baas/2.2.3/com/aliyuncs/baas/model
java-sources/com/aliyun/aliyun-java-sdk-baas/2.2.3/com/aliyuncs/baas/model/v20181221/DescribeAntChainContractProjectContentTreeV2Response.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.baas.model.v20181221; import com.aliyuncs.AcsResponse; import com.aliyuncs.baas.transform.v20181221.DescribeAntChainContractProjectContentTreeV2ResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class DescribeAntChainContractProjectContentTreeV2Response extends AcsResponse { private String httpStatusCode; private String requestId; private String result; private Boolean success; private String code; private String resultMessage; private String message; private String resultCode; public String getHttpStatusCode() { return this.httpStatusCode; } public void setHttpStatusCode(String httpStatusCode) { this.httpStatusCode = httpStatusCode; } public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public String getResult() { return this.result; } public void setResult(String result) { this.result = result; } public Boolean getSuccess() { return this.success; } public void setSuccess(Boolean success) { this.success = success; } public String getCode() { return this.code; } public void setCode(String code) { this.code = code; } public String getResultMessage() { return this.resultMessage; } public void setResultMessage(String resultMessage) { this.resultMessage = resultMessage; } public String getMessage() { return this.message; } public void setMessage(String message) { this.message = message; } public String getResultCode() { return this.resultCode; } public void setResultCode(String resultCode) { this.resultCode = resultCode; } @Override public DescribeAntChainContractProjectContentTreeV2Response getInstance(UnmarshallerContext context) { return DescribeAntChainContractProjectContentTreeV2ResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-baas/2.2.3/com/aliyuncs/baas/model
java-sources/com/aliyun/aliyun-java-sdk-baas/2.2.3/com/aliyuncs/baas/model/v20181221/DescribeAntChainContractProjectsRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.baas.model.v20181221; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.baas.Endpoint; /** * @author auto create * @version */ public class DescribeAntChainContractProjectsRequest extends RpcAcsRequest<DescribeAntChainContractProjectsResponse> { private Integer pageNumber; private Integer pageSize; private String consortiumId; public DescribeAntChainContractProjectsRequest() { super("Baas", "2018-12-21", "DescribeAntChainContractProjects", "baas"); 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 getPageNumber() { return this.pageNumber; } public void setPageNumber(Integer pageNumber) { this.pageNumber = pageNumber; if(pageNumber != null){ putBodyParameter("PageNumber", pageNumber.toString()); } } public Integer getPageSize() { return this.pageSize; } public void setPageSize(Integer pageSize) { this.pageSize = pageSize; if(pageSize != null){ putBodyParameter("PageSize", pageSize.toString()); } } public String getConsortiumId() { return this.consortiumId; } public void setConsortiumId(String consortiumId) { this.consortiumId = consortiumId; if(consortiumId != null){ putBodyParameter("ConsortiumId", consortiumId); } } @Override public Class<DescribeAntChainContractProjectsResponse> getResponseClass() { return DescribeAntChainContractProjectsResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-baas/2.2.3/com/aliyuncs/baas/model
java-sources/com/aliyun/aliyun-java-sdk-baas/2.2.3/com/aliyuncs/baas/model/v20181221/DescribeAntChainContractProjectsResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.baas.model.v20181221; import java.util.List; import com.aliyuncs.AcsResponse; import com.aliyuncs.baas.transform.v20181221.DescribeAntChainContractProjectsResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class DescribeAntChainContractProjectsResponse extends AcsResponse { private String requestId; private Result result; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public Result getResult() { return this.result; } public void setResult(Result result) { this.result = result; } public static class Result { private List<ContractProjectsItem> contractProjects; private Pagination pagination; public List<ContractProjectsItem> getContractProjects() { return this.contractProjects; } public void setContractProjects(List<ContractProjectsItem> contractProjects) { this.contractProjects = contractProjects; } public Pagination getPagination() { return this.pagination; } public void setPagination(Pagination pagination) { this.pagination = pagination; } public static class ContractProjectsItem { private Long updateTime; private String consortiumId; private Long createTime; private String projectId; private String projectName; private String projectVersion; private String projectDescription; public Long getUpdateTime() { return this.updateTime; } public void setUpdateTime(Long updateTime) { this.updateTime = updateTime; } public String getConsortiumId() { return this.consortiumId; } public void setConsortiumId(String consortiumId) { this.consortiumId = consortiumId; } public Long getCreateTime() { return this.createTime; } public void setCreateTime(Long createTime) { this.createTime = createTime; } public String getProjectId() { return this.projectId; } public void setProjectId(String projectId) { this.projectId = projectId; } public String getProjectName() { return this.projectName; } public void setProjectName(String projectName) { this.projectName = projectName; } public String getProjectVersion() { return this.projectVersion; } public void setProjectVersion(String projectVersion) { this.projectVersion = projectVersion; } public String getProjectDescription() { return this.projectDescription; } public void setProjectDescription(String projectDescription) { this.projectDescription = projectDescription; } } public static class Pagination { private Integer pageSize; private Integer pageNumber; private Integer totalCount; public Integer getPageSize() { return this.pageSize; } public void setPageSize(Integer pageSize) { this.pageSize = pageSize; } public Integer getPageNumber() { return this.pageNumber; } public void setPageNumber(Integer pageNumber) { this.pageNumber = pageNumber; } public Integer getTotalCount() { return this.totalCount; } public void setTotalCount(Integer totalCount) { this.totalCount = totalCount; } } } @Override public DescribeAntChainContractProjectsResponse getInstance(UnmarshallerContext context) { return DescribeAntChainContractProjectsResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-baas/2.2.3/com/aliyuncs/baas/model
java-sources/com/aliyun/aliyun-java-sdk-baas/2.2.3/com/aliyuncs/baas/model/v20181221/DescribeAntChainContractProjectsV2Request.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.baas.model.v20181221; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.baas.Endpoint; /** * @author auto create * @version */ public class DescribeAntChainContractProjectsV2Request extends RpcAcsRequest<DescribeAntChainContractProjectsV2Response> { private Integer pageNumber; private Integer pageSize; private String consortiumId; public DescribeAntChainContractProjectsV2Request() { super("Baas", "2018-12-21", "DescribeAntChainContractProjectsV2", "baas"); 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 getPageNumber() { return this.pageNumber; } public void setPageNumber(Integer pageNumber) { this.pageNumber = pageNumber; if(pageNumber != null){ putBodyParameter("PageNumber", pageNumber.toString()); } } public Integer getPageSize() { return this.pageSize; } public void setPageSize(Integer pageSize) { this.pageSize = pageSize; if(pageSize != null){ putBodyParameter("PageSize", pageSize.toString()); } } public String getConsortiumId() { return this.consortiumId; } public void setConsortiumId(String consortiumId) { this.consortiumId = consortiumId; if(consortiumId != null){ putBodyParameter("ConsortiumId", consortiumId); } } @Override public Class<DescribeAntChainContractProjectsV2Response> getResponseClass() { return DescribeAntChainContractProjectsV2Response.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-baas/2.2.3/com/aliyuncs/baas/model
java-sources/com/aliyun/aliyun-java-sdk-baas/2.2.3/com/aliyuncs/baas/model/v20181221/DescribeAntChainContractProjectsV2Response.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.baas.model.v20181221; import java.util.List; import com.aliyuncs.AcsResponse; import com.aliyuncs.baas.transform.v20181221.DescribeAntChainContractProjectsV2ResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class DescribeAntChainContractProjectsV2Response extends AcsResponse { private String httpStatusCode; private String requestId; private Boolean success; private String resultMessage; private String code; private String message; private String resultCode; private Result result; public String getHttpStatusCode() { return this.httpStatusCode; } public void setHttpStatusCode(String httpStatusCode) { this.httpStatusCode = httpStatusCode; } public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public Boolean getSuccess() { return this.success; } public void setSuccess(Boolean success) { this.success = success; } public String getResultMessage() { return this.resultMessage; } public void setResultMessage(String resultMessage) { this.resultMessage = resultMessage; } public String getCode() { return this.code; } public void setCode(String code) { this.code = code; } public String getMessage() { return this.message; } public void setMessage(String message) { this.message = message; } public String getResultCode() { return this.resultCode; } public void setResultCode(String resultCode) { this.resultCode = resultCode; } public Result getResult() { return this.result; } public void setResult(Result result) { this.result = result; } public static class Result { private List<ContractProjectsItem> contractProjects; private Pagination pagination; public List<ContractProjectsItem> getContractProjects() { return this.contractProjects; } public void setContractProjects(List<ContractProjectsItem> contractProjects) { this.contractProjects = contractProjects; } public Pagination getPagination() { return this.pagination; } public void setPagination(Pagination pagination) { this.pagination = pagination; } public static class ContractProjectsItem { private Long updateTime; private String consortiumId; private Long createTime; private String projectId; private String projectName; private String projectVersion; private String projectDescription; public Long getUpdateTime() { return this.updateTime; } public void setUpdateTime(Long updateTime) { this.updateTime = updateTime; } public String getConsortiumId() { return this.consortiumId; } public void setConsortiumId(String consortiumId) { this.consortiumId = consortiumId; } public Long getCreateTime() { return this.createTime; } public void setCreateTime(Long createTime) { this.createTime = createTime; } public String getProjectId() { return this.projectId; } public void setProjectId(String projectId) { this.projectId = projectId; } public String getProjectName() { return this.projectName; } public void setProjectName(String projectName) { this.projectName = projectName; } public String getProjectVersion() { return this.projectVersion; } public void setProjectVersion(String projectVersion) { this.projectVersion = projectVersion; } public String getProjectDescription() { return this.projectDescription; } public void setProjectDescription(String projectDescription) { this.projectDescription = projectDescription; } } public static class Pagination { private Integer pageSize; private Integer pageNumber; private Integer totalCount; public Integer getPageSize() { return this.pageSize; } public void setPageSize(Integer pageSize) { this.pageSize = pageSize; } public Integer getPageNumber() { return this.pageNumber; } public void setPageNumber(Integer pageNumber) { this.pageNumber = pageNumber; } public Integer getTotalCount() { return this.totalCount; } public void setTotalCount(Integer totalCount) { this.totalCount = totalCount; } } } @Override public DescribeAntChainContractProjectsV2Response getInstance(UnmarshallerContext context) { return DescribeAntChainContractProjectsV2ResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-baas/2.2.3/com/aliyuncs/baas/model
java-sources/com/aliyun/aliyun-java-sdk-baas/2.2.3/com/aliyuncs/baas/model/v20181221/DescribeAntChainDownloadPathsRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.baas.model.v20181221; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.baas.Endpoint; /** * @author auto create * @version */ public class DescribeAntChainDownloadPathsRequest extends RpcAcsRequest<DescribeAntChainDownloadPathsResponse> { private String antChainId; public DescribeAntChainDownloadPathsRequest() { super("Baas", "2018-12-21", "DescribeAntChainDownloadPaths", "baas"); 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 getAntChainId() { return this.antChainId; } public void setAntChainId(String antChainId) { this.antChainId = antChainId; if(antChainId != null){ putBodyParameter("AntChainId", antChainId); } } @Override public Class<DescribeAntChainDownloadPathsResponse> getResponseClass() { return DescribeAntChainDownloadPathsResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-baas/2.2.3/com/aliyuncs/baas/model
java-sources/com/aliyun/aliyun-java-sdk-baas/2.2.3/com/aliyuncs/baas/model/v20181221/DescribeAntChainDownloadPathsResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.baas.model.v20181221; import com.aliyuncs.AcsResponse; import com.aliyuncs.baas.transform.v20181221.DescribeAntChainDownloadPathsResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class DescribeAntChainDownloadPathsResponse extends AcsResponse { private String requestId; private Result result; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public Result getResult() { return this.result; } public void setResult(Result result) { this.result = result; } public static class Result { private String sdkUrl; private String caCrtUrl; private String clientCrtUrl; private String trustCaUrl; public String getSdkUrl() { return this.sdkUrl; } public void setSdkUrl(String sdkUrl) { this.sdkUrl = sdkUrl; } public String getCaCrtUrl() { return this.caCrtUrl; } public void setCaCrtUrl(String caCrtUrl) { this.caCrtUrl = caCrtUrl; } public String getClientCrtUrl() { return this.clientCrtUrl; } public void setClientCrtUrl(String clientCrtUrl) { this.clientCrtUrl = clientCrtUrl; } public String getTrustCaUrl() { return this.trustCaUrl; } public void setTrustCaUrl(String trustCaUrl) { this.trustCaUrl = trustCaUrl; } } @Override public DescribeAntChainDownloadPathsResponse getInstance(UnmarshallerContext context) { return DescribeAntChainDownloadPathsResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-baas/2.2.3/com/aliyuncs/baas/model
java-sources/com/aliyun/aliyun-java-sdk-baas/2.2.3/com/aliyuncs/baas/model/v20181221/DescribeAntChainDownloadPathsV2Request.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.baas.model.v20181221; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.baas.Endpoint; /** * @author auto create * @version */ public class DescribeAntChainDownloadPathsV2Request extends RpcAcsRequest<DescribeAntChainDownloadPathsV2Response> { private String antChainId; private String consortiumId; public DescribeAntChainDownloadPathsV2Request() { super("Baas", "2018-12-21", "DescribeAntChainDownloadPathsV2", "baas"); 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 getAntChainId() { return this.antChainId; } public void setAntChainId(String antChainId) { this.antChainId = antChainId; if(antChainId != null){ putBodyParameter("AntChainId", antChainId); } } public String getConsortiumId() { return this.consortiumId; } public void setConsortiumId(String consortiumId) { this.consortiumId = consortiumId; if(consortiumId != null){ putBodyParameter("ConsortiumId", consortiumId); } } @Override public Class<DescribeAntChainDownloadPathsV2Response> getResponseClass() { return DescribeAntChainDownloadPathsV2Response.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-baas/2.2.3/com/aliyuncs/baas/model
java-sources/com/aliyun/aliyun-java-sdk-baas/2.2.3/com/aliyuncs/baas/model/v20181221/DescribeAntChainDownloadPathsV2Response.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.baas.model.v20181221; import com.aliyuncs.AcsResponse; import com.aliyuncs.baas.transform.v20181221.DescribeAntChainDownloadPathsV2ResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class DescribeAntChainDownloadPathsV2Response extends AcsResponse { private String httpStatusCode; private String requestId; private Boolean success; private String resultMessage; private String code; private String message; private String resultCode; private Result result; public String getHttpStatusCode() { return this.httpStatusCode; } public void setHttpStatusCode(String httpStatusCode) { this.httpStatusCode = httpStatusCode; } public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public Boolean getSuccess() { return this.success; } public void setSuccess(Boolean success) { this.success = success; } public String getResultMessage() { return this.resultMessage; } public void setResultMessage(String resultMessage) { this.resultMessage = resultMessage; } public String getCode() { return this.code; } public void setCode(String code) { this.code = code; } public String getMessage() { return this.message; } public void setMessage(String message) { this.message = message; } public String getResultCode() { return this.resultCode; } public void setResultCode(String resultCode) { this.resultCode = resultCode; } public Result getResult() { return this.result; } public void setResult(Result result) { this.result = result; } public static class Result { private String sdkUrl; private String caCrtUrl; private String clientCrtUrl; private String trustCaUrl; public String getSdkUrl() { return this.sdkUrl; } public void setSdkUrl(String sdkUrl) { this.sdkUrl = sdkUrl; } public String getCaCrtUrl() { return this.caCrtUrl; } public void setCaCrtUrl(String caCrtUrl) { this.caCrtUrl = caCrtUrl; } public String getClientCrtUrl() { return this.clientCrtUrl; } public void setClientCrtUrl(String clientCrtUrl) { this.clientCrtUrl = clientCrtUrl; } public String getTrustCaUrl() { return this.trustCaUrl; } public void setTrustCaUrl(String trustCaUrl) { this.trustCaUrl = trustCaUrl; } } @Override public DescribeAntChainDownloadPathsV2Response getInstance(UnmarshallerContext context) { return DescribeAntChainDownloadPathsV2ResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-baas/2.2.3/com/aliyuncs/baas/model
java-sources/com/aliyun/aliyun-java-sdk-baas/2.2.3/com/aliyuncs/baas/model/v20181221/DescribeAntChainInformationRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.baas.model.v20181221; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.baas.Endpoint; /** * @author auto create * @version */ public class DescribeAntChainInformationRequest extends RpcAcsRequest<DescribeAntChainInformationResponse> { private String antChainId; public DescribeAntChainInformationRequest() { super("Baas", "2018-12-21", "DescribeAntChainInformation", "baas"); 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 getAntChainId() { return this.antChainId; } public void setAntChainId(String antChainId) { this.antChainId = antChainId; if(antChainId != null){ putBodyParameter("AntChainId", antChainId); } } @Override public Class<DescribeAntChainInformationResponse> getResponseClass() { return DescribeAntChainInformationResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-baas/2.2.3/com/aliyuncs/baas/model
java-sources/com/aliyun/aliyun-java-sdk-baas/2.2.3/com/aliyuncs/baas/model/v20181221/DescribeAntChainInformationResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.baas.model.v20181221; import java.util.List; import com.aliyuncs.AcsResponse; import com.aliyuncs.baas.transform.v20181221.DescribeAntChainInformationResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class DescribeAntChainInformationResponse extends AcsResponse { private String requestId; private Result result; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public Result getResult() { return this.result; } public void setResult(Result result) { this.result = result; } public static class Result { private Integer transactionSum; private String version; private Integer blockHeight; private Long createTime; private Integer nodeNumber; private Integer abnormalNodes; private String antChainId; private Boolean normal; private List<NodeInfosItem> nodeInfos; public Integer getTransactionSum() { return this.transactionSum; } public void setTransactionSum(Integer transactionSum) { this.transactionSum = transactionSum; } public String getVersion() { return this.version; } public void setVersion(String version) { this.version = version; } public Integer getBlockHeight() { return this.blockHeight; } public void setBlockHeight(Integer blockHeight) { this.blockHeight = blockHeight; } public Long getCreateTime() { return this.createTime; } public void setCreateTime(Long createTime) { this.createTime = createTime; } public Integer getNodeNumber() { return this.nodeNumber; } public void setNodeNumber(Integer nodeNumber) { this.nodeNumber = nodeNumber; } public Integer getAbnormalNodes() { return this.abnormalNodes; } public void setAbnormalNodes(Integer abnormalNodes) { this.abnormalNodes = abnormalNodes; } public String getAntChainId() { return this.antChainId; } public void setAntChainId(String antChainId) { this.antChainId = antChainId; } public Boolean getNormal() { return this.normal; } public void setNormal(Boolean normal) { this.normal = normal; } public List<NodeInfosItem> getNodeInfos() { return this.nodeInfos; } public void setNodeInfos(List<NodeInfosItem> nodeInfos) { this.nodeInfos = nodeInfos; } public static class NodeInfosItem { private Boolean status; private String nodeName; private String version; private Long blockHeight; public Boolean getStatus() { return this.status; } public void setStatus(Boolean status) { this.status = status; } public String getNodeName() { return this.nodeName; } public void setNodeName(String nodeName) { this.nodeName = nodeName; } public String getVersion() { return this.version; } public void setVersion(String version) { this.version = version; } public Long getBlockHeight() { return this.blockHeight; } public void setBlockHeight(Long blockHeight) { this.blockHeight = blockHeight; } } } @Override public DescribeAntChainInformationResponse getInstance(UnmarshallerContext context) { return DescribeAntChainInformationResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-baas/2.2.3/com/aliyuncs/baas/model
java-sources/com/aliyun/aliyun-java-sdk-baas/2.2.3/com/aliyuncs/baas/model/v20181221/DescribeAntChainInformationV2Request.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.baas.model.v20181221; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.baas.Endpoint; /** * @author auto create * @version */ public class DescribeAntChainInformationV2Request extends RpcAcsRequest<DescribeAntChainInformationV2Response> { private String antChainId; private String consortiumId; public DescribeAntChainInformationV2Request() { super("Baas", "2018-12-21", "DescribeAntChainInformationV2", "baas"); 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 getAntChainId() { return this.antChainId; } public void setAntChainId(String antChainId) { this.antChainId = antChainId; if(antChainId != null){ putBodyParameter("AntChainId", antChainId); } } public String getConsortiumId() { return this.consortiumId; } public void setConsortiumId(String consortiumId) { this.consortiumId = consortiumId; if(consortiumId != null){ putBodyParameter("ConsortiumId", consortiumId); } } @Override public Class<DescribeAntChainInformationV2Response> getResponseClass() { return DescribeAntChainInformationV2Response.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-baas/2.2.3/com/aliyuncs/baas/model
java-sources/com/aliyun/aliyun-java-sdk-baas/2.2.3/com/aliyuncs/baas/model/v20181221/DescribeAntChainInformationV2Response.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.baas.model.v20181221; import java.util.List; import com.aliyuncs.AcsResponse; import com.aliyuncs.baas.transform.v20181221.DescribeAntChainInformationV2ResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class DescribeAntChainInformationV2Response extends AcsResponse { private String httpStatusCode; private String requestId; private Boolean success; private String resultMessage; private String code; private String message; private String resultCode; private Result result; public String getHttpStatusCode() { return this.httpStatusCode; } public void setHttpStatusCode(String httpStatusCode) { this.httpStatusCode = httpStatusCode; } public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public Boolean getSuccess() { return this.success; } public void setSuccess(Boolean success) { this.success = success; } public String getResultMessage() { return this.resultMessage; } public void setResultMessage(String resultMessage) { this.resultMessage = resultMessage; } public String getCode() { return this.code; } public void setCode(String code) { this.code = code; } public String getMessage() { return this.message; } public void setMessage(String message) { this.message = message; } public String getResultCode() { return this.resultCode; } public void setResultCode(String resultCode) { this.resultCode = resultCode; } public Result getResult() { return this.result; } public void setResult(Result result) { this.result = result; } public static class Result { private Boolean isRole; private Integer transactionSum; private String version; private Long createTime; private Integer blockHeight; private Integer nodeNumber; private Integer abnormalNodes; private String antChainId; private Boolean normal; private List<NodeInfosItem> nodeInfos; public Boolean getIsRole() { return this.isRole; } public void setIsRole(Boolean isRole) { this.isRole = isRole; } public Integer getTransactionSum() { return this.transactionSum; } public void setTransactionSum(Integer transactionSum) { this.transactionSum = transactionSum; } public String getVersion() { return this.version; } public void setVersion(String version) { this.version = version; } public Long getCreateTime() { return this.createTime; } public void setCreateTime(Long createTime) { this.createTime = createTime; } public Integer getBlockHeight() { return this.blockHeight; } public void setBlockHeight(Integer blockHeight) { this.blockHeight = blockHeight; } public Integer getNodeNumber() { return this.nodeNumber; } public void setNodeNumber(Integer nodeNumber) { this.nodeNumber = nodeNumber; } public Integer getAbnormalNodes() { return this.abnormalNodes; } public void setAbnormalNodes(Integer abnormalNodes) { this.abnormalNodes = abnormalNodes; } public String getAntChainId() { return this.antChainId; } public void setAntChainId(String antChainId) { this.antChainId = antChainId; } public Boolean getNormal() { return this.normal; } public void setNormal(Boolean normal) { this.normal = normal; } public List<NodeInfosItem> getNodeInfos() { return this.nodeInfos; } public void setNodeInfos(List<NodeInfosItem> nodeInfos) { this.nodeInfos = nodeInfos; } public static class NodeInfosItem { private Boolean status; private String nodeName; private String version; private Long blockHeight; public Boolean getStatus() { return this.status; } public void setStatus(Boolean status) { this.status = status; } public String getNodeName() { return this.nodeName; } public void setNodeName(String nodeName) { this.nodeName = nodeName; } public String getVersion() { return this.version; } public void setVersion(String version) { this.version = version; } public Long getBlockHeight() { return this.blockHeight; } public void setBlockHeight(Long blockHeight) { this.blockHeight = blockHeight; } } } @Override public DescribeAntChainInformationV2Response getInstance(UnmarshallerContext context) { return DescribeAntChainInformationV2ResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-baas/2.2.3/com/aliyuncs/baas/model
java-sources/com/aliyun/aliyun-java-sdk-baas/2.2.3/com/aliyuncs/baas/model/v20181221/DescribeAntChainLatestBlocksRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.baas.model.v20181221; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.baas.Endpoint; /** * @author auto create * @version */ public class DescribeAntChainLatestBlocksRequest extends RpcAcsRequest<DescribeAntChainLatestBlocksResponse> { private String antChainId; public DescribeAntChainLatestBlocksRequest() { super("Baas", "2018-12-21", "DescribeAntChainLatestBlocks", "baas"); 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 getAntChainId() { return this.antChainId; } public void setAntChainId(String antChainId) { this.antChainId = antChainId; if(antChainId != null){ putBodyParameter("AntChainId", antChainId); } } @Override public Class<DescribeAntChainLatestBlocksResponse> getResponseClass() { return DescribeAntChainLatestBlocksResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-baas/2.2.3/com/aliyuncs/baas/model
java-sources/com/aliyun/aliyun-java-sdk-baas/2.2.3/com/aliyuncs/baas/model/v20181221/DescribeAntChainLatestBlocksResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.baas.model.v20181221; import java.util.List; import java.util.Map; import com.aliyuncs.AcsResponse; import com.aliyuncs.baas.transform.v20181221.DescribeAntChainLatestBlocksResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class DescribeAntChainLatestBlocksResponse extends AcsResponse { private String requestId; private List<Map<Object,Object>> result; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public List<Map<Object,Object>> getResult() { return this.result; } public void setResult(List<Map<Object,Object>> result) { this.result = result; } @Override public DescribeAntChainLatestBlocksResponse getInstance(UnmarshallerContext context) { return DescribeAntChainLatestBlocksResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-baas/2.2.3/com/aliyuncs/baas/model
java-sources/com/aliyun/aliyun-java-sdk-baas/2.2.3/com/aliyuncs/baas/model/v20181221/DescribeAntChainLatestBlocksV2Request.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.baas.model.v20181221; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.baas.Endpoint; /** * @author auto create * @version */ public class DescribeAntChainLatestBlocksV2Request extends RpcAcsRequest<DescribeAntChainLatestBlocksV2Response> { private String antChainId; private String consortiumId; public DescribeAntChainLatestBlocksV2Request() { super("Baas", "2018-12-21", "DescribeAntChainLatestBlocksV2", "baas"); 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 getAntChainId() { return this.antChainId; } public void setAntChainId(String antChainId) { this.antChainId = antChainId; if(antChainId != null){ putBodyParameter("AntChainId", antChainId); } } public String getConsortiumId() { return this.consortiumId; } public void setConsortiumId(String consortiumId) { this.consortiumId = consortiumId; if(consortiumId != null){ putBodyParameter("ConsortiumId", consortiumId); } } @Override public Class<DescribeAntChainLatestBlocksV2Response> getResponseClass() { return DescribeAntChainLatestBlocksV2Response.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-baas/2.2.3/com/aliyuncs/baas/model
java-sources/com/aliyun/aliyun-java-sdk-baas/2.2.3/com/aliyuncs/baas/model/v20181221/DescribeAntChainLatestBlocksV2Response.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.baas.model.v20181221; import java.util.List; import com.aliyuncs.AcsResponse; import com.aliyuncs.baas.transform.v20181221.DescribeAntChainLatestBlocksV2ResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class DescribeAntChainLatestBlocksV2Response extends AcsResponse { private String httpStatusCode; private String requestId; private Boolean success; private String resultMessage; private String code; private String message; private String resultCode; private List<ResultItem> result; public String getHttpStatusCode() { return this.httpStatusCode; } public void setHttpStatusCode(String httpStatusCode) { this.httpStatusCode = httpStatusCode; } public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public Boolean getSuccess() { return this.success; } public void setSuccess(Boolean success) { this.success = success; } public String getResultMessage() { return this.resultMessage; } public void setResultMessage(String resultMessage) { this.resultMessage = resultMessage; } public String getCode() { return this.code; } public void setCode(String code) { this.code = code; } public String getMessage() { return this.message; } public void setMessage(String message) { this.message = message; } public String getResultCode() { return this.resultCode; } public void setResultCode(String resultCode) { this.resultCode = resultCode; } public List<ResultItem> getResult() { return this.result; } public void setResult(List<ResultItem> result) { this.result = result; } public static class ResultItem { private String previousHash; private Long version; private Long transactionSize; private Long size; private String rootTxHash; private Long createTime; private Long height; private String bizData; private String blockHash; private String alias; public String getPreviousHash() { return this.previousHash; } public void setPreviousHash(String previousHash) { this.previousHash = previousHash; } public Long getVersion() { return this.version; } public void setVersion(Long version) { this.version = version; } public Long getTransactionSize() { return this.transactionSize; } public void setTransactionSize(Long transactionSize) { this.transactionSize = transactionSize; } public Long getSize() { return this.size; } public void setSize(Long size) { this.size = size; } public String getRootTxHash() { return this.rootTxHash; } public void setRootTxHash(String rootTxHash) { this.rootTxHash = rootTxHash; } public Long getCreateTime() { return this.createTime; } public void setCreateTime(Long createTime) { this.createTime = createTime; } public Long getHeight() { return this.height; } public void setHeight(Long height) { this.height = height; } public String getBizData() { return this.bizData; } public void setBizData(String bizData) { this.bizData = bizData; } public String getBlockHash() { return this.blockHash; } public void setBlockHash(String blockHash) { this.blockHash = blockHash; } public String getAlias() { return this.alias; } public void setAlias(String alias) { this.alias = alias; } } @Override public DescribeAntChainLatestBlocksV2Response getInstance(UnmarshallerContext context) { return DescribeAntChainLatestBlocksV2ResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-baas/2.2.3/com/aliyuncs/baas/model
java-sources/com/aliyun/aliyun-java-sdk-baas/2.2.3/com/aliyuncs/baas/model/v20181221/DescribeAntChainLatestTransactionDigestsRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.baas.model.v20181221; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.baas.Endpoint; /** * @author auto create * @version */ public class DescribeAntChainLatestTransactionDigestsRequest extends RpcAcsRequest<DescribeAntChainLatestTransactionDigestsResponse> { private String antChainId; public DescribeAntChainLatestTransactionDigestsRequest() { super("Baas", "2018-12-21", "DescribeAntChainLatestTransactionDigests", "baas"); 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 getAntChainId() { return this.antChainId; } public void setAntChainId(String antChainId) { this.antChainId = antChainId; if(antChainId != null){ putBodyParameter("AntChainId", antChainId); } } @Override public Class<DescribeAntChainLatestTransactionDigestsResponse> getResponseClass() { return DescribeAntChainLatestTransactionDigestsResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-baas/2.2.3/com/aliyuncs/baas/model
java-sources/com/aliyun/aliyun-java-sdk-baas/2.2.3/com/aliyuncs/baas/model/v20181221/DescribeAntChainLatestTransactionDigestsResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.baas.model.v20181221; import java.util.List; import java.util.Map; import com.aliyuncs.AcsResponse; import com.aliyuncs.baas.transform.v20181221.DescribeAntChainLatestTransactionDigestsResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class DescribeAntChainLatestTransactionDigestsResponse extends AcsResponse { private String requestId; private List<Map<Object,Object>> result; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public List<Map<Object,Object>> getResult() { return this.result; } public void setResult(List<Map<Object,Object>> result) { this.result = result; } @Override public DescribeAntChainLatestTransactionDigestsResponse getInstance(UnmarshallerContext context) { return DescribeAntChainLatestTransactionDigestsResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-baas/2.2.3/com/aliyuncs/baas/model
java-sources/com/aliyun/aliyun-java-sdk-baas/2.2.3/com/aliyuncs/baas/model/v20181221/DescribeAntChainLatestTransactionDigestsV2Request.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.baas.model.v20181221; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.baas.Endpoint; /** * @author auto create * @version */ public class DescribeAntChainLatestTransactionDigestsV2Request extends RpcAcsRequest<DescribeAntChainLatestTransactionDigestsV2Response> { private String antChainId; private String consortiumId; public DescribeAntChainLatestTransactionDigestsV2Request() { super("Baas", "2018-12-21", "DescribeAntChainLatestTransactionDigestsV2", "baas"); 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 getAntChainId() { return this.antChainId; } public void setAntChainId(String antChainId) { this.antChainId = antChainId; if(antChainId != null){ putBodyParameter("AntChainId", antChainId); } } public String getConsortiumId() { return this.consortiumId; } public void setConsortiumId(String consortiumId) { this.consortiumId = consortiumId; if(consortiumId != null){ putBodyParameter("ConsortiumId", consortiumId); } } @Override public Class<DescribeAntChainLatestTransactionDigestsV2Response> getResponseClass() { return DescribeAntChainLatestTransactionDigestsV2Response.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-baas/2.2.3/com/aliyuncs/baas/model
java-sources/com/aliyun/aliyun-java-sdk-baas/2.2.3/com/aliyuncs/baas/model/v20181221/DescribeAntChainLatestTransactionDigestsV2Response.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.baas.model.v20181221; import java.util.List; import com.aliyuncs.AcsResponse; import com.aliyuncs.baas.transform.v20181221.DescribeAntChainLatestTransactionDigestsV2ResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class DescribeAntChainLatestTransactionDigestsV2Response extends AcsResponse { private String httpStatusCode; private String requestId; private Boolean success; private String resultMessage; private String code; private String message; private String resultCode; private List<String> result; public String getHttpStatusCode() { return this.httpStatusCode; } public void setHttpStatusCode(String httpStatusCode) { this.httpStatusCode = httpStatusCode; } public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public Boolean getSuccess() { return this.success; } public void setSuccess(Boolean success) { this.success = success; } public String getResultMessage() { return this.resultMessage; } public void setResultMessage(String resultMessage) { this.resultMessage = resultMessage; } public String getCode() { return this.code; } public void setCode(String code) { this.code = code; } public String getMessage() { return this.message; } public void setMessage(String message) { this.message = message; } public String getResultCode() { return this.resultCode; } public void setResultCode(String resultCode) { this.resultCode = resultCode; } public List<String> getResult() { return this.result; } public void setResult(List<String> result) { this.result = result; } @Override public DescribeAntChainLatestTransactionDigestsV2Response getInstance(UnmarshallerContext context) { return DescribeAntChainLatestTransactionDigestsV2ResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-baas/2.2.3/com/aliyuncs/baas/model
java-sources/com/aliyun/aliyun-java-sdk-baas/2.2.3/com/aliyuncs/baas/model/v20181221/DescribeAntChainMembersRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.baas.model.v20181221; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.baas.Endpoint; /** * @author auto create * @version */ public class DescribeAntChainMembersRequest extends RpcAcsRequest<DescribeAntChainMembersResponse> { private Integer pageNumber; private Integer pageSize; private String consortiumId; public DescribeAntChainMembersRequest() { super("Baas", "2018-12-21", "DescribeAntChainMembers", "baas"); 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 getPageNumber() { return this.pageNumber; } public void setPageNumber(Integer pageNumber) { this.pageNumber = pageNumber; if(pageNumber != null){ putBodyParameter("PageNumber", pageNumber.toString()); } } public Integer getPageSize() { return this.pageSize; } public void setPageSize(Integer pageSize) { this.pageSize = pageSize; if(pageSize != null){ putBodyParameter("PageSize", pageSize.toString()); } } public String getConsortiumId() { return this.consortiumId; } public void setConsortiumId(String consortiumId) { this.consortiumId = consortiumId; if(consortiumId != null){ putBodyParameter("ConsortiumId", consortiumId); } } @Override public Class<DescribeAntChainMembersResponse> getResponseClass() { return DescribeAntChainMembersResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-baas/2.2.3/com/aliyuncs/baas/model
java-sources/com/aliyun/aliyun-java-sdk-baas/2.2.3/com/aliyuncs/baas/model/v20181221/DescribeAntChainMembersResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.baas.model.v20181221; import java.util.List; import com.aliyuncs.AcsResponse; import com.aliyuncs.baas.transform.v20181221.DescribeAntChainMembersResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class DescribeAntChainMembersResponse extends AcsResponse { private String requestId; private Result result; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public Result getResult() { return this.result; } public void setResult(Result result) { this.result = result; } public static class Result { private List<MembersItem> members; private Pagination pagination; public List<MembersItem> getMembers() { return this.members; } public void setMembers(List<MembersItem> members) { this.members = members; } public Pagination getPagination() { return this.pagination; } public void setPagination(Pagination pagination) { this.pagination = pagination; } public static class MembersItem { private String status; private String memberId; private String role; private String memberName; private Long joinTime; public String getStatus() { return this.status; } public void setStatus(String status) { this.status = status; } public String getMemberId() { return this.memberId; } public void setMemberId(String memberId) { this.memberId = memberId; } public String getRole() { return this.role; } public void setRole(String role) { this.role = role; } public String getMemberName() { return this.memberName; } public void setMemberName(String memberName) { this.memberName = memberName; } public Long getJoinTime() { return this.joinTime; } public void setJoinTime(Long joinTime) { this.joinTime = joinTime; } } public static class Pagination { private Integer pageSize; private Integer pageNumber; private Integer totalCount; public Integer getPageSize() { return this.pageSize; } public void setPageSize(Integer pageSize) { this.pageSize = pageSize; } public Integer getPageNumber() { return this.pageNumber; } public void setPageNumber(Integer pageNumber) { this.pageNumber = pageNumber; } public Integer getTotalCount() { return this.totalCount; } public void setTotalCount(Integer totalCount) { this.totalCount = totalCount; } } } @Override public DescribeAntChainMembersResponse getInstance(UnmarshallerContext context) { return DescribeAntChainMembersResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-baas/2.2.3/com/aliyuncs/baas/model
java-sources/com/aliyun/aliyun-java-sdk-baas/2.2.3/com/aliyuncs/baas/model/v20181221/DescribeAntChainMembersV2Request.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.baas.model.v20181221; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.baas.Endpoint; /** * @author auto create * @version */ public class DescribeAntChainMembersV2Request extends RpcAcsRequest<DescribeAntChainMembersV2Response> { private Integer pageNumber; private Integer pageSize; private String consortiumId; public DescribeAntChainMembersV2Request() { super("Baas", "2018-12-21", "DescribeAntChainMembersV2", "baas"); 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 getPageNumber() { return this.pageNumber; } public void setPageNumber(Integer pageNumber) { this.pageNumber = pageNumber; if(pageNumber != null){ putBodyParameter("PageNumber", pageNumber.toString()); } } public Integer getPageSize() { return this.pageSize; } public void setPageSize(Integer pageSize) { this.pageSize = pageSize; if(pageSize != null){ putBodyParameter("PageSize", pageSize.toString()); } } public String getConsortiumId() { return this.consortiumId; } public void setConsortiumId(String consortiumId) { this.consortiumId = consortiumId; if(consortiumId != null){ putBodyParameter("ConsortiumId", consortiumId); } } @Override public Class<DescribeAntChainMembersV2Response> getResponseClass() { return DescribeAntChainMembersV2Response.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-baas/2.2.3/com/aliyuncs/baas/model
java-sources/com/aliyun/aliyun-java-sdk-baas/2.2.3/com/aliyuncs/baas/model/v20181221/DescribeAntChainMembersV2Response.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.baas.model.v20181221; import java.util.List; import com.aliyuncs.AcsResponse; import com.aliyuncs.baas.transform.v20181221.DescribeAntChainMembersV2ResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class DescribeAntChainMembersV2Response extends AcsResponse { private String httpStatusCode; private String requestId; private Boolean success; private String resultMessage; private String code; private String message; private String resultCode; private Result result; public String getHttpStatusCode() { return this.httpStatusCode; } public void setHttpStatusCode(String httpStatusCode) { this.httpStatusCode = httpStatusCode; } public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public Boolean getSuccess() { return this.success; } public void setSuccess(Boolean success) { this.success = success; } public String getResultMessage() { return this.resultMessage; } public void setResultMessage(String resultMessage) { this.resultMessage = resultMessage; } public String getCode() { return this.code; } public void setCode(String code) { this.code = code; } public String getMessage() { return this.message; } public void setMessage(String message) { this.message = message; } public String getResultCode() { return this.resultCode; } public void setResultCode(String resultCode) { this.resultCode = resultCode; } public Result getResult() { return this.result; } public void setResult(Result result) { this.result = result; } public static class Result { private List<MembersItem> members; private Pagination pagination; public List<MembersItem> getMembers() { return this.members; } public void setMembers(List<MembersItem> members) { this.members = members; } public Pagination getPagination() { return this.pagination; } public void setPagination(Pagination pagination) { this.pagination = pagination; } public static class MembersItem { private String status; private String memberId; private String role; private String memberName; private Long joinTime; public String getStatus() { return this.status; } public void setStatus(String status) { this.status = status; } public String getMemberId() { return this.memberId; } public void setMemberId(String memberId) { this.memberId = memberId; } public String getRole() { return this.role; } public void setRole(String role) { this.role = role; } public String getMemberName() { return this.memberName; } public void setMemberName(String memberName) { this.memberName = memberName; } public Long getJoinTime() { return this.joinTime; } public void setJoinTime(Long joinTime) { this.joinTime = joinTime; } } public static class Pagination { private Integer pageSize; private Integer pageNumber; private Integer totalCount; public Integer getPageSize() { return this.pageSize; } public void setPageSize(Integer pageSize) { this.pageSize = pageSize; } public Integer getPageNumber() { return this.pageNumber; } public void setPageNumber(Integer pageNumber) { this.pageNumber = pageNumber; } public Integer getTotalCount() { return this.totalCount; } public void setTotalCount(Integer totalCount) { this.totalCount = totalCount; } } } @Override public DescribeAntChainMembersV2Response getInstance(UnmarshallerContext context) { return DescribeAntChainMembersV2ResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-baas/2.2.3/com/aliyuncs/baas/model
java-sources/com/aliyun/aliyun-java-sdk-baas/2.2.3/com/aliyuncs/baas/model/v20181221/DescribeAntChainMiniAppBrowserQRCodeAccessLogRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.baas.model.v20181221; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.baas.Endpoint; /** * @author auto create * @version */ public class DescribeAntChainMiniAppBrowserQRCodeAccessLogRequest extends RpcAcsRequest<DescribeAntChainMiniAppBrowserQRCodeAccessLogResponse> { private String antChainId; private String qRCodeType; public DescribeAntChainMiniAppBrowserQRCodeAccessLogRequest() { super("Baas", "2018-12-21", "DescribeAntChainMiniAppBrowserQRCodeAccessLog", "baas"); 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 getAntChainId() { return this.antChainId; } public void setAntChainId(String antChainId) { this.antChainId = antChainId; if(antChainId != null){ putBodyParameter("AntChainId", antChainId); } } public String getQRCodeType() { return this.qRCodeType; } public void setQRCodeType(String qRCodeType) { this.qRCodeType = qRCodeType; if(qRCodeType != null){ putBodyParameter("QRCodeType", qRCodeType); } } @Override public Class<DescribeAntChainMiniAppBrowserQRCodeAccessLogResponse> getResponseClass() { return DescribeAntChainMiniAppBrowserQRCodeAccessLogResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-baas/2.2.3/com/aliyuncs/baas/model
java-sources/com/aliyun/aliyun-java-sdk-baas/2.2.3/com/aliyuncs/baas/model/v20181221/DescribeAntChainMiniAppBrowserQRCodeAccessLogResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.baas.model.v20181221; import com.aliyuncs.AcsResponse; import com.aliyuncs.baas.transform.v20181221.DescribeAntChainMiniAppBrowserQRCodeAccessLogResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class DescribeAntChainMiniAppBrowserQRCodeAccessLogResponse extends AcsResponse { private String requestId; private Result result; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public Result getResult() { return this.result; } public void setResult(Result result) { this.result = result; } public static class Result { private Long accessAlipayAccountCount; private Long accessCount; public Long getAccessAlipayAccountCount() { return this.accessAlipayAccountCount; } public void setAccessAlipayAccountCount(Long accessAlipayAccountCount) { this.accessAlipayAccountCount = accessAlipayAccountCount; } public Long getAccessCount() { return this.accessCount; } public void setAccessCount(Long accessCount) { this.accessCount = accessCount; } } @Override public DescribeAntChainMiniAppBrowserQRCodeAccessLogResponse getInstance(UnmarshallerContext context) { return DescribeAntChainMiniAppBrowserQRCodeAccessLogResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-baas/2.2.3/com/aliyuncs/baas/model
java-sources/com/aliyun/aliyun-java-sdk-baas/2.2.3/com/aliyuncs/baas/model/v20181221/DescribeAntChainMiniAppBrowserQRCodeAccessLogV2Request.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.baas.model.v20181221; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.baas.Endpoint; /** * @author auto create * @version */ public class DescribeAntChainMiniAppBrowserQRCodeAccessLogV2Request extends RpcAcsRequest<DescribeAntChainMiniAppBrowserQRCodeAccessLogV2Response> { private String antChainId; private String qRCodeType; public DescribeAntChainMiniAppBrowserQRCodeAccessLogV2Request() { super("Baas", "2018-12-21", "DescribeAntChainMiniAppBrowserQRCodeAccessLogV2", "baas"); 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 getAntChainId() { return this.antChainId; } public void setAntChainId(String antChainId) { this.antChainId = antChainId; if(antChainId != null){ putBodyParameter("AntChainId", antChainId); } } public String getQRCodeType() { return this.qRCodeType; } public void setQRCodeType(String qRCodeType) { this.qRCodeType = qRCodeType; if(qRCodeType != null){ putBodyParameter("QRCodeType", qRCodeType); } } @Override public Class<DescribeAntChainMiniAppBrowserQRCodeAccessLogV2Response> getResponseClass() { return DescribeAntChainMiniAppBrowserQRCodeAccessLogV2Response.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-baas/2.2.3/com/aliyuncs/baas/model
java-sources/com/aliyun/aliyun-java-sdk-baas/2.2.3/com/aliyuncs/baas/model/v20181221/DescribeAntChainMiniAppBrowserQRCodeAccessLogV2Response.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.baas.model.v20181221; import com.aliyuncs.AcsResponse; import com.aliyuncs.baas.transform.v20181221.DescribeAntChainMiniAppBrowserQRCodeAccessLogV2ResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class DescribeAntChainMiniAppBrowserQRCodeAccessLogV2Response extends AcsResponse { private String httpStatusCode; private String requestId; private Boolean success; private String resultMessage; private String code; private String message; private String resultCode; private Result result; public String getHttpStatusCode() { return this.httpStatusCode; } public void setHttpStatusCode(String httpStatusCode) { this.httpStatusCode = httpStatusCode; } public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public Boolean getSuccess() { return this.success; } public void setSuccess(Boolean success) { this.success = success; } public String getResultMessage() { return this.resultMessage; } public void setResultMessage(String resultMessage) { this.resultMessage = resultMessage; } public String getCode() { return this.code; } public void setCode(String code) { this.code = code; } public String getMessage() { return this.message; } public void setMessage(String message) { this.message = message; } public String getResultCode() { return this.resultCode; } public void setResultCode(String resultCode) { this.resultCode = resultCode; } public Result getResult() { return this.result; } public void setResult(Result result) { this.result = result; } public static class Result { private Long accessAlipayAccountCount; private Long accessCount; public Long getAccessAlipayAccountCount() { return this.accessAlipayAccountCount; } public void setAccessAlipayAccountCount(Long accessAlipayAccountCount) { this.accessAlipayAccountCount = accessAlipayAccountCount; } public Long getAccessCount() { return this.accessCount; } public void setAccessCount(Long accessCount) { this.accessCount = accessCount; } } @Override public DescribeAntChainMiniAppBrowserQRCodeAccessLogV2Response getInstance(UnmarshallerContext context) { return DescribeAntChainMiniAppBrowserQRCodeAccessLogV2ResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-baas/2.2.3/com/aliyuncs/baas/model
java-sources/com/aliyun/aliyun-java-sdk-baas/2.2.3/com/aliyuncs/baas/model/v20181221/DescribeAntChainMiniAppBrowserQRCodeAuthorizedUsersRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.baas.model.v20181221; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.baas.Endpoint; /** * @author auto create * @version */ public class DescribeAntChainMiniAppBrowserQRCodeAuthorizedUsersRequest extends RpcAcsRequest<DescribeAntChainMiniAppBrowserQRCodeAuthorizedUsersResponse> { private Integer pageNumber; private String antChainId; private Integer pageSize; private String qRCodeType; public DescribeAntChainMiniAppBrowserQRCodeAuthorizedUsersRequest() { super("Baas", "2018-12-21", "DescribeAntChainMiniAppBrowserQRCodeAuthorizedUsers", "baas"); 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 getPageNumber() { return this.pageNumber; } public void setPageNumber(Integer pageNumber) { this.pageNumber = pageNumber; if(pageNumber != null){ putBodyParameter("PageNumber", pageNumber.toString()); } } public String getAntChainId() { return this.antChainId; } public void setAntChainId(String antChainId) { this.antChainId = antChainId; if(antChainId != null){ putBodyParameter("AntChainId", antChainId); } } public Integer getPageSize() { return this.pageSize; } public void setPageSize(Integer pageSize) { this.pageSize = pageSize; if(pageSize != null){ putBodyParameter("PageSize", pageSize.toString()); } } public String getQRCodeType() { return this.qRCodeType; } public void setQRCodeType(String qRCodeType) { this.qRCodeType = qRCodeType; if(qRCodeType != null){ putBodyParameter("QRCodeType", qRCodeType); } } @Override public Class<DescribeAntChainMiniAppBrowserQRCodeAuthorizedUsersResponse> getResponseClass() { return DescribeAntChainMiniAppBrowserQRCodeAuthorizedUsersResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-baas/2.2.3/com/aliyuncs/baas/model
java-sources/com/aliyun/aliyun-java-sdk-baas/2.2.3/com/aliyuncs/baas/model/v20181221/DescribeAntChainMiniAppBrowserQRCodeAuthorizedUsersResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.baas.model.v20181221; import java.util.List; import com.aliyuncs.AcsResponse; import com.aliyuncs.baas.transform.v20181221.DescribeAntChainMiniAppBrowserQRCodeAuthorizedUsersResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class DescribeAntChainMiniAppBrowserQRCodeAuthorizedUsersResponse extends AcsResponse { private String requestId; private Result result; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public Result getResult() { return this.result; } public void setResult(Result result) { this.result = result; } public static class Result { private String qRCodeType; private String authorizationType; private String antChainId; private List<AuthorizedUserListItem> authorizedUserList; private Pagination pagination; public String getQRCodeType() { return this.qRCodeType; } public void setQRCodeType(String qRCodeType) { this.qRCodeType = qRCodeType; } public String getAuthorizationType() { return this.authorizationType; } public void setAuthorizationType(String authorizationType) { this.authorizationType = authorizationType; } public String getAntChainId() { return this.antChainId; } public void setAntChainId(String antChainId) { this.antChainId = antChainId; } public List<AuthorizedUserListItem> getAuthorizedUserList() { return this.authorizedUserList; } public void setAuthorizedUserList(List<AuthorizedUserListItem> authorizedUserList) { this.authorizedUserList = authorizedUserList; } public Pagination getPagination() { return this.pagination; } public void setPagination(Pagination pagination) { this.pagination = pagination; } public static class AuthorizedUserListItem { private String gmtAuthorized; private String phone; public String getGmtAuthorized() { return this.gmtAuthorized; } public void setGmtAuthorized(String gmtAuthorized) { this.gmtAuthorized = gmtAuthorized; } public String getPhone() { return this.phone; } public void setPhone(String phone) { this.phone = phone; } } public static class Pagination { private Integer pageNumber; private Integer pageSize; private Integer totalCount; public Integer getPageNumber() { return this.pageNumber; } public void setPageNumber(Integer pageNumber) { this.pageNumber = pageNumber; } public Integer getPageSize() { return this.pageSize; } public void setPageSize(Integer pageSize) { this.pageSize = pageSize; } public Integer getTotalCount() { return this.totalCount; } public void setTotalCount(Integer totalCount) { this.totalCount = totalCount; } } } @Override public DescribeAntChainMiniAppBrowserQRCodeAuthorizedUsersResponse getInstance(UnmarshallerContext context) { return DescribeAntChainMiniAppBrowserQRCodeAuthorizedUsersResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-baas/2.2.3/com/aliyuncs/baas/model
java-sources/com/aliyun/aliyun-java-sdk-baas/2.2.3/com/aliyuncs/baas/model/v20181221/DescribeAntChainMiniAppBrowserQRCodeAuthorizedUsersV2Request.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.baas.model.v20181221; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.baas.Endpoint; /** * @author auto create * @version */ public class DescribeAntChainMiniAppBrowserQRCodeAuthorizedUsersV2Request extends RpcAcsRequest<DescribeAntChainMiniAppBrowserQRCodeAuthorizedUsersV2Response> { private Integer pageNumber; private String antChainId; private Integer pageSize; private String qRCodeType; public DescribeAntChainMiniAppBrowserQRCodeAuthorizedUsersV2Request() { super("Baas", "2018-12-21", "DescribeAntChainMiniAppBrowserQRCodeAuthorizedUsersV2", "baas"); 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 getPageNumber() { return this.pageNumber; } public void setPageNumber(Integer pageNumber) { this.pageNumber = pageNumber; if(pageNumber != null){ putBodyParameter("PageNumber", pageNumber.toString()); } } public String getAntChainId() { return this.antChainId; } public void setAntChainId(String antChainId) { this.antChainId = antChainId; if(antChainId != null){ putBodyParameter("AntChainId", antChainId); } } public Integer getPageSize() { return this.pageSize; } public void setPageSize(Integer pageSize) { this.pageSize = pageSize; if(pageSize != null){ putBodyParameter("PageSize", pageSize.toString()); } } public String getQRCodeType() { return this.qRCodeType; } public void setQRCodeType(String qRCodeType) { this.qRCodeType = qRCodeType; if(qRCodeType != null){ putBodyParameter("QRCodeType", qRCodeType); } } @Override public Class<DescribeAntChainMiniAppBrowserQRCodeAuthorizedUsersV2Response> getResponseClass() { return DescribeAntChainMiniAppBrowserQRCodeAuthorizedUsersV2Response.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-baas/2.2.3/com/aliyuncs/baas/model
java-sources/com/aliyun/aliyun-java-sdk-baas/2.2.3/com/aliyuncs/baas/model/v20181221/DescribeAntChainMiniAppBrowserQRCodeAuthorizedUsersV2Response.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.baas.model.v20181221; import java.util.List; import com.aliyuncs.AcsResponse; import com.aliyuncs.baas.transform.v20181221.DescribeAntChainMiniAppBrowserQRCodeAuthorizedUsersV2ResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class DescribeAntChainMiniAppBrowserQRCodeAuthorizedUsersV2Response extends AcsResponse { private String httpStatusCode; private String requestId; private Boolean success; private String resultMessage; private String code; private String message; private String resultCode; private Result result; public String getHttpStatusCode() { return this.httpStatusCode; } public void setHttpStatusCode(String httpStatusCode) { this.httpStatusCode = httpStatusCode; } public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public Boolean getSuccess() { return this.success; } public void setSuccess(Boolean success) { this.success = success; } public String getResultMessage() { return this.resultMessage; } public void setResultMessage(String resultMessage) { this.resultMessage = resultMessage; } public String getCode() { return this.code; } public void setCode(String code) { this.code = code; } public String getMessage() { return this.message; } public void setMessage(String message) { this.message = message; } public String getResultCode() { return this.resultCode; } public void setResultCode(String resultCode) { this.resultCode = resultCode; } public Result getResult() { return this.result; } public void setResult(Result result) { this.result = result; } public static class Result { private String qRCodeType; private String authorizationType; private String antChainId; private List<AuthorizedUserListItem> authorizedUserList; private Pagination pagination; public String getQRCodeType() { return this.qRCodeType; } public void setQRCodeType(String qRCodeType) { this.qRCodeType = qRCodeType; } public String getAuthorizationType() { return this.authorizationType; } public void setAuthorizationType(String authorizationType) { this.authorizationType = authorizationType; } public String getAntChainId() { return this.antChainId; } public void setAntChainId(String antChainId) { this.antChainId = antChainId; } public List<AuthorizedUserListItem> getAuthorizedUserList() { return this.authorizedUserList; } public void setAuthorizedUserList(List<AuthorizedUserListItem> authorizedUserList) { this.authorizedUserList = authorizedUserList; } public Pagination getPagination() { return this.pagination; } public void setPagination(Pagination pagination) { this.pagination = pagination; } public static class AuthorizedUserListItem { private String gmtAuthorized; private String phone; public String getGmtAuthorized() { return this.gmtAuthorized; } public void setGmtAuthorized(String gmtAuthorized) { this.gmtAuthorized = gmtAuthorized; } public String getPhone() { return this.phone; } public void setPhone(String phone) { this.phone = phone; } } public static class Pagination { private Integer pageSize; private Integer pageNumber; private Integer totalCount; public Integer getPageSize() { return this.pageSize; } public void setPageSize(Integer pageSize) { this.pageSize = pageSize; } public Integer getPageNumber() { return this.pageNumber; } public void setPageNumber(Integer pageNumber) { this.pageNumber = pageNumber; } public Integer getTotalCount() { return this.totalCount; } public void setTotalCount(Integer totalCount) { this.totalCount = totalCount; } } } @Override public DescribeAntChainMiniAppBrowserQRCodeAuthorizedUsersV2Response getInstance(UnmarshallerContext context) { return DescribeAntChainMiniAppBrowserQRCodeAuthorizedUsersV2ResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-baas/2.2.3/com/aliyuncs/baas/model
java-sources/com/aliyun/aliyun-java-sdk-baas/2.2.3/com/aliyuncs/baas/model/v20181221/DescribeAntChainMiniAppBrowserTransactionQRCodeNewRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.baas.model.v20181221; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.baas.Endpoint; /** * @author auto create * @version */ public class DescribeAntChainMiniAppBrowserTransactionQRCodeNewRequest extends RpcAcsRequest<DescribeAntChainMiniAppBrowserTransactionQRCodeNewResponse> { private String antChainId; private String contractId; private String transactionHash; public DescribeAntChainMiniAppBrowserTransactionQRCodeNewRequest() { super("Baas", "2018-12-21", "DescribeAntChainMiniAppBrowserTransactionQRCodeNew", "baas"); 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 getAntChainId() { return this.antChainId; } public void setAntChainId(String antChainId) { this.antChainId = antChainId; if(antChainId != null){ putBodyParameter("AntChainId", antChainId); } } public String getContractId() { return this.contractId; } public void setContractId(String contractId) { this.contractId = contractId; if(contractId != null){ putBodyParameter("ContractId", contractId); } } public String getTransactionHash() { return this.transactionHash; } public void setTransactionHash(String transactionHash) { this.transactionHash = transactionHash; if(transactionHash != null){ putBodyParameter("TransactionHash", transactionHash); } } @Override public Class<DescribeAntChainMiniAppBrowserTransactionQRCodeNewResponse> getResponseClass() { return DescribeAntChainMiniAppBrowserTransactionQRCodeNewResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-baas/2.2.3/com/aliyuncs/baas/model
java-sources/com/aliyun/aliyun-java-sdk-baas/2.2.3/com/aliyuncs/baas/model/v20181221/DescribeAntChainMiniAppBrowserTransactionQRCodeNewResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.baas.model.v20181221; import com.aliyuncs.AcsResponse; import com.aliyuncs.baas.transform.v20181221.DescribeAntChainMiniAppBrowserTransactionQRCodeNewResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class DescribeAntChainMiniAppBrowserTransactionQRCodeNewResponse extends AcsResponse { private String httpStatusCode; private String requestId; private Boolean success; private String resultMessage; private String code; private String message; private String resultCode; private Result result; public String getHttpStatusCode() { return this.httpStatusCode; } public void setHttpStatusCode(String httpStatusCode) { this.httpStatusCode = httpStatusCode; } public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public Boolean getSuccess() { return this.success; } public void setSuccess(Boolean success) { this.success = success; } public String getResultMessage() { return this.resultMessage; } public void setResultMessage(String resultMessage) { this.resultMessage = resultMessage; } public String getCode() { return this.code; } public void setCode(String code) { this.code = code; } public String getMessage() { return this.message; } public void setMessage(String message) { this.message = message; } public String getResultCode() { return this.resultCode; } public void setResultCode(String resultCode) { this.resultCode = resultCode; } public Result getResult() { return this.result; } public void setResult(Result result) { this.result = result; } public static class Result { private String base64QRCodePNG; private String qRCodeContent; private String transactionHash; private String antChainId; public String getBase64QRCodePNG() { return this.base64QRCodePNG; } public void setBase64QRCodePNG(String base64QRCodePNG) { this.base64QRCodePNG = base64QRCodePNG; } public String getQRCodeContent() { return this.qRCodeContent; } public void setQRCodeContent(String qRCodeContent) { this.qRCodeContent = qRCodeContent; } public String getTransactionHash() { return this.transactionHash; } public void setTransactionHash(String transactionHash) { this.transactionHash = transactionHash; } public String getAntChainId() { return this.antChainId; } public void setAntChainId(String antChainId) { this.antChainId = antChainId; } } @Override public DescribeAntChainMiniAppBrowserTransactionQRCodeNewResponse getInstance(UnmarshallerContext context) { return DescribeAntChainMiniAppBrowserTransactionQRCodeNewResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-baas/2.2.3/com/aliyuncs/baas/model
java-sources/com/aliyun/aliyun-java-sdk-baas/2.2.3/com/aliyuncs/baas/model/v20181221/DescribeAntChainMiniAppBrowserTransactionQRCodeRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.baas.model.v20181221; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.baas.Endpoint; /** * @author auto create * @version */ public class DescribeAntChainMiniAppBrowserTransactionQRCodeRequest extends RpcAcsRequest<DescribeAntChainMiniAppBrowserTransactionQRCodeResponse> { private String antChainId; private String transactionHash; public DescribeAntChainMiniAppBrowserTransactionQRCodeRequest() { super("Baas", "2018-12-21", "DescribeAntChainMiniAppBrowserTransactionQRCode", "baas"); 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 getAntChainId() { return this.antChainId; } public void setAntChainId(String antChainId) { this.antChainId = antChainId; if(antChainId != null){ putBodyParameter("AntChainId", antChainId); } } public String getTransactionHash() { return this.transactionHash; } public void setTransactionHash(String transactionHash) { this.transactionHash = transactionHash; if(transactionHash != null){ putBodyParameter("TransactionHash", transactionHash); } } @Override public Class<DescribeAntChainMiniAppBrowserTransactionQRCodeResponse> getResponseClass() { return DescribeAntChainMiniAppBrowserTransactionQRCodeResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-baas/2.2.3/com/aliyuncs/baas/model
java-sources/com/aliyun/aliyun-java-sdk-baas/2.2.3/com/aliyuncs/baas/model/v20181221/DescribeAntChainMiniAppBrowserTransactionQRCodeResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.baas.model.v20181221; import com.aliyuncs.AcsResponse; import com.aliyuncs.baas.transform.v20181221.DescribeAntChainMiniAppBrowserTransactionQRCodeResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class DescribeAntChainMiniAppBrowserTransactionQRCodeResponse extends AcsResponse { private String requestId; private Result result; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public Result getResult() { return this.result; } public void setResult(Result result) { this.result = result; } public static class Result { private String base64QRCodePNG; private String transactionHash; private String qRCodeContent; private String antChainId; public String getBase64QRCodePNG() { return this.base64QRCodePNG; } public void setBase64QRCodePNG(String base64QRCodePNG) { this.base64QRCodePNG = base64QRCodePNG; } public String getTransactionHash() { return this.transactionHash; } public void setTransactionHash(String transactionHash) { this.transactionHash = transactionHash; } public String getQRCodeContent() { return this.qRCodeContent; } public void setQRCodeContent(String qRCodeContent) { this.qRCodeContent = qRCodeContent; } public String getAntChainId() { return this.antChainId; } public void setAntChainId(String antChainId) { this.antChainId = antChainId; } } @Override public DescribeAntChainMiniAppBrowserTransactionQRCodeResponse getInstance(UnmarshallerContext context) { return DescribeAntChainMiniAppBrowserTransactionQRCodeResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-baas/2.2.3/com/aliyuncs/baas/model
java-sources/com/aliyun/aliyun-java-sdk-baas/2.2.3/com/aliyuncs/baas/model/v20181221/DescribeAntChainNodesRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.baas.model.v20181221; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.baas.Endpoint; /** * @author auto create * @version */ public class DescribeAntChainNodesRequest extends RpcAcsRequest<DescribeAntChainNodesResponse> { private String antChainId; public DescribeAntChainNodesRequest() { super("Baas", "2018-12-21", "DescribeAntChainNodes", "baas"); 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 getAntChainId() { return this.antChainId; } public void setAntChainId(String antChainId) { this.antChainId = antChainId; if(antChainId != null){ putBodyParameter("AntChainId", antChainId); } } @Override public Class<DescribeAntChainNodesResponse> getResponseClass() { return DescribeAntChainNodesResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-baas/2.2.3/com/aliyuncs/baas/model
java-sources/com/aliyun/aliyun-java-sdk-baas/2.2.3/com/aliyuncs/baas/model/v20181221/DescribeAntChainNodesResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.baas.model.v20181221; import java.util.List; import java.util.Map; import com.aliyuncs.AcsResponse; import com.aliyuncs.baas.transform.v20181221.DescribeAntChainNodesResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class DescribeAntChainNodesResponse extends AcsResponse { private String requestId; private List<Map<Object,Object>> result; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public List<Map<Object,Object>> getResult() { return this.result; } public void setResult(List<Map<Object,Object>> result) { this.result = result; } @Override public DescribeAntChainNodesResponse getInstance(UnmarshallerContext context) { return DescribeAntChainNodesResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-baas/2.2.3/com/aliyuncs/baas/model
java-sources/com/aliyun/aliyun-java-sdk-baas/2.2.3/com/aliyuncs/baas/model/v20181221/DescribeAntChainNodesV2Request.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.baas.model.v20181221; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.baas.Endpoint; /** * @author auto create * @version */ public class DescribeAntChainNodesV2Request extends RpcAcsRequest<DescribeAntChainNodesV2Response> { private String antChainId; private String consortiumId; public DescribeAntChainNodesV2Request() { super("Baas", "2018-12-21", "DescribeAntChainNodesV2", "baas"); 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 getAntChainId() { return this.antChainId; } public void setAntChainId(String antChainId) { this.antChainId = antChainId; if(antChainId != null){ putBodyParameter("AntChainId", antChainId); } } public String getConsortiumId() { return this.consortiumId; } public void setConsortiumId(String consortiumId) { this.consortiumId = consortiumId; if(consortiumId != null){ putBodyParameter("ConsortiumId", consortiumId); } } @Override public Class<DescribeAntChainNodesV2Response> getResponseClass() { return DescribeAntChainNodesV2Response.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-baas/2.2.3/com/aliyuncs/baas/model
java-sources/com/aliyun/aliyun-java-sdk-baas/2.2.3/com/aliyuncs/baas/model/v20181221/DescribeAntChainNodesV2Response.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.baas.model.v20181221; import java.util.List; import com.aliyuncs.AcsResponse; import com.aliyuncs.baas.transform.v20181221.DescribeAntChainNodesV2ResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class DescribeAntChainNodesV2Response extends AcsResponse { private String httpStatusCode; private String requestId; private Boolean success; private String resultMessage; private String code; private String message; private String resultCode; private List<String> result; public String getHttpStatusCode() { return this.httpStatusCode; } public void setHttpStatusCode(String httpStatusCode) { this.httpStatusCode = httpStatusCode; } public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public Boolean getSuccess() { return this.success; } public void setSuccess(Boolean success) { this.success = success; } public String getResultMessage() { return this.resultMessage; } public void setResultMessage(String resultMessage) { this.resultMessage = resultMessage; } public String getCode() { return this.code; } public void setCode(String code) { this.code = code; } public String getMessage() { return this.message; } public void setMessage(String message) { this.message = message; } public String getResultCode() { return this.resultCode; } public void setResultCode(String resultCode) { this.resultCode = resultCode; } public List<String> getResult() { return this.result; } public void setResult(List<String> result) { this.result = result; } @Override public DescribeAntChainNodesV2Response getInstance(UnmarshallerContext context) { return DescribeAntChainNodesV2ResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-baas/2.2.3/com/aliyuncs/baas/model
java-sources/com/aliyun/aliyun-java-sdk-baas/2.2.3/com/aliyuncs/baas/model/v20181221/DescribeAntChainQRCodeAuthorizationRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.baas.model.v20181221; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.baas.Endpoint; /** * @author auto create * @version */ public class DescribeAntChainQRCodeAuthorizationRequest extends RpcAcsRequest<DescribeAntChainQRCodeAuthorizationResponse> { private String antChainId; private String qRCodeType; public DescribeAntChainQRCodeAuthorizationRequest() { super("Baas", "2018-12-21", "DescribeAntChainQRCodeAuthorization", "baas"); 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 getAntChainId() { return this.antChainId; } public void setAntChainId(String antChainId) { this.antChainId = antChainId; if(antChainId != null){ putBodyParameter("AntChainId", antChainId); } } public String getQRCodeType() { return this.qRCodeType; } public void setQRCodeType(String qRCodeType) { this.qRCodeType = qRCodeType; if(qRCodeType != null){ putBodyParameter("QRCodeType", qRCodeType); } } @Override public Class<DescribeAntChainQRCodeAuthorizationResponse> getResponseClass() { return DescribeAntChainQRCodeAuthorizationResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-baas/2.2.3/com/aliyuncs/baas/model
java-sources/com/aliyun/aliyun-java-sdk-baas/2.2.3/com/aliyuncs/baas/model/v20181221/DescribeAntChainQRCodeAuthorizationResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.baas.model.v20181221; import com.aliyuncs.AcsResponse; import com.aliyuncs.baas.transform.v20181221.DescribeAntChainQRCodeAuthorizationResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class DescribeAntChainQRCodeAuthorizationResponse extends AcsResponse { private String requestId; private Result result; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public Result getResult() { return this.result; } public void setResult(Result result) { this.result = result; } public static class Result { private String qRCodeType; private String authorizationType; private String antChainId; public String getQRCodeType() { return this.qRCodeType; } public void setQRCodeType(String qRCodeType) { this.qRCodeType = qRCodeType; } public String getAuthorizationType() { return this.authorizationType; } public void setAuthorizationType(String authorizationType) { this.authorizationType = authorizationType; } public String getAntChainId() { return this.antChainId; } public void setAntChainId(String antChainId) { this.antChainId = antChainId; } } @Override public DescribeAntChainQRCodeAuthorizationResponse getInstance(UnmarshallerContext context) { return DescribeAntChainQRCodeAuthorizationResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-baas/2.2.3/com/aliyuncs/baas/model
java-sources/com/aliyun/aliyun-java-sdk-baas/2.2.3/com/aliyuncs/baas/model/v20181221/DescribeAntChainQRCodeAuthorizationV2Request.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.baas.model.v20181221; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.baas.Endpoint; /** * @author auto create * @version */ public class DescribeAntChainQRCodeAuthorizationV2Request extends RpcAcsRequest<DescribeAntChainQRCodeAuthorizationV2Response> { private String antChainId; private String qRCodeType; public DescribeAntChainQRCodeAuthorizationV2Request() { super("Baas", "2018-12-21", "DescribeAntChainQRCodeAuthorizationV2", "baas"); 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 getAntChainId() { return this.antChainId; } public void setAntChainId(String antChainId) { this.antChainId = antChainId; if(antChainId != null){ putBodyParameter("AntChainId", antChainId); } } public String getQRCodeType() { return this.qRCodeType; } public void setQRCodeType(String qRCodeType) { this.qRCodeType = qRCodeType; if(qRCodeType != null){ putBodyParameter("QRCodeType", qRCodeType); } } @Override public Class<DescribeAntChainQRCodeAuthorizationV2Response> getResponseClass() { return DescribeAntChainQRCodeAuthorizationV2Response.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-baas/2.2.3/com/aliyuncs/baas/model
java-sources/com/aliyun/aliyun-java-sdk-baas/2.2.3/com/aliyuncs/baas/model/v20181221/DescribeAntChainQRCodeAuthorizationV2Response.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.baas.model.v20181221; import com.aliyuncs.AcsResponse; import com.aliyuncs.baas.transform.v20181221.DescribeAntChainQRCodeAuthorizationV2ResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class DescribeAntChainQRCodeAuthorizationV2Response extends AcsResponse { private String httpStatusCode; private String requestId; private Boolean success; private String resultMessage; private String code; private String message; private String resultCode; private Result result; public String getHttpStatusCode() { return this.httpStatusCode; } public void setHttpStatusCode(String httpStatusCode) { this.httpStatusCode = httpStatusCode; } public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public Boolean getSuccess() { return this.success; } public void setSuccess(Boolean success) { this.success = success; } public String getResultMessage() { return this.resultMessage; } public void setResultMessage(String resultMessage) { this.resultMessage = resultMessage; } public String getCode() { return this.code; } public void setCode(String code) { this.code = code; } public String getMessage() { return this.message; } public void setMessage(String message) { this.message = message; } public String getResultCode() { return this.resultCode; } public void setResultCode(String resultCode) { this.resultCode = resultCode; } public Result getResult() { return this.result; } public void setResult(Result result) { this.result = result; } public static class Result { private String qRCodeType; private String authorizationType; private String antChainId; public String getQRCodeType() { return this.qRCodeType; } public void setQRCodeType(String qRCodeType) { this.qRCodeType = qRCodeType; } public String getAuthorizationType() { return this.authorizationType; } public void setAuthorizationType(String authorizationType) { this.authorizationType = authorizationType; } public String getAntChainId() { return this.antChainId; } public void setAntChainId(String antChainId) { this.antChainId = antChainId; } } @Override public DescribeAntChainQRCodeAuthorizationV2Response getInstance(UnmarshallerContext context) { return DescribeAntChainQRCodeAuthorizationV2ResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-baas/2.2.3/com/aliyuncs/baas/model
java-sources/com/aliyun/aliyun-java-sdk-baas/2.2.3/com/aliyuncs/baas/model/v20181221/DescribeAntChainTransactionReceiptRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.baas.model.v20181221; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.baas.Endpoint; /** * @author auto create * @version */ public class DescribeAntChainTransactionReceiptRequest extends RpcAcsRequest<DescribeAntChainTransactionReceiptResponse> { private String antChainId; private String hash; public DescribeAntChainTransactionReceiptRequest() { super("Baas", "2018-12-21", "DescribeAntChainTransactionReceipt", "baas"); 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 getAntChainId() { return this.antChainId; } public void setAntChainId(String antChainId) { this.antChainId = antChainId; if(antChainId != null){ putBodyParameter("AntChainId", antChainId); } } public String getHash() { return this.hash; } public void setHash(String hash) { this.hash = hash; if(hash != null){ putBodyParameter("Hash", hash); } } @Override public Class<DescribeAntChainTransactionReceiptResponse> getResponseClass() { return DescribeAntChainTransactionReceiptResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-baas/2.2.3/com/aliyuncs/baas/model
java-sources/com/aliyun/aliyun-java-sdk-baas/2.2.3/com/aliyuncs/baas/model/v20181221/DescribeAntChainTransactionReceiptResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.baas.model.v20181221; import java.util.List; import com.aliyuncs.AcsResponse; import com.aliyuncs.baas.transform.v20181221.DescribeAntChainTransactionReceiptResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class DescribeAntChainTransactionReceiptResponse extends AcsResponse { private String requestId; private Result result; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public Result getResult() { return this.result; } public void setResult(Result result) { this.result = result; } public static class Result { private String data; private String gasUsed; private Long result; private List<String> logs; public String getData() { return this.data; } public void setData(String data) { this.data = data; } public String getGasUsed() { return this.gasUsed; } public void setGasUsed(String gasUsed) { this.gasUsed = gasUsed; } public Long getResult() { return this.result; } public void setResult(Long result) { this.result = result; } public List<String> getLogs() { return this.logs; } public void setLogs(List<String> logs) { this.logs = logs; } } @Override public DescribeAntChainTransactionReceiptResponse getInstance(UnmarshallerContext context) { return DescribeAntChainTransactionReceiptResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-baas/2.2.3/com/aliyuncs/baas/model
java-sources/com/aliyun/aliyun-java-sdk-baas/2.2.3/com/aliyuncs/baas/model/v20181221/DescribeAntChainTransactionReceiptV2Request.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.baas.model.v20181221; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.baas.Endpoint; /** * @author auto create * @version */ public class DescribeAntChainTransactionReceiptV2Request extends RpcAcsRequest<DescribeAntChainTransactionReceiptV2Response> { private String antChainId; private String hash; private String consortiumId; public DescribeAntChainTransactionReceiptV2Request() { super("Baas", "2018-12-21", "DescribeAntChainTransactionReceiptV2", "baas"); 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 getAntChainId() { return this.antChainId; } public void setAntChainId(String antChainId) { this.antChainId = antChainId; if(antChainId != null){ putBodyParameter("AntChainId", antChainId); } } public String getHash() { return this.hash; } public void setHash(String hash) { this.hash = hash; if(hash != null){ putBodyParameter("Hash", hash); } } public String getConsortiumId() { return this.consortiumId; } public void setConsortiumId(String consortiumId) { this.consortiumId = consortiumId; if(consortiumId != null){ putBodyParameter("ConsortiumId", consortiumId); } } @Override public Class<DescribeAntChainTransactionReceiptV2Response> getResponseClass() { return DescribeAntChainTransactionReceiptV2Response.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-baas/2.2.3/com/aliyuncs/baas/model
java-sources/com/aliyun/aliyun-java-sdk-baas/2.2.3/com/aliyuncs/baas/model/v20181221/DescribeAntChainTransactionReceiptV2Response.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.baas.model.v20181221; import java.util.List; import com.aliyuncs.AcsResponse; import com.aliyuncs.baas.transform.v20181221.DescribeAntChainTransactionReceiptV2ResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class DescribeAntChainTransactionReceiptV2Response extends AcsResponse { private String httpStatusCode; private String requestId; private Boolean success; private String resultMessage; private String code; private String message; private String resultCode; private Result result; public String getHttpStatusCode() { return this.httpStatusCode; } public void setHttpStatusCode(String httpStatusCode) { this.httpStatusCode = httpStatusCode; } public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public Boolean getSuccess() { return this.success; } public void setSuccess(Boolean success) { this.success = success; } public String getResultMessage() { return this.resultMessage; } public void setResultMessage(String resultMessage) { this.resultMessage = resultMessage; } public String getCode() { return this.code; } public void setCode(String code) { this.code = code; } public String getMessage() { return this.message; } public void setMessage(String message) { this.message = message; } public String getResultCode() { return this.resultCode; } public void setResultCode(String resultCode) { this.resultCode = resultCode; } public Result getResult() { return this.result; } public void setResult(Result result) { this.result = result; } public static class Result { private String data; private String gasUsed; private Long result; private List<String> logs; public String getData() { return this.data; } public void setData(String data) { this.data = data; } public String getGasUsed() { return this.gasUsed; } public void setGasUsed(String gasUsed) { this.gasUsed = gasUsed; } public Long getResult() { return this.result; } public void setResult(Long result) { this.result = result; } public List<String> getLogs() { return this.logs; } public void setLogs(List<String> logs) { this.logs = logs; } } @Override public DescribeAntChainTransactionReceiptV2Response getInstance(UnmarshallerContext context) { return DescribeAntChainTransactionReceiptV2ResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-baas/2.2.3/com/aliyuncs/baas/model
java-sources/com/aliyun/aliyun-java-sdk-baas/2.2.3/com/aliyuncs/baas/model/v20181221/DescribeAntChainTransactionRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.baas.model.v20181221; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.baas.Endpoint; /** * @author auto create * @version */ public class DescribeAntChainTransactionRequest extends RpcAcsRequest<DescribeAntChainTransactionResponse> { private String antChainId; private String hash; public DescribeAntChainTransactionRequest() { super("Baas", "2018-12-21", "DescribeAntChainTransaction", "baas"); 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 getAntChainId() { return this.antChainId; } public void setAntChainId(String antChainId) { this.antChainId = antChainId; if(antChainId != null){ putBodyParameter("AntChainId", antChainId); } } public String getHash() { return this.hash; } public void setHash(String hash) { this.hash = hash; if(hash != null){ putBodyParameter("Hash", hash); } } @Override public Class<DescribeAntChainTransactionResponse> getResponseClass() { return DescribeAntChainTransactionResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-baas/2.2.3/com/aliyuncs/baas/model
java-sources/com/aliyun/aliyun-java-sdk-baas/2.2.3/com/aliyuncs/baas/model/v20181221/DescribeAntChainTransactionResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.baas.model.v20181221; import java.util.List; import com.aliyuncs.AcsResponse; import com.aliyuncs.baas.transform.v20181221.DescribeAntChainTransactionResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class DescribeAntChainTransactionResponse extends AcsResponse { private String requestId; private Result result; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public Result getResult() { return this.result; } public void setResult(Result result) { this.result = result; } public static class Result { private String hash; private String blockHash; private String blockVersion; private Long blockHeight; private Long createTime; private Transaction transaction; public String getHash() { return this.hash; } public void setHash(String hash) { this.hash = hash; } public String getBlockHash() { return this.blockHash; } public void setBlockHash(String blockHash) { this.blockHash = blockHash; } public String getBlockVersion() { return this.blockVersion; } public void setBlockVersion(String blockVersion) { this.blockVersion = blockVersion; } public Long getBlockHeight() { return this.blockHeight; } public void setBlockHeight(Long blockHeight) { this.blockHeight = blockHeight; } public Long getCreateTime() { return this.createTime; } public void setCreateTime(Long createTime) { this.createTime = createTime; } public Transaction getTransaction() { return this.transaction; } public void setTransaction(Transaction transaction) { this.transaction = transaction; } public static class Transaction { private String hash; private String value; private String from; private String data; private String nonce; private String to; private Long timestamp; private String gas; private String txType; private Long period; private List<String> extentions; private List<String> signatures; public String getHash() { return this.hash; } public void setHash(String hash) { this.hash = hash; } public String getValue() { return this.value; } public void setValue(String value) { this.value = value; } public String getFrom() { return this.from; } public void setFrom(String from) { this.from = from; } public String getData() { return this.data; } public void setData(String data) { this.data = data; } public String getNonce() { return this.nonce; } public void setNonce(String nonce) { this.nonce = nonce; } public String getTo() { return this.to; } public void setTo(String to) { this.to = to; } public Long getTimestamp() { return this.timestamp; } public void setTimestamp(Long timestamp) { this.timestamp = timestamp; } public String getGas() { return this.gas; } public void setGas(String gas) { this.gas = gas; } public String getTxType() { return this.txType; } public void setTxType(String txType) { this.txType = txType; } public Long getPeriod() { return this.period; } public void setPeriod(Long period) { this.period = period; } public List<String> getExtentions() { return this.extentions; } public void setExtentions(List<String> extentions) { this.extentions = extentions; } public List<String> getSignatures() { return this.signatures; } public void setSignatures(List<String> signatures) { this.signatures = signatures; } } } @Override public DescribeAntChainTransactionResponse getInstance(UnmarshallerContext context) { return DescribeAntChainTransactionResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-baas/2.2.3/com/aliyuncs/baas/model
java-sources/com/aliyun/aliyun-java-sdk-baas/2.2.3/com/aliyuncs/baas/model/v20181221/DescribeAntChainTransactionStatisticsRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.baas.model.v20181221; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.baas.Endpoint; /** * @author auto create * @version */ public class DescribeAntChainTransactionStatisticsRequest extends RpcAcsRequest<DescribeAntChainTransactionStatisticsResponse> { private Long start; private String antChainId; private Long end; public DescribeAntChainTransactionStatisticsRequest() { super("Baas", "2018-12-21", "DescribeAntChainTransactionStatistics", "baas"); 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 getStart() { return this.start; } public void setStart(Long start) { this.start = start; if(start != null){ putBodyParameter("Start", start.toString()); } } public String getAntChainId() { return this.antChainId; } public void setAntChainId(String antChainId) { this.antChainId = antChainId; if(antChainId != null){ putBodyParameter("AntChainId", antChainId); } } public Long getEnd() { return this.end; } public void setEnd(Long end) { this.end = end; if(end != null){ putBodyParameter("End", end.toString()); } } @Override public Class<DescribeAntChainTransactionStatisticsResponse> getResponseClass() { return DescribeAntChainTransactionStatisticsResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-baas/2.2.3/com/aliyuncs/baas/model
java-sources/com/aliyun/aliyun-java-sdk-baas/2.2.3/com/aliyuncs/baas/model/v20181221/DescribeAntChainTransactionStatisticsResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.baas.model.v20181221; import java.util.List; import com.aliyuncs.AcsResponse; import com.aliyuncs.baas.transform.v20181221.DescribeAntChainTransactionStatisticsResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class DescribeAntChainTransactionStatisticsResponse extends AcsResponse { private String requestId; private List<ResultItem> result; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public List<ResultItem> getResult() { return this.result; } public void setResult(List<ResultItem> result) { this.result = result; } public static class ResultItem { private String dt; private Long creatTime; private Long lastSumBlockHeight; private Long transCount; private String antChainId; public String getDt() { return this.dt; } public void setDt(String dt) { this.dt = dt; } public Long getCreatTime() { return this.creatTime; } public void setCreatTime(Long creatTime) { this.creatTime = creatTime; } public Long getLastSumBlockHeight() { return this.lastSumBlockHeight; } public void setLastSumBlockHeight(Long lastSumBlockHeight) { this.lastSumBlockHeight = lastSumBlockHeight; } public Long getTransCount() { return this.transCount; } public void setTransCount(Long transCount) { this.transCount = transCount; } public String getAntChainId() { return this.antChainId; } public void setAntChainId(String antChainId) { this.antChainId = antChainId; } } @Override public DescribeAntChainTransactionStatisticsResponse getInstance(UnmarshallerContext context) { return DescribeAntChainTransactionStatisticsResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-baas/2.2.3/com/aliyuncs/baas/model
java-sources/com/aliyun/aliyun-java-sdk-baas/2.2.3/com/aliyuncs/baas/model/v20181221/DescribeAntChainTransactionStatisticsV2Request.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.baas.model.v20181221; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.baas.Endpoint; /** * @author auto create * @version */ public class DescribeAntChainTransactionStatisticsV2Request extends RpcAcsRequest<DescribeAntChainTransactionStatisticsV2Response> { private String antChainId; private Long end; private Long start; private String consortiumId; public DescribeAntChainTransactionStatisticsV2Request() { super("Baas", "2018-12-21", "DescribeAntChainTransactionStatisticsV2", "baas"); 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 getAntChainId() { return this.antChainId; } public void setAntChainId(String antChainId) { this.antChainId = antChainId; if(antChainId != null){ putBodyParameter("AntChainId", antChainId); } } public Long getEnd() { return this.end; } public void setEnd(Long end) { this.end = end; if(end != null){ putBodyParameter("End", end.toString()); } } public Long getStart() { return this.start; } public void setStart(Long start) { this.start = start; if(start != null){ putBodyParameter("Start", start.toString()); } } public String getConsortiumId() { return this.consortiumId; } public void setConsortiumId(String consortiumId) { this.consortiumId = consortiumId; if(consortiumId != null){ putBodyParameter("ConsortiumId", consortiumId); } } @Override public Class<DescribeAntChainTransactionStatisticsV2Response> getResponseClass() { return DescribeAntChainTransactionStatisticsV2Response.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-baas/2.2.3/com/aliyuncs/baas/model
java-sources/com/aliyun/aliyun-java-sdk-baas/2.2.3/com/aliyuncs/baas/model/v20181221/DescribeAntChainTransactionStatisticsV2Response.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.baas.model.v20181221; import java.util.List; import com.aliyuncs.AcsResponse; import com.aliyuncs.baas.transform.v20181221.DescribeAntChainTransactionStatisticsV2ResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class DescribeAntChainTransactionStatisticsV2Response extends AcsResponse { private String httpStatusCode; private String requestId; private Boolean success; private String resultMessage; private String code; private String message; private String resultCode; private List<ResultItem> result; public String getHttpStatusCode() { return this.httpStatusCode; } public void setHttpStatusCode(String httpStatusCode) { this.httpStatusCode = httpStatusCode; } public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public Boolean getSuccess() { return this.success; } public void setSuccess(Boolean success) { this.success = success; } public String getResultMessage() { return this.resultMessage; } public void setResultMessage(String resultMessage) { this.resultMessage = resultMessage; } public String getCode() { return this.code; } public void setCode(String code) { this.code = code; } public String getMessage() { return this.message; } public void setMessage(String message) { this.message = message; } public String getResultCode() { return this.resultCode; } public void setResultCode(String resultCode) { this.resultCode = resultCode; } public List<ResultItem> getResult() { return this.result; } public void setResult(List<ResultItem> result) { this.result = result; } public static class ResultItem { private Long dt; private Long creatTime; private Long lastSumBlockHeight; private Long transCount; private String antChainId; public Long getDt() { return this.dt; } public void setDt(Long dt) { this.dt = dt; } public Long getCreatTime() { return this.creatTime; } public void setCreatTime(Long creatTime) { this.creatTime = creatTime; } public Long getLastSumBlockHeight() { return this.lastSumBlockHeight; } public void setLastSumBlockHeight(Long lastSumBlockHeight) { this.lastSumBlockHeight = lastSumBlockHeight; } public Long getTransCount() { return this.transCount; } public void setTransCount(Long transCount) { this.transCount = transCount; } public String getAntChainId() { return this.antChainId; } public void setAntChainId(String antChainId) { this.antChainId = antChainId; } } @Override public DescribeAntChainTransactionStatisticsV2Response getInstance(UnmarshallerContext context) { return DescribeAntChainTransactionStatisticsV2ResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-baas/2.2.3/com/aliyuncs/baas/model
java-sources/com/aliyun/aliyun-java-sdk-baas/2.2.3/com/aliyuncs/baas/model/v20181221/DescribeAntChainTransactionV2Request.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.baas.model.v20181221; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.baas.Endpoint; /** * @author auto create * @version */ public class DescribeAntChainTransactionV2Request extends RpcAcsRequest<DescribeAntChainTransactionV2Response> { private String antChainId; private String hash; private String consortiumId; public DescribeAntChainTransactionV2Request() { super("Baas", "2018-12-21", "DescribeAntChainTransactionV2", "baas"); 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 getAntChainId() { return this.antChainId; } public void setAntChainId(String antChainId) { this.antChainId = antChainId; if(antChainId != null){ putBodyParameter("AntChainId", antChainId); } } public String getHash() { return this.hash; } public void setHash(String hash) { this.hash = hash; if(hash != null){ putBodyParameter("Hash", hash); } } public String getConsortiumId() { return this.consortiumId; } public void setConsortiumId(String consortiumId) { this.consortiumId = consortiumId; if(consortiumId != null){ putBodyParameter("ConsortiumId", consortiumId); } } @Override public Class<DescribeAntChainTransactionV2Response> getResponseClass() { return DescribeAntChainTransactionV2Response.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-baas/2.2.3/com/aliyuncs/baas/model
java-sources/com/aliyun/aliyun-java-sdk-baas/2.2.3/com/aliyuncs/baas/model/v20181221/DescribeAntChainTransactionV2Response.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.baas.model.v20181221; import java.util.List; import com.aliyuncs.AcsResponse; import com.aliyuncs.baas.transform.v20181221.DescribeAntChainTransactionV2ResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class DescribeAntChainTransactionV2Response extends AcsResponse { private String httpStatusCode; private String requestId; private Boolean success; private String resultMessage; private String code; private String message; private String resultCode; private Result result; public String getHttpStatusCode() { return this.httpStatusCode; } public void setHttpStatusCode(String httpStatusCode) { this.httpStatusCode = httpStatusCode; } public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public Boolean getSuccess() { return this.success; } public void setSuccess(Boolean success) { this.success = success; } public String getResultMessage() { return this.resultMessage; } public void setResultMessage(String resultMessage) { this.resultMessage = resultMessage; } public String getCode() { return this.code; } public void setCode(String code) { this.code = code; } public String getMessage() { return this.message; } public void setMessage(String message) { this.message = message; } public String getResultCode() { return this.resultCode; } public void setResultCode(String resultCode) { this.resultCode = resultCode; } public Result getResult() { return this.result; } public void setResult(Result result) { this.result = result; } public static class Result { private String hash; private String blockHash; private String blockVersion; private Long blockHeight; private Long createTime; private Transaction transaction; public String getHash() { return this.hash; } public void setHash(String hash) { this.hash = hash; } public String getBlockHash() { return this.blockHash; } public void setBlockHash(String blockHash) { this.blockHash = blockHash; } public String getBlockVersion() { return this.blockVersion; } public void setBlockVersion(String blockVersion) { this.blockVersion = blockVersion; } public Long getBlockHeight() { return this.blockHeight; } public void setBlockHeight(Long blockHeight) { this.blockHeight = blockHeight; } public Long getCreateTime() { return this.createTime; } public void setCreateTime(Long createTime) { this.createTime = createTime; } public Transaction getTransaction() { return this.transaction; } public void setTransaction(Transaction transaction) { this.transaction = transaction; } public static class Transaction { private String hash; private String value; private String from; private String data; private String nonce; private String to; private Long timestamp; private String gas; private String txType; private Long period; private List<String> extentions; private List<String> signatures; public String getHash() { return this.hash; } public void setHash(String hash) { this.hash = hash; } public String getValue() { return this.value; } public void setValue(String value) { this.value = value; } public String getFrom() { return this.from; } public void setFrom(String from) { this.from = from; } public String getData() { return this.data; } public void setData(String data) { this.data = data; } public String getNonce() { return this.nonce; } public void setNonce(String nonce) { this.nonce = nonce; } public String getTo() { return this.to; } public void setTo(String to) { this.to = to; } public Long getTimestamp() { return this.timestamp; } public void setTimestamp(Long timestamp) { this.timestamp = timestamp; } public String getGas() { return this.gas; } public void setGas(String gas) { this.gas = gas; } public String getTxType() { return this.txType; } public void setTxType(String txType) { this.txType = txType; } public Long getPeriod() { return this.period; } public void setPeriod(Long period) { this.period = period; } public List<String> getExtentions() { return this.extentions; } public void setExtentions(List<String> extentions) { this.extentions = extentions; } public List<String> getSignatures() { return this.signatures; } public void setSignatures(List<String> signatures) { this.signatures = signatures; } } } @Override public DescribeAntChainTransactionV2Response getInstance(UnmarshallerContext context) { return DescribeAntChainTransactionV2ResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-baas/2.2.3/com/aliyuncs/baas/model
java-sources/com/aliyun/aliyun-java-sdk-baas/2.2.3/com/aliyuncs/baas/model/v20181221/DescribeAntChainsRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.baas.model.v20181221; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.baas.Endpoint; /** * @author auto create * @version */ public class DescribeAntChainsRequest extends RpcAcsRequest<DescribeAntChainsResponse> { private Integer pageNumber; private Integer pageSize; private String consortiumId; public DescribeAntChainsRequest() { super("Baas", "2018-12-21", "DescribeAntChains", "baas"); 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 getPageNumber() { return this.pageNumber; } public void setPageNumber(Integer pageNumber) { this.pageNumber = pageNumber; if(pageNumber != null){ putBodyParameter("PageNumber", pageNumber.toString()); } } public Integer getPageSize() { return this.pageSize; } public void setPageSize(Integer pageSize) { this.pageSize = pageSize; if(pageSize != null){ putBodyParameter("PageSize", pageSize.toString()); } } public String getConsortiumId() { return this.consortiumId; } public void setConsortiumId(String consortiumId) { this.consortiumId = consortiumId; if(consortiumId != null){ putBodyParameter("ConsortiumId", consortiumId); } } @Override public Class<DescribeAntChainsResponse> getResponseClass() { return DescribeAntChainsResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-baas/2.2.3/com/aliyuncs/baas/model
java-sources/com/aliyun/aliyun-java-sdk-baas/2.2.3/com/aliyuncs/baas/model/v20181221/DescribeAntChainsResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.baas.model.v20181221; import java.util.List; import com.aliyuncs.AcsResponse; import com.aliyuncs.baas.transform.v20181221.DescribeAntChainsResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class DescribeAntChainsResponse extends AcsResponse { private String requestId; private Result result; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public Result getResult() { return this.result; } public void setResult(Result result) { this.result = result; } public static class Result { private Boolean isExist; private List<AntChainsItem> antChains; private Pagination pagination; public Boolean getIsExist() { return this.isExist; } public void setIsExist(Boolean isExist) { this.isExist = isExist; } public List<AntChainsItem> getAntChains() { return this.antChains; } public void setAntChains(List<AntChainsItem> antChains) { this.antChains = antChains; } public Pagination getPagination() { return this.pagination; } public void setPagination(Pagination pagination) { this.pagination = pagination; } public static class AntChainsItem { private Long expireTime; private Long createTime; private String chainType; private String memberStatus; private String merkleTreeSuit; private Boolean isAdmin; private String antChainName; private String regionId; private String network; private String tlsAlgo; private String version; private String cipherSuit; private String resourceSize; private Integer nodeNum; private String antChainId; public Long getExpireTime() { return this.expireTime; } public void setExpireTime(Long expireTime) { this.expireTime = expireTime; } public Long getCreateTime() { return this.createTime; } public void setCreateTime(Long createTime) { this.createTime = createTime; } public String getChainType() { return this.chainType; } public void setChainType(String chainType) { this.chainType = chainType; } public String getMemberStatus() { return this.memberStatus; } public void setMemberStatus(String memberStatus) { this.memberStatus = memberStatus; } public String getMerkleTreeSuit() { return this.merkleTreeSuit; } public void setMerkleTreeSuit(String merkleTreeSuit) { this.merkleTreeSuit = merkleTreeSuit; } public Boolean getIsAdmin() { return this.isAdmin; } public void setIsAdmin(Boolean isAdmin) { this.isAdmin = isAdmin; } public String getAntChainName() { return this.antChainName; } public void setAntChainName(String antChainName) { this.antChainName = antChainName; } public String getRegionId() { return this.regionId; } public void setRegionId(String regionId) { this.regionId = regionId; } public String getNetwork() { return this.network; } public void setNetwork(String network) { this.network = network; } public String getTlsAlgo() { return this.tlsAlgo; } public void setTlsAlgo(String tlsAlgo) { this.tlsAlgo = tlsAlgo; } public String getVersion() { return this.version; } public void setVersion(String version) { this.version = version; } public String getCipherSuit() { return this.cipherSuit; } public void setCipherSuit(String cipherSuit) { this.cipherSuit = cipherSuit; } public String getResourceSize() { return this.resourceSize; } public void setResourceSize(String resourceSize) { this.resourceSize = resourceSize; } public Integer getNodeNum() { return this.nodeNum; } public void setNodeNum(Integer nodeNum) { this.nodeNum = nodeNum; } public String getAntChainId() { return this.antChainId; } public void setAntChainId(String antChainId) { this.antChainId = antChainId; } } public static class Pagination { private Integer pageSize; private Integer pageNumber; private Integer totalCount; public Integer getPageSize() { return this.pageSize; } public void setPageSize(Integer pageSize) { this.pageSize = pageSize; } public Integer getPageNumber() { return this.pageNumber; } public void setPageNumber(Integer pageNumber) { this.pageNumber = pageNumber; } public Integer getTotalCount() { return this.totalCount; } public void setTotalCount(Integer totalCount) { this.totalCount = totalCount; } } } @Override public DescribeAntChainsResponse getInstance(UnmarshallerContext context) { return DescribeAntChainsResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-baas/2.2.3/com/aliyuncs/baas/model
java-sources/com/aliyun/aliyun-java-sdk-baas/2.2.3/com/aliyuncs/baas/model/v20181221/DescribeAntChainsV2Request.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.baas.model.v20181221; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.baas.Endpoint; /** * @author auto create * @version */ public class DescribeAntChainsV2Request extends RpcAcsRequest<DescribeAntChainsV2Response> { private Integer pageNumber; private Integer pageSize; private String consortiumId; public DescribeAntChainsV2Request() { super("Baas", "2018-12-21", "DescribeAntChainsV2", "baas"); 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 getPageNumber() { return this.pageNumber; } public void setPageNumber(Integer pageNumber) { this.pageNumber = pageNumber; if(pageNumber != null){ putBodyParameter("PageNumber", pageNumber.toString()); } } public Integer getPageSize() { return this.pageSize; } public void setPageSize(Integer pageSize) { this.pageSize = pageSize; if(pageSize != null){ putBodyParameter("PageSize", pageSize.toString()); } } public String getConsortiumId() { return this.consortiumId; } public void setConsortiumId(String consortiumId) { this.consortiumId = consortiumId; if(consortiumId != null){ putBodyParameter("ConsortiumId", consortiumId); } } @Override public Class<DescribeAntChainsV2Response> getResponseClass() { return DescribeAntChainsV2Response.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-baas/2.2.3/com/aliyuncs/baas/model
java-sources/com/aliyun/aliyun-java-sdk-baas/2.2.3/com/aliyuncs/baas/model/v20181221/DescribeAntChainsV2Response.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.baas.model.v20181221; import java.util.List; import com.aliyuncs.AcsResponse; import com.aliyuncs.baas.transform.v20181221.DescribeAntChainsV2ResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class DescribeAntChainsV2Response extends AcsResponse { private String httpStatusCode; private String requestId; private Boolean success; private String resultMessage; private String code; private String message; private String resultCode; private Result result; public String getHttpStatusCode() { return this.httpStatusCode; } public void setHttpStatusCode(String httpStatusCode) { this.httpStatusCode = httpStatusCode; } public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public Boolean getSuccess() { return this.success; } public void setSuccess(Boolean success) { this.success = success; } public String getResultMessage() { return this.resultMessage; } public void setResultMessage(String resultMessage) { this.resultMessage = resultMessage; } public String getCode() { return this.code; } public void setCode(String code) { this.code = code; } public String getMessage() { return this.message; } public void setMessage(String message) { this.message = message; } public String getResultCode() { return this.resultCode; } public void setResultCode(String resultCode) { this.resultCode = resultCode; } public Result getResult() { return this.result; } public void setResult(Result result) { this.result = result; } public static class Result { private Boolean isExist; private List<AntChainsItem> antChains; private Pagination pagination; public Boolean getIsExist() { return this.isExist; } public void setIsExist(Boolean isExist) { this.isExist = isExist; } public List<AntChainsItem> getAntChains() { return this.antChains; } public void setAntChains(List<AntChainsItem> antChains) { this.antChains = antChains; } public Pagination getPagination() { return this.pagination; } public void setPagination(Pagination pagination) { this.pagination = pagination; } public static class AntChainsItem { private Long expireTime; private Long createTime; private String restStatus; private String chainType; private Boolean isAdmin; private String merkleTreeSuit; private String memberStatus; private String instanceId; private String regionId; private String antChainName; private String network; private Boolean monitorStatus; private String tlsAlgo; private String version; private String cipherSuit; private String resourceSize; private Integer nodeNum; private String antChainId; public Long getExpireTime() { return this.expireTime; } public void setExpireTime(Long expireTime) { this.expireTime = expireTime; } public Long getCreateTime() { return this.createTime; } public void setCreateTime(Long createTime) { this.createTime = createTime; } public String getRestStatus() { return this.restStatus; } public void setRestStatus(String restStatus) { this.restStatus = restStatus; } public String getChainType() { return this.chainType; } public void setChainType(String chainType) { this.chainType = chainType; } public Boolean getIsAdmin() { return this.isAdmin; } public void setIsAdmin(Boolean isAdmin) { this.isAdmin = isAdmin; } public String getMerkleTreeSuit() { return this.merkleTreeSuit; } public void setMerkleTreeSuit(String merkleTreeSuit) { this.merkleTreeSuit = merkleTreeSuit; } public String getMemberStatus() { return this.memberStatus; } public void setMemberStatus(String memberStatus) { this.memberStatus = memberStatus; } public String getInstanceId() { return this.instanceId; } public void setInstanceId(String instanceId) { this.instanceId = instanceId; } public String getRegionId() { return this.regionId; } public void setRegionId(String regionId) { this.regionId = regionId; } public String getAntChainName() { return this.antChainName; } public void setAntChainName(String antChainName) { this.antChainName = antChainName; } public String getNetwork() { return this.network; } public void setNetwork(String network) { this.network = network; } public Boolean getMonitorStatus() { return this.monitorStatus; } public void setMonitorStatus(Boolean monitorStatus) { this.monitorStatus = monitorStatus; } public String getTlsAlgo() { return this.tlsAlgo; } public void setTlsAlgo(String tlsAlgo) { this.tlsAlgo = tlsAlgo; } public String getVersion() { return this.version; } public void setVersion(String version) { this.version = version; } public String getCipherSuit() { return this.cipherSuit; } public void setCipherSuit(String cipherSuit) { this.cipherSuit = cipherSuit; } public String getResourceSize() { return this.resourceSize; } public void setResourceSize(String resourceSize) { this.resourceSize = resourceSize; } public Integer getNodeNum() { return this.nodeNum; } public void setNodeNum(Integer nodeNum) { this.nodeNum = nodeNum; } public String getAntChainId() { return this.antChainId; } public void setAntChainId(String antChainId) { this.antChainId = antChainId; } } public static class Pagination { private Integer pageSize; private Integer pageNumber; private Integer totalCount; public Integer getPageSize() { return this.pageSize; } public void setPageSize(Integer pageSize) { this.pageSize = pageSize; } public Integer getPageNumber() { return this.pageNumber; } public void setPageNumber(Integer pageNumber) { this.pageNumber = pageNumber; } public Integer getTotalCount() { return this.totalCount; } public void setTotalCount(Integer totalCount) { this.totalCount = totalCount; } } } @Override public DescribeAntChainsV2Response getInstance(UnmarshallerContext context) { return DescribeAntChainsV2ResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-baas/2.2.3/com/aliyuncs/baas/model
java-sources/com/aliyun/aliyun-java-sdk-baas/2.2.3/com/aliyuncs/baas/model/v20181221/DescribeEthereumDeletableRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.baas.model.v20181221; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.baas.Endpoint; /** * @author auto create * @version */ public class DescribeEthereumDeletableRequest extends RpcAcsRequest<DescribeEthereumDeletableResponse> { private String ethereumId; public DescribeEthereumDeletableRequest() { super("Baas", "2018-12-21", "DescribeEthereumDeletable", "baas"); 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 getEthereumId() { return this.ethereumId; } public void setEthereumId(String ethereumId) { this.ethereumId = ethereumId; if(ethereumId != null){ putBodyParameter("EthereumId", ethereumId); } } @Override public Class<DescribeEthereumDeletableResponse> getResponseClass() { return DescribeEthereumDeletableResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-baas/2.2.3/com/aliyuncs/baas/model
java-sources/com/aliyun/aliyun-java-sdk-baas/2.2.3/com/aliyuncs/baas/model/v20181221/DescribeEthereumDeletableResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.baas.model.v20181221; import com.aliyuncs.AcsResponse; import com.aliyuncs.baas.transform.v20181221.DescribeEthereumDeletableResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class DescribeEthereumDeletableResponse extends AcsResponse { private String requestId; private Boolean success; private Integer errorCode; private Result result; 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 getErrorCode() { return this.errorCode; } public void setErrorCode(Integer errorCode) { this.errorCode = errorCode; } public Result getResult() { return this.result; } public void setResult(Result result) { this.result = result; } public static class Result { private String ethereumId; private Boolean deletable; public String getEthereumId() { return this.ethereumId; } public void setEthereumId(String ethereumId) { this.ethereumId = ethereumId; } public Boolean getDeletable() { return this.deletable; } public void setDeletable(Boolean deletable) { this.deletable = deletable; } } @Override public DescribeEthereumDeletableResponse getInstance(UnmarshallerContext context) { return DescribeEthereumDeletableResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-baas/2.2.3/com/aliyuncs/baas/model
java-sources/com/aliyun/aliyun-java-sdk-baas/2.2.3/com/aliyuncs/baas/model/v20181221/DescribeFabricCandidateOrganizationsRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.baas.model.v20181221; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.baas.Endpoint; /** * @author auto create * @version */ public class DescribeFabricCandidateOrganizationsRequest extends RpcAcsRequest<DescribeFabricCandidateOrganizationsResponse> { private String location; public DescribeFabricCandidateOrganizationsRequest() { super("Baas", "2018-12-21", "DescribeFabricCandidateOrganizations", "baas"); 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 getLocation() { return this.location; } public void setLocation(String location) { this.location = location; if(location != null){ putBodyParameter("Location", location); } } @Override public Class<DescribeFabricCandidateOrganizationsResponse> getResponseClass() { return DescribeFabricCandidateOrganizationsResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-baas/2.2.3/com/aliyuncs/baas/model
java-sources/com/aliyun/aliyun-java-sdk-baas/2.2.3/com/aliyuncs/baas/model/v20181221/DescribeFabricCandidateOrganizationsResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.baas.model.v20181221; import java.util.List; import com.aliyuncs.AcsResponse; import com.aliyuncs.baas.transform.v20181221.DescribeFabricCandidateOrganizationsResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class DescribeFabricCandidateOrganizationsResponse extends AcsResponse { private String requestId; private Boolean success; private Integer errorCode; private List<DescribeCandidateOrganization> result; 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 getErrorCode() { return this.errorCode; } public void setErrorCode(Integer errorCode) { this.errorCode = errorCode; } public List<DescribeCandidateOrganization> getResult() { return this.result; } public void setResult(List<DescribeCandidateOrganization> result) { this.result = result; } public static class DescribeCandidateOrganization { private String serviceState; private String organizationName; private String clusterState; private String organizationId; public String getServiceState() { return this.serviceState; } public void setServiceState(String serviceState) { this.serviceState = serviceState; } public String getOrganizationName() { return this.organizationName; } public void setOrganizationName(String organizationName) { this.organizationName = organizationName; } public String getClusterState() { return this.clusterState; } public void setClusterState(String clusterState) { this.clusterState = clusterState; } public String getOrganizationId() { return this.organizationId; } public void setOrganizationId(String organizationId) { this.organizationId = organizationId; } } @Override public DescribeFabricCandidateOrganizationsResponse getInstance(UnmarshallerContext context) { return DescribeFabricCandidateOrganizationsResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-baas/2.2.3/com/aliyuncs/baas/model
java-sources/com/aliyun/aliyun-java-sdk-baas/2.2.3/com/aliyuncs/baas/model/v20181221/DescribeFabricChaincodeDefinitionTaskRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.baas.model.v20181221; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.baas.Endpoint; /** * @author auto create * @version */ public class DescribeFabricChaincodeDefinitionTaskRequest extends RpcAcsRequest<DescribeFabricChaincodeDefinitionTaskResponse> { private String organizationId; private String chaincodeId; public DescribeFabricChaincodeDefinitionTaskRequest() { super("Baas", "2018-12-21", "DescribeFabricChaincodeDefinitionTask", "baas"); 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 getOrganizationId() { return this.organizationId; } public void setOrganizationId(String organizationId) { this.organizationId = organizationId; if(organizationId != null){ putBodyParameter("OrganizationId", organizationId); } } public String getChaincodeId() { return this.chaincodeId; } public void setChaincodeId(String chaincodeId) { this.chaincodeId = chaincodeId; if(chaincodeId != null){ putBodyParameter("ChaincodeId", chaincodeId); } } @Override public Class<DescribeFabricChaincodeDefinitionTaskResponse> getResponseClass() { return DescribeFabricChaincodeDefinitionTaskResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-baas/2.2.3/com/aliyuncs/baas/model
java-sources/com/aliyun/aliyun-java-sdk-baas/2.2.3/com/aliyuncs/baas/model/v20181221/DescribeFabricChaincodeDefinitionTaskResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.baas.model.v20181221; import java.util.List; import com.aliyuncs.AcsResponse; import com.aliyuncs.baas.transform.v20181221.DescribeFabricChaincodeDefinitionTaskResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class DescribeFabricChaincodeDefinitionTaskResponse extends AcsResponse { private String requestId; private Boolean success; private Integer errorCode; private Result result; 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 getErrorCode() { return this.errorCode; } public void setErrorCode(Integer errorCode) { this.errorCode = errorCode; } public Result getResult() { return this.result; } public void setResult(Result result) { this.result = result; } public static class Result { private String status; private String type; private String channelName; private String description; private Long createTime; private String taskId; private String creator; private List<String> approvers; private Content content; public String getStatus() { return this.status; } public void setStatus(String status) { this.status = status; } public String getType() { return this.type; } public void setType(String type) { this.type = type; } public String getChannelName() { return this.channelName; } public void setChannelName(String channelName) { this.channelName = channelName; } public String getDescription() { return this.description; } public void setDescription(String description) { this.description = description; } public Long getCreateTime() { return this.createTime; } public void setCreateTime(Long createTime) { this.createTime = createTime; } public String getTaskId() { return this.taskId; } public void setTaskId(String taskId) { this.taskId = taskId; } public String getCreator() { return this.creator; } public void setCreator(String creator) { this.creator = creator; } public List<String> getApprovers() { return this.approvers; } public void setApprovers(List<String> approvers) { this.approvers = approvers; } public Content getContent() { return this.content; } public void setContent(Content content) { this.content = content; } public static class Content { private ChaincodeDefinition chaincodeDefinition; public ChaincodeDefinition getChaincodeDefinition() { return this.chaincodeDefinition; } public void setChaincodeDefinition(ChaincodeDefinition chaincodeDefinition) { this.chaincodeDefinition = chaincodeDefinition; } public static class ChaincodeDefinition { private String endorsementPolicy; private Long sequence; private String version; private String chaincodePackageId; private String name; private Boolean initRequired; private String collectionConfig; private String uid; public String getEndorsementPolicy() { return this.endorsementPolicy; } public void setEndorsementPolicy(String endorsementPolicy) { this.endorsementPolicy = endorsementPolicy; } public Long getSequence() { return this.sequence; } public void setSequence(Long sequence) { this.sequence = sequence; } public String getVersion() { return this.version; } public void setVersion(String version) { this.version = version; } public String getChaincodePackageId() { return this.chaincodePackageId; } public void setChaincodePackageId(String chaincodePackageId) { this.chaincodePackageId = chaincodePackageId; } public String getName() { return this.name; } public void setName(String name) { this.name = name; } public Boolean getInitRequired() { return this.initRequired; } public void setInitRequired(Boolean initRequired) { this.initRequired = initRequired; } public String getCollectionConfig() { return this.collectionConfig; } public void setCollectionConfig(String collectionConfig) { this.collectionConfig = collectionConfig; } public String getUid() { return this.uid; } public void setUid(String uid) { this.uid = uid; } } } } @Override public DescribeFabricChaincodeDefinitionTaskResponse getInstance(UnmarshallerContext context) { return DescribeFabricChaincodeDefinitionTaskResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-baas/2.2.3/com/aliyuncs/baas/model
java-sources/com/aliyun/aliyun-java-sdk-baas/2.2.3/com/aliyuncs/baas/model/v20181221/DescribeFabricChaincodeUploadPolicyRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.baas.model.v20181221; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.baas.Endpoint; /** * @author auto create * @version */ public class DescribeFabricChaincodeUploadPolicyRequest extends RpcAcsRequest<DescribeFabricChaincodeUploadPolicyResponse> { private String organizationId; public DescribeFabricChaincodeUploadPolicyRequest() { super("Baas", "2018-12-21", "DescribeFabricChaincodeUploadPolicy", "baas"); 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 getOrganizationId() { return this.organizationId; } public void setOrganizationId(String organizationId) { this.organizationId = organizationId; if(organizationId != null){ putBodyParameter("OrganizationId", organizationId); } } @Override public Class<DescribeFabricChaincodeUploadPolicyResponse> getResponseClass() { return DescribeFabricChaincodeUploadPolicyResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-baas/2.2.3/com/aliyuncs/baas/model
java-sources/com/aliyun/aliyun-java-sdk-baas/2.2.3/com/aliyuncs/baas/model/v20181221/DescribeFabricChaincodeUploadPolicyResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.baas.model.v20181221; import com.aliyuncs.AcsResponse; import com.aliyuncs.baas.transform.v20181221.DescribeFabricChaincodeUploadPolicyResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class DescribeFabricChaincodeUploadPolicyResponse extends AcsResponse { private String requestId; private Boolean success; private Integer errorCode; private Result result; 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 getErrorCode() { return this.errorCode; } public void setErrorCode(Integer errorCode) { this.errorCode = errorCode; } public Result getResult() { return this.result; } public void setResult(Result result) { this.result = result; } public static class Result { private String signature; private String host; private String policy; private String dir; private String accessId; private Integer expire; public String getSignature() { return this.signature; } public void setSignature(String signature) { this.signature = signature; } public String getHost() { return this.host; } public void setHost(String host) { this.host = host; } public String getPolicy() { return this.policy; } public void setPolicy(String policy) { this.policy = policy; } public String getDir() { return this.dir; } public void setDir(String dir) { this.dir = dir; } public String getAccessId() { return this.accessId; } public void setAccessId(String accessId) { this.accessId = accessId; } public Integer getExpire() { return this.expire; } public void setExpire(Integer expire) { this.expire = expire; } } @Override public DescribeFabricChaincodeUploadPolicyResponse getInstance(UnmarshallerContext context) { return DescribeFabricChaincodeUploadPolicyResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-baas/2.2.3/com/aliyuncs/baas/model
java-sources/com/aliyun/aliyun-java-sdk-baas/2.2.3/com/aliyuncs/baas/model/v20181221/DescribeFabricChannelMembersRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.baas.model.v20181221; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.baas.Endpoint; /** * @author auto create * @version */ public class DescribeFabricChannelMembersRequest extends RpcAcsRequest<DescribeFabricChannelMembersResponse> { private String channelId; public DescribeFabricChannelMembersRequest() { super("Baas", "2018-12-21", "DescribeFabricChannelMembers", "baas"); 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 getChannelId() { return this.channelId; } public void setChannelId(String channelId) { this.channelId = channelId; if(channelId != null){ putQueryParameter("ChannelId", channelId); } } @Override public Class<DescribeFabricChannelMembersResponse> getResponseClass() { return DescribeFabricChannelMembersResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-baas/2.2.3/com/aliyuncs/baas/model
java-sources/com/aliyun/aliyun-java-sdk-baas/2.2.3/com/aliyuncs/baas/model/v20181221/DescribeFabricChannelMembersResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.baas.model.v20181221; import java.util.List; import com.aliyuncs.AcsResponse; import com.aliyuncs.baas.transform.v20181221.DescribeFabricChannelMembersResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class DescribeFabricChannelMembersResponse extends AcsResponse { private String requestId; private Boolean success; private Integer errorCode; private List<ResultItem> result; 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 getErrorCode() { return this.errorCode; } public void setErrorCode(Integer errorCode) { this.errorCode = errorCode; } public List<ResultItem> getResult() { return this.result; } public void setResult(List<ResultItem> result) { this.result = result; } public static class ResultItem { private Boolean withPeer; private String acceptTime; private String organizationDomain; private String state; private String inviteTime; private String channelId; private String organizationName; private String organizationDescription; private String organizationId; public Boolean getWithPeer() { return this.withPeer; } public void setWithPeer(Boolean withPeer) { this.withPeer = withPeer; } public String getAcceptTime() { return this.acceptTime; } public void setAcceptTime(String acceptTime) { this.acceptTime = acceptTime; } public String getOrganizationDomain() { return this.organizationDomain; } public void setOrganizationDomain(String organizationDomain) { this.organizationDomain = organizationDomain; } public String getState() { return this.state; } public void setState(String state) { this.state = state; } public String getInviteTime() { return this.inviteTime; } public void setInviteTime(String inviteTime) { this.inviteTime = inviteTime; } public String getChannelId() { return this.channelId; } public void setChannelId(String channelId) { this.channelId = channelId; } public String getOrganizationName() { return this.organizationName; } public void setOrganizationName(String organizationName) { this.organizationName = organizationName; } public String getOrganizationDescription() { return this.organizationDescription; } public void setOrganizationDescription(String organizationDescription) { this.organizationDescription = organizationDescription; } public String getOrganizationId() { return this.organizationId; } public void setOrganizationId(String organizationId) { this.organizationId = organizationId; } } @Override public DescribeFabricChannelMembersResponse getInstance(UnmarshallerContext context) { return DescribeFabricChannelMembersResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-baas/2.2.3/com/aliyuncs/baas/model
java-sources/com/aliyun/aliyun-java-sdk-baas/2.2.3/com/aliyuncs/baas/model/v20181221/DescribeFabricConsortiumAdminStatusRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.baas.model.v20181221; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.baas.Endpoint; /** * @author auto create * @version */ public class DescribeFabricConsortiumAdminStatusRequest extends RpcAcsRequest<DescribeFabricConsortiumAdminStatusResponse> { private String location; public DescribeFabricConsortiumAdminStatusRequest() { super("Baas", "2018-12-21", "DescribeFabricConsortiumAdminStatus", "baas"); 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 getLocation() { return this.location; } public void setLocation(String location) { this.location = location; if(location != null){ putBodyParameter("Location", location); } } @Override public Class<DescribeFabricConsortiumAdminStatusResponse> getResponseClass() { return DescribeFabricConsortiumAdminStatusResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-baas/2.2.3/com/aliyuncs/baas/model
java-sources/com/aliyun/aliyun-java-sdk-baas/2.2.3/com/aliyuncs/baas/model/v20181221/DescribeFabricConsortiumAdminStatusResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.baas.model.v20181221; import java.util.List; import com.aliyuncs.AcsResponse; import com.aliyuncs.baas.transform.v20181221.DescribeFabricConsortiumAdminStatusResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class DescribeFabricConsortiumAdminStatusResponse extends AcsResponse { private String requestId; private Boolean success; private Integer errorCode; private List<ConsortimeAdminStatus> result; 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 getErrorCode() { return this.errorCode; } public void setErrorCode(Integer errorCode) { this.errorCode = errorCode; } public List<ConsortimeAdminStatus> getResult() { return this.result; } public void setResult(List<ConsortimeAdminStatus> result) { this.result = result; } public static class ConsortimeAdminStatus { private String consortiumId; private Boolean consortiumAdministrator; public String getConsortiumId() { return this.consortiumId; } public void setConsortiumId(String consortiumId) { this.consortiumId = consortiumId; } public Boolean getConsortiumAdministrator() { return this.consortiumAdministrator; } public void setConsortiumAdministrator(Boolean consortiumAdministrator) { this.consortiumAdministrator = consortiumAdministrator; } } @Override public DescribeFabricConsortiumAdminStatusResponse getInstance(UnmarshallerContext context) { return DescribeFabricConsortiumAdminStatusResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-baas/2.2.3/com/aliyuncs/baas/model
java-sources/com/aliyun/aliyun-java-sdk-baas/2.2.3/com/aliyuncs/baas/model/v20181221/DescribeFabricConsortiumChaincodesRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.baas.model.v20181221; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.baas.Endpoint; /** * @author auto create * @version */ public class DescribeFabricConsortiumChaincodesRequest extends RpcAcsRequest<DescribeFabricConsortiumChaincodesResponse> { private String location; private String consortiumId; public DescribeFabricConsortiumChaincodesRequest() { super("Baas", "2018-12-21", "DescribeFabricConsortiumChaincodes", "baas"); 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 getLocation() { return this.location; } public void setLocation(String location) { this.location = location; if(location != null){ putBodyParameter("Location", location); } } public String getConsortiumId() { return this.consortiumId; } public void setConsortiumId(String consortiumId) { this.consortiumId = consortiumId; if(consortiumId != null){ putBodyParameter("ConsortiumId", consortiumId); } } @Override public Class<DescribeFabricConsortiumChaincodesResponse> getResponseClass() { return DescribeFabricConsortiumChaincodesResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-baas/2.2.3/com/aliyuncs/baas/model
java-sources/com/aliyun/aliyun-java-sdk-baas/2.2.3/com/aliyuncs/baas/model/v20181221/DescribeFabricConsortiumChaincodesResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.baas.model.v20181221; import java.util.List; import com.aliyuncs.AcsResponse; import com.aliyuncs.baas.transform.v20181221.DescribeFabricConsortiumChaincodesResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class DescribeFabricConsortiumChaincodesResponse extends AcsResponse { private String requestId; private Boolean success; private Integer errorCode; private List<ChaincodeVO> result; 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 getErrorCode() { return this.errorCode; } public void setErrorCode(Integer errorCode) { this.errorCode = errorCode; } public List<ChaincodeVO> getResult() { return this.result; } public void setResult(List<ChaincodeVO> result) { this.result = result; } public static class ChaincodeVO { private Integer type; private String endorsePolicy; private String state; private String createTime; private String chaincodeId; private String providerName; private String message; private String chaincodeName; private Boolean install; private String input; private String providerId; private String deployTime; private String chaincodeVersion; private String consortiumId; private String channelName; private String channelId; private String path; public Integer getType() { return this.type; } public void setType(Integer type) { this.type = type; } public String getEndorsePolicy() { return this.endorsePolicy; } public void setEndorsePolicy(String endorsePolicy) { this.endorsePolicy = endorsePolicy; } public String getState() { return this.state; } public void setState(String state) { this.state = state; } public String getCreateTime() { return this.createTime; } public void setCreateTime(String createTime) { this.createTime = createTime; } public String getChaincodeId() { return this.chaincodeId; } public void setChaincodeId(String chaincodeId) { this.chaincodeId = chaincodeId; } public String getProviderName() { return this.providerName; } public void setProviderName(String providerName) { this.providerName = providerName; } public String getMessage() { return this.message; } public void setMessage(String message) { this.message = message; } public String getChaincodeName() { return this.chaincodeName; } public void setChaincodeName(String chaincodeName) { this.chaincodeName = chaincodeName; } public Boolean getInstall() { return this.install; } public void setInstall(Boolean install) { this.install = install; } public String getInput() { return this.input; } public void setInput(String input) { this.input = input; } public String getProviderId() { return this.providerId; } public void setProviderId(String providerId) { this.providerId = providerId; } public String getDeployTime() { return this.deployTime; } public void setDeployTime(String deployTime) { this.deployTime = deployTime; } public String getChaincodeVersion() { return this.chaincodeVersion; } public void setChaincodeVersion(String chaincodeVersion) { this.chaincodeVersion = chaincodeVersion; } public String getConsortiumId() { return this.consortiumId; } public void setConsortiumId(String consortiumId) { this.consortiumId = consortiumId; } public String getChannelName() { return this.channelName; } public void setChannelName(String channelName) { this.channelName = channelName; } public String getChannelId() { return this.channelId; } public void setChannelId(String channelId) { this.channelId = channelId; } public String getPath() { return this.path; } public void setPath(String path) { this.path = path; } } @Override public DescribeFabricConsortiumChaincodesResponse getInstance(UnmarshallerContext context) { return DescribeFabricConsortiumChaincodesResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-baas/2.2.3/com/aliyuncs/baas/model
java-sources/com/aliyun/aliyun-java-sdk-baas/2.2.3/com/aliyuncs/baas/model/v20181221/DescribeFabricConsortiumChannelsRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.baas.model.v20181221; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.baas.Endpoint; /** * @author auto create * @version */ public class DescribeFabricConsortiumChannelsRequest extends RpcAcsRequest<DescribeFabricConsortiumChannelsResponse> { private String location; private String consortiumId; public DescribeFabricConsortiumChannelsRequest() { super("Baas", "2018-12-21", "DescribeFabricConsortiumChannels", "baas"); 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 getLocation() { return this.location; } public void setLocation(String location) { this.location = location; if(location != null){ putBodyParameter("Location", location); } } public String getConsortiumId() { return this.consortiumId; } public void setConsortiumId(String consortiumId) { this.consortiumId = consortiumId; if(consortiumId != null){ putQueryParameter("ConsortiumId", consortiumId); } } @Override public Class<DescribeFabricConsortiumChannelsResponse> getResponseClass() { return DescribeFabricConsortiumChannelsResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-baas/2.2.3/com/aliyuncs/baas/model
java-sources/com/aliyun/aliyun-java-sdk-baas/2.2.3/com/aliyuncs/baas/model/v20181221/DescribeFabricConsortiumChannelsResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.baas.model.v20181221; import java.util.List; import com.aliyuncs.AcsResponse; import com.aliyuncs.baas.transform.v20181221.DescribeFabricConsortiumChannelsResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class DescribeFabricConsortiumChannelsResponse extends AcsResponse { private String requestId; private Boolean success; private Integer errorCode; private List<ResultItem> result; 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 getErrorCode() { return this.errorCode; } public void setErrorCode(Integer errorCode) { this.errorCode = errorCode; } public List<ResultItem> getResult() { return this.result; } public void setResult(List<ResultItem> result) { this.result = result; } public static class ResultItem { private Integer batchTimeout; private String updateTime; private Integer chaincodeCount; private Integer preferredMaxBytes; private String memberJoinedCount; private String state; private String createTime; private Boolean supportChannelConfig; private String ownerName; private Long ownerUid; private String ownerBid; private Integer maxMessageCount; private Integer memberCount; private Boolean needJoined; private String requestId; private String consortiumId; private String channelName; private String deleteTime; private String channelId; private Integer consortiumChannelId; private Boolean deleted; private String consortiumName; private Integer blockCount; public Integer getBatchTimeout() { return this.batchTimeout; } public void setBatchTimeout(Integer batchTimeout) { this.batchTimeout = batchTimeout; } public String getUpdateTime() { return this.updateTime; } public void setUpdateTime(String updateTime) { this.updateTime = updateTime; } public Integer getChaincodeCount() { return this.chaincodeCount; } public void setChaincodeCount(Integer chaincodeCount) { this.chaincodeCount = chaincodeCount; } public Integer getPreferredMaxBytes() { return this.preferredMaxBytes; } public void setPreferredMaxBytes(Integer preferredMaxBytes) { this.preferredMaxBytes = preferredMaxBytes; } public String getMemberJoinedCount() { return this.memberJoinedCount; } public void setMemberJoinedCount(String memberJoinedCount) { this.memberJoinedCount = memberJoinedCount; } public String getState() { return this.state; } public void setState(String state) { this.state = state; } public String getCreateTime() { return this.createTime; } public void setCreateTime(String createTime) { this.createTime = createTime; } public Boolean getSupportChannelConfig() { return this.supportChannelConfig; } public void setSupportChannelConfig(Boolean supportChannelConfig) { this.supportChannelConfig = supportChannelConfig; } public String getOwnerName() { return this.ownerName; } public void setOwnerName(String ownerName) { this.ownerName = ownerName; } public Long getOwnerUid() { return this.ownerUid; } public void setOwnerUid(Long ownerUid) { this.ownerUid = ownerUid; } public String getOwnerBid() { return this.ownerBid; } public void setOwnerBid(String ownerBid) { this.ownerBid = ownerBid; } public Integer getMaxMessageCount() { return this.maxMessageCount; } public void setMaxMessageCount(Integer maxMessageCount) { this.maxMessageCount = maxMessageCount; } public Integer getMemberCount() { return this.memberCount; } public void setMemberCount(Integer memberCount) { this.memberCount = memberCount; } public Boolean getNeedJoined() { return this.needJoined; } public void setNeedJoined(Boolean needJoined) { this.needJoined = needJoined; } public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public String getConsortiumId() { return this.consortiumId; } public void setConsortiumId(String consortiumId) { this.consortiumId = consortiumId; } public String getChannelName() { return this.channelName; } public void setChannelName(String channelName) { this.channelName = channelName; } public String getDeleteTime() { return this.deleteTime; } public void setDeleteTime(String deleteTime) { this.deleteTime = deleteTime; } public String getChannelId() { return this.channelId; } public void setChannelId(String channelId) { this.channelId = channelId; } public Integer getConsortiumChannelId() { return this.consortiumChannelId; } public void setConsortiumChannelId(Integer consortiumChannelId) { this.consortiumChannelId = consortiumChannelId; } public Boolean getDeleted() { return this.deleted; } public void setDeleted(Boolean deleted) { this.deleted = deleted; } public String getConsortiumName() { return this.consortiumName; } public void setConsortiumName(String consortiumName) { this.consortiumName = consortiumName; } public Integer getBlockCount() { return this.blockCount; } public void setBlockCount(Integer blockCount) { this.blockCount = blockCount; } } @Override public DescribeFabricConsortiumChannelsResponse getInstance(UnmarshallerContext context) { return DescribeFabricConsortiumChannelsResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-baas/2.2.3/com/aliyuncs/baas/model
java-sources/com/aliyun/aliyun-java-sdk-baas/2.2.3/com/aliyuncs/baas/model/v20181221/DescribeFabricConsortiumConfigRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.baas.model.v20181221; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.baas.Endpoint; /** * @author auto create * @version */ public class DescribeFabricConsortiumConfigRequest extends RpcAcsRequest<DescribeFabricConsortiumConfigResponse> { public DescribeFabricConsortiumConfigRequest() { super("Baas", "2018-12-21", "DescribeFabricConsortiumConfig", "baas"); 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<DescribeFabricConsortiumConfigResponse> getResponseClass() { return DescribeFabricConsortiumConfigResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-baas/2.2.3/com/aliyuncs/baas/model
java-sources/com/aliyun/aliyun-java-sdk-baas/2.2.3/com/aliyuncs/baas/model/v20181221/DescribeFabricConsortiumConfigResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.baas.model.v20181221; import java.util.List; import com.aliyuncs.AcsResponse; import com.aliyuncs.baas.transform.v20181221.DescribeFabricConsortiumConfigResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class DescribeFabricConsortiumConfigResponse extends AcsResponse { private String requestId; private Boolean success; private Integer errorCode; private Result result; 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 getErrorCode() { return this.errorCode; } public void setErrorCode(Integer errorCode) { this.errorCode = errorCode; } public Result getResult() { return this.result; } public void setResult(Result result) { this.result = result; } public static class Result { private List<String> channelPolicy; private List<String> ordererType; public List<String> getChannelPolicy() { return this.channelPolicy; } public void setChannelPolicy(List<String> channelPolicy) { this.channelPolicy = channelPolicy; } public List<String> getOrdererType() { return this.ordererType; } public void setOrdererType(List<String> ordererType) { this.ordererType = ordererType; } } @Override public DescribeFabricConsortiumConfigResponse getInstance(UnmarshallerContext context) { return DescribeFabricConsortiumConfigResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-baas/2.2.3/com/aliyuncs/baas/model
java-sources/com/aliyun/aliyun-java-sdk-baas/2.2.3/com/aliyuncs/baas/model/v20181221/DescribeFabricConsortiumDeletableRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.baas.model.v20181221; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.baas.Endpoint; /** * @author auto create * @version */ public class DescribeFabricConsortiumDeletableRequest extends RpcAcsRequest<DescribeFabricConsortiumDeletableResponse> { private String location; private String consortiumId; public DescribeFabricConsortiumDeletableRequest() { super("Baas", "2018-12-21", "DescribeFabricConsortiumDeletable", "baas"); 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 getLocation() { return this.location; } public void setLocation(String location) { this.location = location; if(location != null){ putBodyParameter("Location", location); } } public String getConsortiumId() { return this.consortiumId; } public void setConsortiumId(String consortiumId) { this.consortiumId = consortiumId; if(consortiumId != null){ putQueryParameter("ConsortiumId", consortiumId); } } @Override public Class<DescribeFabricConsortiumDeletableResponse> getResponseClass() { return DescribeFabricConsortiumDeletableResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-baas/2.2.3/com/aliyuncs/baas/model
java-sources/com/aliyun/aliyun-java-sdk-baas/2.2.3/com/aliyuncs/baas/model/v20181221/DescribeFabricConsortiumDeletableResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.baas.model.v20181221; import com.aliyuncs.AcsResponse; import com.aliyuncs.baas.transform.v20181221.DescribeFabricConsortiumDeletableResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class DescribeFabricConsortiumDeletableResponse extends AcsResponse { private String requestId; private Boolean success; private Integer errorCode; private Result result; 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 getErrorCode() { return this.errorCode; } public void setErrorCode(Integer errorCode) { this.errorCode = errorCode; } public Result getResult() { return this.result; } public void setResult(Result result) { this.result = result; } public static class Result { private Boolean deletable; private String domain; private String description; private String consortiumId; private String state; private String zoneId; private String codeName; private String consortiumName; private String regionId; public Boolean getDeletable() { return this.deletable; } public void setDeletable(Boolean deletable) { this.deletable = deletable; } public String getDomain() { return this.domain; } public void setDomain(String domain) { this.domain = domain; } public String getDescription() { return this.description; } public void setDescription(String description) { this.description = description; } public String getConsortiumId() { return this.consortiumId; } public void setConsortiumId(String consortiumId) { this.consortiumId = consortiumId; } public String getState() { return this.state; } public void setState(String state) { this.state = state; } public String getZoneId() { return this.zoneId; } public void setZoneId(String zoneId) { this.zoneId = zoneId; } public String getCodeName() { return this.codeName; } public void setCodeName(String codeName) { this.codeName = codeName; } public String getConsortiumName() { return this.consortiumName; } public void setConsortiumName(String consortiumName) { this.consortiumName = consortiumName; } public String getRegionId() { return this.regionId; } public void setRegionId(String regionId) { this.regionId = regionId; } } @Override public DescribeFabricConsortiumDeletableResponse getInstance(UnmarshallerContext context) { return DescribeFabricConsortiumDeletableResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-baas/2.2.3/com/aliyuncs/baas/model
java-sources/com/aliyun/aliyun-java-sdk-baas/2.2.3/com/aliyuncs/baas/model/v20181221/DescribeFabricConsortiumMemberApprovalRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.baas.model.v20181221; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.baas.Endpoint; /** * @author auto create * @version */ public class DescribeFabricConsortiumMemberApprovalRequest extends RpcAcsRequest<DescribeFabricConsortiumMemberApprovalResponse> { private String location; private String consortiumId; public DescribeFabricConsortiumMemberApprovalRequest() { super("Baas", "2018-12-21", "DescribeFabricConsortiumMemberApproval", "baas"); 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 getLocation() { return this.location; } public void setLocation(String location) { this.location = location; if(location != null){ putBodyParameter("Location", location); } } public String getConsortiumId() { return this.consortiumId; } public void setConsortiumId(String consortiumId) { this.consortiumId = consortiumId; if(consortiumId != null){ putQueryParameter("ConsortiumId", consortiumId); } } @Override public Class<DescribeFabricConsortiumMemberApprovalResponse> getResponseClass() { return DescribeFabricConsortiumMemberApprovalResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-baas/2.2.3/com/aliyuncs/baas/model
java-sources/com/aliyun/aliyun-java-sdk-baas/2.2.3/com/aliyuncs/baas/model/v20181221/DescribeFabricConsortiumMemberApprovalResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.baas.model.v20181221; import java.util.List; import com.aliyuncs.AcsResponse; import com.aliyuncs.baas.transform.v20181221.DescribeFabricConsortiumMemberApprovalResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class DescribeFabricConsortiumMemberApprovalResponse extends AcsResponse { private String requestId; private Boolean success; private Integer errorCode; private List<ConsortiumMemberApproval> result; 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 getErrorCode() { return this.errorCode; } public void setErrorCode(Integer errorCode) { this.errorCode = errorCode; } public List<ConsortiumMemberApproval> getResult() { return this.result; } public void setResult(List<ConsortiumMemberApproval> result) { this.result = result; } public static class ConsortiumMemberApproval { private String consortiumId; private String state; private String channelCreatePolicy; private String confirmTime; private String organizationName; private String consortiumName; private String domainName; private String organizationId; public String getConsortiumId() { return this.consortiumId; } public void setConsortiumId(String consortiumId) { this.consortiumId = consortiumId; } public String getState() { return this.state; } public void setState(String state) { this.state = state; } public String getChannelCreatePolicy() { return this.channelCreatePolicy; } public void setChannelCreatePolicy(String channelCreatePolicy) { this.channelCreatePolicy = channelCreatePolicy; } public String getConfirmTime() { return this.confirmTime; } public void setConfirmTime(String confirmTime) { this.confirmTime = confirmTime; } public String getOrganizationName() { return this.organizationName; } public void setOrganizationName(String organizationName) { this.organizationName = organizationName; } public String getConsortiumName() { return this.consortiumName; } public void setConsortiumName(String consortiumName) { this.consortiumName = consortiumName; } public String getDomainName() { return this.domainName; } public void setDomainName(String domainName) { this.domainName = domainName; } public String getOrganizationId() { return this.organizationId; } public void setOrganizationId(String organizationId) { this.organizationId = organizationId; } } @Override public DescribeFabricConsortiumMemberApprovalResponse getInstance(UnmarshallerContext context) { return DescribeFabricConsortiumMemberApprovalResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-baas/2.2.3/com/aliyuncs/baas/model
java-sources/com/aliyun/aliyun-java-sdk-baas/2.2.3/com/aliyuncs/baas/model/v20181221/DescribeFabricConsortiumMembersRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.baas.model.v20181221; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.baas.Endpoint; /** * @author auto create * @version */ public class DescribeFabricConsortiumMembersRequest extends RpcAcsRequest<DescribeFabricConsortiumMembersResponse> { private String location; private String consortiumId; public DescribeFabricConsortiumMembersRequest() { super("Baas", "2018-12-21", "DescribeFabricConsortiumMembers", "baas"); 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 getLocation() { return this.location; } public void setLocation(String location) { this.location = location; if(location != null){ putBodyParameter("Location", location); } } public String getConsortiumId() { return this.consortiumId; } public void setConsortiumId(String consortiumId) { this.consortiumId = consortiumId; if(consortiumId != null){ putBodyParameter("ConsortiumId", consortiumId); } } @Override public Class<DescribeFabricConsortiumMembersResponse> getResponseClass() { return DescribeFabricConsortiumMembersResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-baas/2.2.3/com/aliyuncs/baas/model
java-sources/com/aliyun/aliyun-java-sdk-baas/2.2.3/com/aliyuncs/baas/model/v20181221/DescribeFabricConsortiumMembersResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.baas.model.v20181221; import java.util.List; import com.aliyuncs.AcsResponse; import com.aliyuncs.baas.transform.v20181221.DescribeFabricConsortiumMembersResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class DescribeFabricConsortiumMembersResponse extends AcsResponse { private String requestId; private Boolean success; private Integer errorCode; private List<DescribeConsortiumMember> result; 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 getErrorCode() { return this.errorCode; } public void setErrorCode(Integer errorCode) { this.errorCode = errorCode; } public List<DescribeConsortiumMember> getResult() { return this.result; } public void setResult(List<DescribeConsortiumMember> result) { this.result = result; } public static class DescribeConsortiumMember { private String domain; private String description; private String consortiumId; private String organizationName; private String joinedTime; private String organizationId; public String getDomain() { return this.domain; } public void setDomain(String domain) { this.domain = domain; } public String getDescription() { return this.description; } public void setDescription(String description) { this.description = description; } public String getConsortiumId() { return this.consortiumId; } public void setConsortiumId(String consortiumId) { this.consortiumId = consortiumId; } public String getOrganizationName() { return this.organizationName; } public void setOrganizationName(String organizationName) { this.organizationName = organizationName; } public String getJoinedTime() { return this.joinedTime; } public void setJoinedTime(String joinedTime) { this.joinedTime = joinedTime; } public String getOrganizationId() { return this.organizationId; } public void setOrganizationId(String organizationId) { this.organizationId = organizationId; } } @Override public DescribeFabricConsortiumMembersResponse getInstance(UnmarshallerContext context) { return DescribeFabricConsortiumMembersResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-baas/2.2.3/com/aliyuncs/baas/model
java-sources/com/aliyun/aliyun-java-sdk-baas/2.2.3/com/aliyuncs/baas/model/v20181221/DescribeFabricConsortiumOrderersRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.baas.model.v20181221; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.baas.Endpoint; /** * @author auto create * @version */ public class DescribeFabricConsortiumOrderersRequest extends RpcAcsRequest<DescribeFabricConsortiumOrderersResponse> { private String location; private String consortiumId; public DescribeFabricConsortiumOrderersRequest() { super("Baas", "2018-12-21", "DescribeFabricConsortiumOrderers", "baas"); 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 getLocation() { return this.location; } public void setLocation(String location) { this.location = location; if(location != null){ putBodyParameter("Location", location); } } public String getConsortiumId() { return this.consortiumId; } public void setConsortiumId(String consortiumId) { this.consortiumId = consortiumId; if(consortiumId != null){ putBodyParameter("ConsortiumId", consortiumId); } } @Override public Class<DescribeFabricConsortiumOrderersResponse> getResponseClass() { return DescribeFabricConsortiumOrderersResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-baas/2.2.3/com/aliyuncs/baas/model
java-sources/com/aliyun/aliyun-java-sdk-baas/2.2.3/com/aliyuncs/baas/model/v20181221/DescribeFabricConsortiumOrderersResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.baas.model.v20181221; import java.util.List; import com.aliyuncs.AcsResponse; import com.aliyuncs.baas.transform.v20181221.DescribeFabricConsortiumOrderersResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class DescribeFabricConsortiumOrderersResponse extends AcsResponse { private String requestId; private Boolean success; private Integer errorCode; private List<Orderer> result; 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 getErrorCode() { return this.errorCode; } public void setErrorCode(Integer errorCode) { this.errorCode = errorCode; } public List<Orderer> getResult() { return this.result; } public void setResult(List<Orderer> result) { this.result = result; } public static class Orderer { private String domain; private String updateTime; private String ordererName; private String createTime; private Integer port; private String instanceType; public String getDomain() { return this.domain; } public void setDomain(String domain) { this.domain = domain; } public String getUpdateTime() { return this.updateTime; } public void setUpdateTime(String updateTime) { this.updateTime = updateTime; } public String getOrdererName() { return this.ordererName; } public void setOrdererName(String ordererName) { this.ordererName = ordererName; } public String getCreateTime() { return this.createTime; } public void setCreateTime(String createTime) { this.createTime = createTime; } public Integer getPort() { return this.port; } public void setPort(Integer port) { this.port = port; } public String getInstanceType() { return this.instanceType; } public void setInstanceType(String instanceType) { this.instanceType = instanceType; } } @Override public DescribeFabricConsortiumOrderersResponse getInstance(UnmarshallerContext context) { return DescribeFabricConsortiumOrderersResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-baas/2.2.3/com/aliyuncs/baas/model
java-sources/com/aliyun/aliyun-java-sdk-baas/2.2.3/com/aliyuncs/baas/model/v20181221/DescribeFabricConsortiumSpecsRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.baas.model.v20181221; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.baas.Endpoint; /** * @author auto create * @version */ public class DescribeFabricConsortiumSpecsRequest extends RpcAcsRequest<DescribeFabricConsortiumSpecsResponse> { public DescribeFabricConsortiumSpecsRequest() { super("Baas", "2018-12-21", "DescribeFabricConsortiumSpecs", "baas"); 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<DescribeFabricConsortiumSpecsResponse> getResponseClass() { return DescribeFabricConsortiumSpecsResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-baas/2.2.3/com/aliyuncs/baas/model
java-sources/com/aliyun/aliyun-java-sdk-baas/2.2.3/com/aliyuncs/baas/model/v20181221/DescribeFabricConsortiumSpecsResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.baas.model.v20181221; import java.util.List; import com.aliyuncs.AcsResponse; import com.aliyuncs.baas.transform.v20181221.DescribeFabricConsortiumSpecsResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class DescribeFabricConsortiumSpecsResponse extends AcsResponse { private String requestId; private Boolean success; private Integer errorCode; private List<ClusterSpec> result; 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 getErrorCode() { return this.errorCode; } public void setErrorCode(Integer errorCode) { this.errorCode = errorCode; } public List<ClusterSpec> getResult() { return this.result; } public void setResult(List<ClusterSpec> result) { this.result = result; } public static class ClusterSpec { private String specName; private String specTitle; private Boolean enable; public String getSpecName() { return this.specName; } public void setSpecName(String specName) { this.specName = specName; } public String getSpecTitle() { return this.specTitle; } public void setSpecTitle(String specTitle) { this.specTitle = specTitle; } public Boolean getEnable() { return this.enable; } public void setEnable(Boolean enable) { this.enable = enable; } } @Override public DescribeFabricConsortiumSpecsResponse getInstance(UnmarshallerContext context) { return DescribeFabricConsortiumSpecsResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-baas/2.2.3/com/aliyuncs/baas/model
java-sources/com/aliyun/aliyun-java-sdk-baas/2.2.3/com/aliyuncs/baas/model/v20181221/DescribeFabricConsortiumsRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.baas.model.v20181221; import com.aliyuncs.RpcAcsRequest; import java.util.List; import com.aliyuncs.http.MethodType; import com.aliyuncs.baas.Endpoint; /** * @author auto create * @version */ public class DescribeFabricConsortiumsRequest extends RpcAcsRequest<DescribeFabricConsortiumsResponse> { private List<Tag> tags; private String location; private String consortiumId; public DescribeFabricConsortiumsRequest() { super("Baas", "2018-12-21", "DescribeFabricConsortiums", "baas"); 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 List<Tag> getTags() { return this.tags; } public void setTags(List<Tag> tags) { this.tags = tags; if (tags != null) { for (int depth1 = 0; depth1 < tags.size(); depth1++) { putQueryParameter("Tag." + (depth1 + 1) + ".Value" , tags.get(depth1).getValue()); putQueryParameter("Tag." + (depth1 + 1) + ".Key" , tags.get(depth1).getKey()); } } } public String getLocation() { return this.location; } public void setLocation(String location) { this.location = location; if(location != null){ putBodyParameter("Location", location); } } public String getConsortiumId() { return this.consortiumId; } public void setConsortiumId(String consortiumId) { this.consortiumId = consortiumId; if(consortiumId != null){ putQueryParameter("ConsortiumId", consortiumId); } } public static class Tag { private String value; private String key; public String getValue() { return this.value; } public void setValue(String value) { this.value = value; } public String getKey() { return this.key; } public void setKey(String key) { this.key = key; } } @Override public Class<DescribeFabricConsortiumsResponse> getResponseClass() { return DescribeFabricConsortiumsResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-baas/2.2.3/com/aliyuncs/baas/model
java-sources/com/aliyun/aliyun-java-sdk-baas/2.2.3/com/aliyuncs/baas/model/v20181221/DescribeFabricConsortiumsResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.baas.model.v20181221; import java.util.List; import com.aliyuncs.AcsResponse; import com.aliyuncs.baas.transform.v20181221.DescribeFabricConsortiumsResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class DescribeFabricConsortiumsResponse extends AcsResponse { private String requestId; private Integer errorCode; private Boolean success; private List<ResultItem> result; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public Integer getErrorCode() { return this.errorCode; } public void setErrorCode(Integer errorCode) { this.errorCode = errorCode; } public Boolean getSuccess() { return this.success; } public void setSuccess(Boolean success) { this.success = success; } public List<ResultItem> getResult() { return this.result; } public void setResult(List<ResultItem> result) { this.result = result; } public static class ResultItem { private Integer channelCount; private String domain; private String state; private String createTime; private String specName; private Boolean supportChannelConfig; private String ownerName; private Long ownerUid; private String ownerBid; private String codeName; private String regionId; private String channelPolicy; private String requestId; private String consortiumId; private String expiredTime; private Integer organizationCount; private String consortiumName; private String majorVersion; private List<TagsItem> tags; public Integer getChannelCount() { return this.channelCount; } public void setChannelCount(Integer channelCount) { this.channelCount = channelCount; } public String getDomain() { return this.domain; } public void setDomain(String domain) { this.domain = domain; } public String getState() { return this.state; } public void setState(String state) { this.state = state; } public String getCreateTime() { return this.createTime; } public void setCreateTime(String createTime) { this.createTime = createTime; } public String getSpecName() { return this.specName; } public void setSpecName(String specName) { this.specName = specName; } public Boolean getSupportChannelConfig() { return this.supportChannelConfig; } public void setSupportChannelConfig(Boolean supportChannelConfig) { this.supportChannelConfig = supportChannelConfig; } public String getOwnerName() { return this.ownerName; } public void setOwnerName(String ownerName) { this.ownerName = ownerName; } public Long getOwnerUid() { return this.ownerUid; } public void setOwnerUid(Long ownerUid) { this.ownerUid = ownerUid; } public String getOwnerBid() { return this.ownerBid; } public void setOwnerBid(String ownerBid) { this.ownerBid = ownerBid; } public String getCodeName() { return this.codeName; } public void setCodeName(String codeName) { this.codeName = codeName; } public String getRegionId() { return this.regionId; } public void setRegionId(String regionId) { this.regionId = regionId; } public String getChannelPolicy() { return this.channelPolicy; } public void setChannelPolicy(String channelPolicy) { this.channelPolicy = channelPolicy; } public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public String getConsortiumId() { return this.consortiumId; } public void setConsortiumId(String consortiumId) { this.consortiumId = consortiumId; } public String getExpiredTime() { return this.expiredTime; } public void setExpiredTime(String expiredTime) { this.expiredTime = expiredTime; } public Integer getOrganizationCount() { return this.organizationCount; } public void setOrganizationCount(Integer organizationCount) { this.organizationCount = organizationCount; } public String getConsortiumName() { return this.consortiumName; } public void setConsortiumName(String consortiumName) { this.consortiumName = consortiumName; } public String getMajorVersion() { return this.majorVersion; } public void setMajorVersion(String majorVersion) { this.majorVersion = majorVersion; } public List<TagsItem> getTags() { return this.tags; } public void setTags(List<TagsItem> tags) { this.tags = tags; } public static class TagsItem { private String key; private String value; public String getKey() { return this.key; } public void setKey(String key) { this.key = key; } public String getValue() { return this.value; } public void setValue(String value) { this.value = value; } } } @Override public DescribeFabricConsortiumsResponse getInstance(UnmarshallerContext context) { return DescribeFabricConsortiumsResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }