com.aliyun.pai_dlc20201203.models.Member Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pai_dlc20201203 Show documentation
Show all versions of pai_dlc20201203 Show documentation
Alibaba Cloud pai-dlc (20201203) SDK for Java
The newest version!
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.pai_dlc20201203.models;
import com.aliyun.tea.*;
public class Member extends TeaModel {
/**
* example:
* ken_12345
*/
@NameInMap("MemberId")
public String memberId;
/**
* example:
* WorkspaceAdmin
*/
@NameInMap("MemberType")
public String memberType;
public static Member build(java.util.Map map) throws Exception {
Member self = new Member();
return TeaModel.build(map, self);
}
public Member setMemberId(String memberId) {
this.memberId = memberId;
return this;
}
public String getMemberId() {
return this.memberId;
}
public Member setMemberType(String memberType) {
this.memberType = memberType;
return this;
}
public String getMemberType() {
return this.memberType;
}
}