com.aliyun.amptest20201230.models.HuichengTestGrayTenShrinkRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of amptest20201230 Show documentation
Show all versions of amptest20201230 Show documentation
Alibaba Cloud AmpTest (20201230) SDK for Java
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.amptest20201230.models;
import com.aliyun.tea.*;
public class HuichengTestGrayTenShrinkRequest extends TeaModel {
@NameInMap("Home")
public String homeShrink;
public static HuichengTestGrayTenShrinkRequest build(java.util.Map map) throws Exception {
HuichengTestGrayTenShrinkRequest self = new HuichengTestGrayTenShrinkRequest();
return TeaModel.build(map, self);
}
public HuichengTestGrayTenShrinkRequest setHomeShrink(String homeShrink) {
this.homeShrink = homeShrink;
return this;
}
public String getHomeShrink() {
return this.homeShrink;
}
}