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

com.aliyun.sdk.service.ens20171110.models.CreateApplicationResponseBody Maven / Gradle / Ivy

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

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

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

CreateApplicationResponseBody

*/ public class CreateApplicationResponseBody extends TeaModel { @com.aliyun.core.annotation.NameInMap("AppId") private String appId; @com.aliyun.core.annotation.NameInMap("RequestId") private String requestId; private CreateApplicationResponseBody(Builder builder) { this.appId = builder.appId; this.requestId = builder.requestId; } public static Builder builder() { return new Builder(); } public static CreateApplicationResponseBody create() { return builder().build(); } /** * @return appId */ public String getAppId() { return this.appId; } /** * @return requestId */ public String getRequestId() { return this.requestId; } public static final class Builder { private String appId; private String requestId; /** *

The ID of the application. This is the unique identifier of the edge application.

* * example: *

d0639abf-789a-4527-b420-031d2cd9ad9b

*/ public Builder appId(String appId) { this.appId = appId; return this; } /** *

The ID of the request.

* * example: *

CEF72CEB-54B6-4AE8-B225-F876FF7BA984

*/ public Builder requestId(String requestId) { this.requestId = requestId; return this; } public CreateApplicationResponseBody build() { return new CreateApplicationResponseBody(this); } } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy