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

com.aliyun.sdk.service.cloudapi20160714.models.CreateAppResponseBody Maven / Gradle / Ivy

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

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

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

CreateAppResponseBody

*/ public class CreateAppResponseBody extends TeaModel { @com.aliyun.core.annotation.NameInMap("AppId") private Long appId; @com.aliyun.core.annotation.NameInMap("RequestId") private String requestId; @com.aliyun.core.annotation.NameInMap("TagStatus") private Boolean tagStatus; private CreateAppResponseBody(Builder builder) { this.appId = builder.appId; this.requestId = builder.requestId; this.tagStatus = builder.tagStatus; } public static Builder builder() { return new Builder(); } public static CreateAppResponseBody create() { return builder().build(); } /** * @return appId */ public Long getAppId() { return this.appId; } /** * @return requestId */ public String getRequestId() { return this.requestId; } /** * @return tagStatus */ public Boolean getTagStatus() { return this.tagStatus; } public static final class Builder { private Long appId; private String requestId; private Boolean tagStatus; /** * The unique ID of the application. */ public Builder appId(Long appId) { this.appId = appId; return this; } /** * The ID of the request. */ public Builder requestId(String requestId) { this.requestId = requestId; return this; } /** * Indicates whether the tag exists. If the value is **true**, the tag exists. If the value is **false**, the tag does not exist. */ public Builder tagStatus(Boolean tagStatus) { this.tagStatus = tagStatus; return this; } public CreateAppResponseBody build() { return new CreateAppResponseBody(this); } } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy