public class FunctionEnvironmentVariable extends AbstractModel
header, skipSign
Constructor and Description |
---|
FunctionEnvironmentVariable() |
FunctionEnvironmentVariable(FunctionEnvironmentVariable source)
NOTE: Any ambiguous key set via .set("AnyKey", "value") will be a shallow copy,
and any explicit key, i.e Foo, set via .setFoo("value") will be a deep copy.
|
Modifier and Type | Method and Description |
---|---|
String |
getKey()
Get 变量的名称,限制只能包含大小写字母、数字,特殊字符仅支持 @ .
|
String |
getType()
Get 变量的类型,取值有:
string:字符串类型;
json:json 对象类型。默认值为:string。
|
String |
getValue()
Get 变量的值,限制最大 5000 字节,默认值为空。
|
void |
setKey(String Key)
Set 变量的名称,限制只能包含大小写字母、数字,特殊字符仅支持 @ .
|
void |
setType(String Type)
Set 变量的类型,取值有:
string:字符串类型;
json:json 对象类型。默认值为:string。
|
void |
setValue(String Value)
Set 变量的值,限制最大 5000 字节,默认值为空。
|
void |
toMap(HashMap<String,String> map,
String prefix)
Internal implementation, normal users should not use it.
|
any, fromJsonString, getBinaryParams, GetHeader, getMultipartRequestParams, getSkipSign, isStream, set, SetHeader, setParamArrayObj, setParamArraySimple, setParamObj, setParamSimple, setSkipSign, toJsonString
public FunctionEnvironmentVariable()
public FunctionEnvironmentVariable(FunctionEnvironmentVariable source)
public String getKey()
public void setKey(String Key)
Key
- 变量的名称,限制只能包含大小写字母、数字,特殊字符仅支持 @ . - _ ,最大 64 个字节,不支持重复。public String getValue()
public void setValue(String Value)
Value
- 变量的值,限制最大 5000 字节,默认值为空。public String getType()
public void setType(String Type)
Type
- 变量的类型,取值有:
Copyright © 2024. All rights reserved.