com.aliyun.devs20230714.models.CreatePipelineTemplateRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of devs20230714 Show documentation
Show all versions of devs20230714 Show documentation
Alibaba Cloud Devs (20230714) SDK for Java
The newest version!
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.devs20230714.models;
import com.aliyun.tea.*;
public class CreatePipelineTemplateRequest extends TeaModel {
@NameInMap("body")
public PipelineTemplate body;
public static CreatePipelineTemplateRequest build(java.util.Map map) throws Exception {
CreatePipelineTemplateRequest self = new CreatePipelineTemplateRequest();
return TeaModel.build(map, self);
}
public CreatePipelineTemplateRequest setBody(PipelineTemplate body) {
this.body = body;
return this;
}
public PipelineTemplate getBody() {
return this.body;
}
}