![JAR search and dependency download from the Maven repository](/logo.png)
com.aliyun.dingtalkcontract_1_0.models.EsignQueryIdentityByTicketRequest 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.dingtalkcontract_1_0.models;
import com.aliyun.tea.*;
public class EsignQueryIdentityByTicketRequest extends TeaModel {
/**
* This parameter is required.
*
* example:
* dingd0c871e2dfc941a34ac5d6980864d335
*/
@NameInMap("corpId")
public String corpId;
@NameInMap("extension")
public java.util.Map extension;
/**
* This parameter is required.
*
* example:
* feb4b8e5-d6d9-4d22-a6b8-c8e26823a73a
*/
@NameInMap("ticket")
public String ticket;
public static EsignQueryIdentityByTicketRequest build(java.util.Map map) throws Exception {
EsignQueryIdentityByTicketRequest self = new EsignQueryIdentityByTicketRequest();
return TeaModel.build(map, self);
}
public EsignQueryIdentityByTicketRequest setCorpId(String corpId) {
this.corpId = corpId;
return this;
}
public String getCorpId() {
return this.corpId;
}
public EsignQueryIdentityByTicketRequest setExtension(java.util.Map extension) {
this.extension = extension;
return this;
}
public java.util.Map getExtension() {
return this.extension;
}
public EsignQueryIdentityByTicketRequest setTicket(String ticket) {
this.ticket = ticket;
return this;
}
public String getTicket() {
return this.ticket;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy