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

com.aliyun.dingtalkyida_1_0.models.ValidateApplicationServiceOrderUpgradeResponseBody Maven / Gradle / Ivy

// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.dingtalkyida_1_0.models;

import com.aliyun.tea.*;

public class ValidateApplicationServiceOrderUpgradeResponseBody extends TeaModel {
    // message
    @NameInMap("message")
    public String message;

    // status
    @NameInMap("status")
    public Integer status;

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

    public ValidateApplicationServiceOrderUpgradeResponseBody setMessage(String message) {
        this.message = message;
        return this;
    }
    public String getMessage() {
        return this.message;
    }

    public ValidateApplicationServiceOrderUpgradeResponseBody setStatus(Integer status) {
        this.status = status;
        return this;
    }
    public Integer getStatus() {
        return this.status;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy