com.aliyun.dingtalkcontact_1_0.models.PushVerifyEventRequest 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.dingtalkcontact_1_0.models;
import com.aliyun.tea.*;
public class PushVerifyEventRequest extends TeaModel {
@NameInMap("callerDeviceId")
public String callerDeviceId;
/**
* This parameter is required.
*/
@NameInMap("factorCodeList")
public java.util.List factorCodeList;
@NameInMap("state")
public String state;
/**
* This parameter is required.
*/
@NameInMap("userId")
public String userId;
public static PushVerifyEventRequest build(java.util.Map map) throws Exception {
PushVerifyEventRequest self = new PushVerifyEventRequest();
return TeaModel.build(map, self);
}
public PushVerifyEventRequest setCallerDeviceId(String callerDeviceId) {
this.callerDeviceId = callerDeviceId;
return this;
}
public String getCallerDeviceId() {
return this.callerDeviceId;
}
public PushVerifyEventRequest setFactorCodeList(java.util.List factorCodeList) {
this.factorCodeList = factorCodeList;
return this;
}
public java.util.List getFactorCodeList() {
return this.factorCodeList;
}
public PushVerifyEventRequest setState(String state) {
this.state = state;
return this;
}
public String getState() {
return this.state;
}
public PushVerifyEventRequest setUserId(String userId) {
this.userId = userId;
return this;
}
public String getUserId() {
return this.userId;
}
}