com.aliyun.dingtalkedu_1_0.models.CheckRestrictionRequest 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.dingtalkedu_1_0.models;
import com.aliyun.tea.*;
public class CheckRestrictionRequest extends TeaModel {
/**
* This parameter is required.
*
* example:
* 1
*/
@NameInMap("actualAmount")
public Long actualAmount;
/**
* This parameter is required.
*
* example:
* 123
*/
@NameInMap("faceId")
public String faceId;
/**
* This parameter is required.
*
* example:
* 1
*/
@NameInMap("scene")
public Long scene;
/**
* This parameter is required.
*
* example:
* 123
*/
@NameInMap("sn")
public String sn;
/**
* This parameter is required.
*
* example:
* 123
*/
@NameInMap("userId")
public String userId;
public static CheckRestrictionRequest build(java.util.Map map) throws Exception {
CheckRestrictionRequest self = new CheckRestrictionRequest();
return TeaModel.build(map, self);
}
public CheckRestrictionRequest setActualAmount(Long actualAmount) {
this.actualAmount = actualAmount;
return this;
}
public Long getActualAmount() {
return this.actualAmount;
}
public CheckRestrictionRequest setFaceId(String faceId) {
this.faceId = faceId;
return this;
}
public String getFaceId() {
return this.faceId;
}
public CheckRestrictionRequest setScene(Long scene) {
this.scene = scene;
return this;
}
public Long getScene() {
return this.scene;
}
public CheckRestrictionRequest setSn(String sn) {
this.sn = sn;
return this;
}
public String getSn() {
return this.sn;
}
public CheckRestrictionRequest setUserId(String userId) {
this.userId = userId;
return this;
}
public String getUserId() {
return this.userId;
}
}