com.aliyun.dingtalkmicro_app_1_0.models.RemoveMemberForAppRoleResponseBody Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of dingtalk Show documentation
Show all versions of dingtalk Show documentation
Alibaba Cloud dingtalk SDK for Java
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.dingtalkmicro_app_1_0.models;
import com.aliyun.tea.*;
public class RemoveMemberForAppRoleResponseBody extends TeaModel {
/**
* example:
* 123
*/
@NameInMap("latestScopeVersion")
public Long latestScopeVersion;
public static RemoveMemberForAppRoleResponseBody build(java.util.Map map) throws Exception {
RemoveMemberForAppRoleResponseBody self = new RemoveMemberForAppRoleResponseBody();
return TeaModel.build(map, self);
}
public RemoveMemberForAppRoleResponseBody setLatestScopeVersion(Long latestScopeVersion) {
this.latestScopeVersion = latestScopeVersion;
return this;
}
public Long getLatestScopeVersion() {
return this.latestScopeVersion;
}
}