com.aliyun.cs20151215.models.CreateTemplateResponseBody Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of cs20151215 Show documentation
Show all versions of cs20151215 Show documentation
Alibaba Cloud CS (20151215) SDK for Java
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.cs20151215.models;
import com.aliyun.tea.*;
public class CreateTemplateResponseBody extends TeaModel {
/**
* The ID of the orchestration template.
*
* example:
* ba1fe77b-b01e-4640-b77e-8f1b80e3e3cf
*/
@NameInMap("template_id")
public String templateId;
public static CreateTemplateResponseBody build(java.util.Map map) throws Exception {
CreateTemplateResponseBody self = new CreateTemplateResponseBody();
return TeaModel.build(map, self);
}
public CreateTemplateResponseBody setTemplateId(String templateId) {
this.templateId = templateId;
return this;
}
public String getTemplateId() {
return this.templateId;
}
}