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

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

There is a newer version: 2.1.30
Show newest version
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.dingtalkfinance_1_0.models;

import com.aliyun.tea.*;

public class SaveCorpPayCodeResponseBody extends TeaModel {
    // 码标识
    @NameInMap("codeIdentity")
    public String codeIdentity;

    // 开通的企业ID
    @NameInMap("corpId")
    public String corpId;

    // 扩展参数
    @NameInMap("extInfo")
    public java.util.Map extInfo;

    // 状态
    @NameInMap("status")
    public String status;

    public static SaveCorpPayCodeResponseBody build(java.util.Map map) throws Exception {
        SaveCorpPayCodeResponseBody self = new SaveCorpPayCodeResponseBody();
        return TeaModel.build(map, self);
    }

    public SaveCorpPayCodeResponseBody setCodeIdentity(String codeIdentity) {
        this.codeIdentity = codeIdentity;
        return this;
    }
    public String getCodeIdentity() {
        return this.codeIdentity;
    }

    public SaveCorpPayCodeResponseBody setCorpId(String corpId) {
        this.corpId = corpId;
        return this;
    }
    public String getCorpId() {
        return this.corpId;
    }

    public SaveCorpPayCodeResponseBody setExtInfo(java.util.Map extInfo) {
        this.extInfo = extInfo;
        return this;
    }
    public java.util.Map getExtInfo() {
        return this.extInfo;
    }

    public SaveCorpPayCodeResponseBody setStatus(String status) {
        this.status = status;
        return this;
    }
    public String getStatus() {
        return this.status;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy