All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.aliyun.dingtalkbadge_1_0.models.NotifyBadgeCodeVerifyResultRequest Maven / Gradle / Ivy

There is a newer version: 2.1.67
Show newest version
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.dingtalkbadge_1_0.models;

import com.aliyun.tea.*;

public class NotifyBadgeCodeVerifyResultRequest 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: *

true

*/ @NameInMap("verifyResult") public Boolean verifyResult; /** *

This parameter is required.

* * example: *

2021-01-01 12:12:12

*/ @NameInMap("verifyTime") public String verifyTime; public static NotifyBadgeCodeVerifyResultRequest build(java.util.Map map) throws Exception { NotifyBadgeCodeVerifyResultRequest self = new NotifyBadgeCodeVerifyResultRequest(); return TeaModel.build(map, self); } public NotifyBadgeCodeVerifyResultRequest setCorpId(String corpId) { this.corpId = corpId; return this; } public String getCorpId() { return this.corpId; } public NotifyBadgeCodeVerifyResultRequest setPayCode(String payCode) { this.payCode = payCode; return this; } public String getPayCode() { return this.payCode; } public NotifyBadgeCodeVerifyResultRequest setRemark(String remark) { this.remark = remark; return this; } public String getRemark() { return this.remark; } public NotifyBadgeCodeVerifyResultRequest setUserCorpRelationType(String userCorpRelationType) { this.userCorpRelationType = userCorpRelationType; return this; } public String getUserCorpRelationType() { return this.userCorpRelationType; } public NotifyBadgeCodeVerifyResultRequest setUserIdentity(String userIdentity) { this.userIdentity = userIdentity; return this; } public String getUserIdentity() { return this.userIdentity; } public NotifyBadgeCodeVerifyResultRequest setVerifyEvent(String verifyEvent) { this.verifyEvent = verifyEvent; return this; } public String getVerifyEvent() { return this.verifyEvent; } public NotifyBadgeCodeVerifyResultRequest setVerifyLocation(String verifyLocation) { this.verifyLocation = verifyLocation; return this; } public String getVerifyLocation() { return this.verifyLocation; } public NotifyBadgeCodeVerifyResultRequest setVerifyNo(String verifyNo) { this.verifyNo = verifyNo; return this; } public String getVerifyNo() { return this.verifyNo; } public NotifyBadgeCodeVerifyResultRequest setVerifyResult(Boolean verifyResult) { this.verifyResult = verifyResult; return this; } public Boolean getVerifyResult() { return this.verifyResult; } public NotifyBadgeCodeVerifyResultRequest setVerifyTime(String verifyTime) { this.verifyTime = verifyTime; return this; } public String getVerifyTime() { return this.verifyTime; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy