com.aliyun.dingtalkindustry_1_0.models.DigitalStoreGroupInfoRequest 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.dingtalkindustry_1_0.models;
import com.aliyun.tea.*;
public class DigitalStoreGroupInfoRequest extends TeaModel {
// 门店分组Id
@NameInMap("groupId")
public Long groupId;
public static DigitalStoreGroupInfoRequest build(java.util.Map map) throws Exception {
DigitalStoreGroupInfoRequest self = new DigitalStoreGroupInfoRequest();
return TeaModel.build(map, self);
}
public DigitalStoreGroupInfoRequest setGroupId(Long groupId) {
this.groupId = groupId;
return this;
}
public Long getGroupId() {
return this.groupId;
}
}