com.aliyun.dingtalkwatt_1_0.models.CheckInCrowdsByMobileRequest 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.dingtalkwatt_1_0.models;
import com.aliyun.tea.*;
public class CheckInCrowdsByMobileRequest extends TeaModel {
/**
* example:
* 12520
*
* if can be null:
* true
*/
@NameInMap("crowdIds")
public byte[] crowdIds;
/**
* This parameter is required.
*
* example:
* N5u3hS6KJeoUdopXW4GzFg==
*/
@NameInMap("mobile")
public String mobile;
public static CheckInCrowdsByMobileRequest build(java.util.Map map) throws Exception {
CheckInCrowdsByMobileRequest self = new CheckInCrowdsByMobileRequest();
return TeaModel.build(map, self);
}
public CheckInCrowdsByMobileRequest setCrowdIds(byte[] crowdIds) {
this.crowdIds = crowdIds;
return this;
}
public byte[] getCrowdIds() {
return this.crowdIds;
}
public CheckInCrowdsByMobileRequest setMobile(String mobile) {
this.mobile = mobile;
return this;
}
public String getMobile() {
return this.mobile;
}
}