All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.aliyun.eas20210701.models.DevelopServiceRequest Maven / Gradle / Ivy

There is a newer version: 6.0.0
Show newest version
// 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; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy