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

com.aliyun.dingtalkfinance_1_0.models.NotifyVerifyResultRequest Maven / Gradle / Ivy

// 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 {
    // 企业ID
    @NameInMap("corpId")
    public String corpId;

    // 码值
    @NameInMap("payCode")
    public String payCode;

    // 备注信息
    @NameInMap("remark")
    public String remark;

    // 用户和企业的关系类型,区分内部员工,外部联系人,无关系普通用户
    @NameInMap("userCorpRelationType")
    public String userCorpRelationType;

    // 用户身份标识
    @NameInMap("userIdentity")
    public String userIdentity;

    // 验证事件,长度不超过8个中文
    @NameInMap("verifyEvent")
    public String verifyEvent;

    // 验证地点,调用时请务必传入,以便生成工牌使用记录
    @NameInMap("verifyLocation")
    public String verifyLocation;

    // 验证流水号,长度不超过32位,用户下唯一,调用时请务必传入,以便生成工牌使用记录
    @NameInMap("verifyNo")
    public String verifyNo;

    // 验证结果
    @NameInMap("verifyResult")
    public Boolean verifyResult;

    // 验证时间
    @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 - 2024 Weber Informatics LLC | Privacy Policy