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

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

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

import com.aliyun.tea.*;

public class ReceiveFunctionTrialRewardByAliUidRequest extends TeaModel {
    /**
     * 

The name of the feature for which you want to apply for a free trial. Valid values:

*
    *
  • trail_honeypot_reward: cloud honeypot
  • *
  • trail_file_detect_api_reward: SDK for malicious file detection
  • *
* * example: *

trail_honeypot_reward

*/ @NameInMap("FunctionName") public String functionName; /** *

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

*
    *
  • zh: Chinese
  • *
  • en: English
  • *
* * example: *

zh

*/ @NameInMap("Lang") public String lang; public static ReceiveFunctionTrialRewardByAliUidRequest build(java.util.Map map) throws Exception { ReceiveFunctionTrialRewardByAliUidRequest self = new ReceiveFunctionTrialRewardByAliUidRequest(); return TeaModel.build(map, self); } public ReceiveFunctionTrialRewardByAliUidRequest setFunctionName(String functionName) { this.functionName = functionName; return this; } public String getFunctionName() { return this.functionName; } public ReceiveFunctionTrialRewardByAliUidRequest setLang(String lang) { this.lang = lang; return this; } public String getLang() { return this.lang; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy