com.aliyuncs.ledgerdb.model.v20191122.ListMembersResponse Maven / Gradle / Ivy
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.ledgerdb.model.v20191122;
import java.util.List;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.ledgerdb.transform.v20191122.ListMembersResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class ListMembersResponse extends AcsResponse {
private String requestId;
private String nextToken;
private Integer maxResults;
private List members;
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public String getNextToken() {
return this.nextToken;
}
public void setNextToken(String nextToken) {
this.nextToken = nextToken;
}
public Integer getMaxResults() {
return this.maxResults;
}
public void setMaxResults(Integer maxResults) {
this.maxResults = maxResults;
}
public List getMembers() {
return this.members;
}
public void setMembers(List members) {
this.members = members;
}
public static class Member {
private String ledgerId;
private String memberId;
private String aliUid;
private String keyType;
private String publicKey;
private String role;
private String state;
private Long createTime;
private Long updateTime;
public String getLedgerId() {
return this.ledgerId;
}
public void setLedgerId(String ledgerId) {
this.ledgerId = ledgerId;
}
public String getMemberId() {
return this.memberId;
}
public void setMemberId(String memberId) {
this.memberId = memberId;
}
public String getAliUid() {
return this.aliUid;
}
public void setAliUid(String aliUid) {
this.aliUid = aliUid;
}
public String getKeyType() {
return this.keyType;
}
public void setKeyType(String keyType) {
this.keyType = keyType;
}
public String getPublicKey() {
return this.publicKey;
}
public void setPublicKey(String publicKey) {
this.publicKey = publicKey;
}
public String getRole() {
return this.role;
}
public void setRole(String role) {
this.role = role;
}
public String getState() {
return this.state;
}
public void setState(String state) {
this.state = state;
}
public Long getCreateTime() {
return this.createTime;
}
public void setCreateTime(Long createTime) {
this.createTime = createTime;
}
public Long getUpdateTime() {
return this.updateTime;
}
public void setUpdateTime(Long updateTime) {
this.updateTime = updateTime;
}
}
@Override
public ListMembersResponse getInstance(UnmarshallerContext context) {
return ListMembersResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy