com.aliyun.eas20210701.models.DevelopServiceRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of eas20210701 Show documentation
Show all versions of eas20210701 Show documentation
Alibaba Cloud eas (20210701) SDK for Java
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.eas20210701.models;
import com.aliyun.tea.*;
public class DevelopServiceRequest extends TeaModel {
/**
* Specifies whether to exit development mode. Valid values:
*
* - true: exits development mode.
* - false (default): enters development mode.
*
*
* example:
* true
*/
@NameInMap("Exit")
public String exit;
public static DevelopServiceRequest build(java.util.Map map) throws Exception {
DevelopServiceRequest self = new DevelopServiceRequest();
return TeaModel.build(map, self);
}
public DevelopServiceRequest setExit(String exit) {
this.exit = exit;
return this;
}
public String getExit() {
return this.exit;
}
}