![JAR search and dependency download from the Maven repository](/logo.png)
com.aliyun.dingtalkfinance_1_0.models.NotifyVerifyResultRequest 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.dingtalkfinance_1_0.models;
import com.aliyun.tea.*;
public class NotifyVerifyResultRequest extends TeaModel {
/**
* This parameter is required.
*
* example:
* corpxxxx
*/
@NameInMap("corpId")
public String corpId;
/**
* This parameter is required.
*
* example:
* 261234567890
*/
@NameInMap("payCode")
public String payCode;
@NameInMap("remark")
public String remark;
/**
* This parameter is required.
*
* example:
* INTERNAL_STAFF
*/
@NameInMap("userCorpRelationType")
public String userCorpRelationType;
/**
* This parameter is required.
*
* example:
* xxxxxx
*/
@NameInMap("userIdentity")
public String userIdentity;
/**
* example:
* 门禁验证
*/
@NameInMap("verifyEvent")
public String verifyEvent;
/**
* example:
* 1号食堂
*/
@NameInMap("verifyLocation")
public String verifyLocation;
/**
* example:
* 202112120003232
*/
@NameInMap("verifyNo")
public String verifyNo;
/**
* This parameter is required.
*
* example:
* 是否通过
*/
@NameInMap("verifyResult")
public Boolean verifyResult;
/**
* This parameter is required.
*
* example:
* 2021-01-01 12:12:12
*/
@NameInMap("verifyTime")
public String verifyTime;
public static NotifyVerifyResultRequest build(java.util.Map map) throws Exception {
NotifyVerifyResultRequest self = new NotifyVerifyResultRequest();
return TeaModel.build(map, self);
}
public NotifyVerifyResultRequest setCorpId(String corpId) {
this.corpId = corpId;
return this;
}
public String getCorpId() {
return this.corpId;
}
public NotifyVerifyResultRequest setPayCode(String payCode) {
this.payCode = payCode;
return this;
}
public String getPayCode() {
return this.payCode;
}
public NotifyVerifyResultRequest setRemark(String remark) {
this.remark = remark;
return this;
}
public String getRemark() {
return this.remark;
}
public NotifyVerifyResultRequest setUserCorpRelationType(String userCorpRelationType) {
this.userCorpRelationType = userCorpRelationType;
return this;
}
public String getUserCorpRelationType() {
return this.userCorpRelationType;
}
public NotifyVerifyResultRequest setUserIdentity(String userIdentity) {
this.userIdentity = userIdentity;
return this;
}
public String getUserIdentity() {
return this.userIdentity;
}
public NotifyVerifyResultRequest setVerifyEvent(String verifyEvent) {
this.verifyEvent = verifyEvent;
return this;
}
public String getVerifyEvent() {
return this.verifyEvent;
}
public NotifyVerifyResultRequest setVerifyLocation(String verifyLocation) {
this.verifyLocation = verifyLocation;
return this;
}
public String getVerifyLocation() {
return this.verifyLocation;
}
public NotifyVerifyResultRequest setVerifyNo(String verifyNo) {
this.verifyNo = verifyNo;
return this;
}
public String getVerifyNo() {
return this.verifyNo;
}
public NotifyVerifyResultRequest setVerifyResult(Boolean verifyResult) {
this.verifyResult = verifyResult;
return this;
}
public Boolean getVerifyResult() {
return this.verifyResult;
}
public NotifyVerifyResultRequest setVerifyTime(String verifyTime) {
this.verifyTime = verifyTime;
return this;
}
public String getVerifyTime() {
return this.verifyTime;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy