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

com.aliyun.dingtalkbadge_1_0.models.DecodeBadgeCodeResponseBody 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 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; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy