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

com.aliyun.dingtalkcontact_1_0.models.PushVerifyEventRequest 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.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; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy