public class Base64EncodedTriggerRule extends AbstractModel
header, skipSign| Constructor and Description | 
|---|
| Base64EncodedTriggerRule() | 
| Base64EncodedTriggerRule(Base64EncodedTriggerRule 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 | getName()Get Header for triggering encoding. | 
| String[] | getValue()Get Array of header values that can trigger the encoding. | 
| void | setName(String Name)Set Header for triggering encoding. | 
| void | setValue(String[] Value)Set Array of header values that can trigger the encoding. | 
| void | toMap(HashMap<String,String> map,
     String prefix)Internal implementation, normal users should not use it. | 
any, fromJsonString, getBinaryParams, GetHeader, getMultipartRequestParams, getSkipSign, set, SetHeader, setParamArrayObj, setParamArraySimple, setParamObj, setParamSimple, setSkipSign, toJsonStringpublic Base64EncodedTriggerRule()
public Base64EncodedTriggerRule(Base64EncodedTriggerRule source)
public String getName()
public void setName(String Name)
Name - Header for triggering encoding. Valid values are `Accept` and `Content_Type`, corresponding to the `Accept` and `Content-Type` headers in the data stream request, respectively.public String[] getValue()
public void setValue(String[] Value)
Value - Array of header values that can trigger the encoding. Each element in the array can be up to 40 characters, including digits, letters, and special characters (`.`, `+`, `*`, `-`, `/`, and `_`). 
For example, [
    "application/x-vpeg005",
    "application/xhtml+xml",
    "application/vnd.ms-project",
    "application/vnd.rn-rn_music_package"
] are valid.Copyright © 2024. All rights reserved.