com.aliyun.dingtalkbadge_1_0.models.DecodeBadgeCodeResponseBody 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.dingtalkbadge_1_0.models;
import com.aliyun.tea.*;
public class DecodeBadgeCodeResponseBody extends TeaModel {
/**
* This parameter is required.
*
* example:
* 2512345678
*/
@NameInMap("alipayCode")
public String alipayCode;
/**
* example:
* codeIdxxxxx
*/
@NameInMap("codeId")
public String codeId;
/**
* example:
* DT_VISITOR
*/
@NameInMap("codeIdentity")
public String codeIdentity;
/**
* This parameter is required.
*
* example:
* PURE_IDENTIFY_CODE
*/
@NameInMap("codeType")
public String codeType;
/**
* This parameter is required.
*
* example:
* ding1234
*/
@NameInMap("corpId")
public String corpId;
/**
* example:
* {"authRules":{}}
*/
@NameInMap("extInfo")
public String extInfo;
/**
* example:
* xxxx
*/
@NameInMap("outBizId")
public String outBizId;
/**
* This parameter is required.
*
* example:
* INTERNAL_STAFF
*/
@NameInMap("userCorpRelationType")
public String userCorpRelationType;
/**
* example:
* staffId
*/
@NameInMap("userId")
public String userId;
public static DecodeBadgeCodeResponseBody build(java.util.Map map) throws Exception {
DecodeBadgeCodeResponseBody self = new DecodeBadgeCodeResponseBody();
return TeaModel.build(map, self);
}
public DecodeBadgeCodeResponseBody setAlipayCode(String alipayCode) {
this.alipayCode = alipayCode;
return this;
}
public String getAlipayCode() {
return this.alipayCode;
}
public DecodeBadgeCodeResponseBody setCodeId(String codeId) {
this.codeId = codeId;
return this;
}
public String getCodeId() {
return this.codeId;
}
public DecodeBadgeCodeResponseBody setCodeIdentity(String codeIdentity) {
this.codeIdentity = codeIdentity;
return this;
}
public String getCodeIdentity() {
return this.codeIdentity;
}
public DecodeBadgeCodeResponseBody setCodeType(String codeType) {
this.codeType = codeType;
return this;
}
public String getCodeType() {
return this.codeType;
}
public DecodeBadgeCodeResponseBody setCorpId(String corpId) {
this.corpId = corpId;
return this;
}
public String getCorpId() {
return this.corpId;
}
public DecodeBadgeCodeResponseBody setExtInfo(String extInfo) {
this.extInfo = extInfo;
return this;
}
public String getExtInfo() {
return this.extInfo;
}
public DecodeBadgeCodeResponseBody setOutBizId(String outBizId) {
this.outBizId = outBizId;
return this;
}
public String getOutBizId() {
return this.outBizId;
}
public DecodeBadgeCodeResponseBody setUserCorpRelationType(String userCorpRelationType) {
this.userCorpRelationType = userCorpRelationType;
return this;
}
public String getUserCorpRelationType() {
return this.userCorpRelationType;
}
public DecodeBadgeCodeResponseBody setUserId(String userId) {
this.userId = userId;
return this;
}
public String getUserId() {
return this.userId;
}
}