com.aliyun.amptest20201230.models.HuichengTestGraySevenShrinkRequest 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 HuichengTestGraySevenShrinkRequest extends TeaModel {
@NameInMap("Home")
public String homeShrink;
public static HuichengTestGraySevenShrinkRequest build(java.util.Map map) throws Exception {
HuichengTestGraySevenShrinkRequest self = new HuichengTestGraySevenShrinkRequest();
return TeaModel.build(map, self);
}
public HuichengTestGraySevenShrinkRequest setHomeShrink(String homeShrink) {
this.homeShrink = homeShrink;
return this;
}
public String getHomeShrink() {
return this.homeShrink;
}
}