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

com.aliyun.sdk.service.emr20210320.models.StateChangeReason Maven / Gradle / Ivy

The newest version!
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.emr20210320.models;

import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;

/**
 * {@link StateChangeReason} extends {@link TeaModel}
 *
 * 

StateChangeReason

*/ public class StateChangeReason extends TeaModel { @com.aliyun.core.annotation.NameInMap("Code") private String code; @com.aliyun.core.annotation.NameInMap("Message") private String message; private StateChangeReason(Builder builder) { this.code = builder.code; this.message = builder.message; } public static Builder builder() { return new Builder(); } public static StateChangeReason create() { return builder().build(); } /** * @return code */ public String getCode() { return this.code; } /** * @return message */ public String getMessage() { return this.message; } public static final class Builder { private String code; private String message; /** * 状态码。 */ public Builder code(String code) { this.code = code; return this; } /** * 描述信息。 */ public Builder message(String message) { this.message = message; return this; } public StateChangeReason build() { return new StateChangeReason(this); } } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy