com.aliyuncs.miniapplcdp.model.v20200113.GetEnvironmentResponse Maven / Gradle / Ivy
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.miniapplcdp.model.v20200113;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.miniapplcdp.transform.v20200113.GetEnvironmentResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class GetEnvironmentResponse extends AcsResponse {
private String requestId;
private Data data;
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public Data getData() {
return this.data;
}
public void setData(Data data) {
this.data = data;
}
public static class Data {
private String accountOpsEndpoint;
private String appId;
private String currentPublishId;
private String endpoint;
private String envId;
private String createTime;
private String modifiedTime;
private String publishingId;
private String envType;
public String getAccountOpsEndpoint() {
return this.accountOpsEndpoint;
}
public void setAccountOpsEndpoint(String accountOpsEndpoint) {
this.accountOpsEndpoint = accountOpsEndpoint;
}
public String getAppId() {
return this.appId;
}
public void setAppId(String appId) {
this.appId = appId;
}
public String getCurrentPublishId() {
return this.currentPublishId;
}
public void setCurrentPublishId(String currentPublishId) {
this.currentPublishId = currentPublishId;
}
public String getEndpoint() {
return this.endpoint;
}
public void setEndpoint(String endpoint) {
this.endpoint = endpoint;
}
public String getEnvId() {
return this.envId;
}
public void setEnvId(String envId) {
this.envId = envId;
}
public String getCreateTime() {
return this.createTime;
}
public void setCreateTime(String createTime) {
this.createTime = createTime;
}
public String getModifiedTime() {
return this.modifiedTime;
}
public void setModifiedTime(String modifiedTime) {
this.modifiedTime = modifiedTime;
}
public String getPublishingId() {
return this.publishingId;
}
public void setPublishingId(String publishingId) {
this.publishingId = publishingId;
}
public String getEnvType() {
return this.envType;
}
public void setEnvType(String envType) {
this.envType = envType;
}
}
@Override
public GetEnvironmentResponse getInstance(UnmarshallerContext context) {
return GetEnvironmentResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy