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

com.aliyun.dingtalkfinance_1_0.models.SaveCorpPayCodeRequest 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 SaveCorpPayCodeRequest extends TeaModel {
    // 码标识,由钉钉颁发
    @NameInMap("codeIdentity")
    public String codeIdentity;

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

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

    // 状态,OPEN或CLOSED
    @NameInMap("status")
    public String status;

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

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

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

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

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

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy