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

com.aliyun.sas20181203.models.DescribeWebLockStatusRequest Maven / Gradle / Ivy

// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sas20181203.models;

import com.aliyun.tea.*;

public class DescribeWebLockStatusRequest extends TeaModel {
    /**
     * 

The ID of the request source. Set the value to sas.

*/ @NameInMap("From") public String from; /** *

The language of the content within the request and response. Default value: **zh**. Valid values:

*
*

* **zh**: Chinese

*

* **en**: English

*/ @NameInMap("Lang") public String lang; /** *

The source IP address of the request.

*/ @NameInMap("SourceIp") public String sourceIp; public static DescribeWebLockStatusRequest build(java.util.Map map) throws Exception { DescribeWebLockStatusRequest self = new DescribeWebLockStatusRequest(); return TeaModel.build(map, self); } public DescribeWebLockStatusRequest setFrom(String from) { this.from = from; return this; } public String getFrom() { return this.from; } public DescribeWebLockStatusRequest setLang(String lang) { this.lang = lang; return this; } public String getLang() { return this.lang; } public DescribeWebLockStatusRequest setSourceIp(String sourceIp) { this.sourceIp = sourceIp; return this; } public String getSourceIp() { return this.sourceIp; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy