Interface TextMessageVariable
-
public interface TextMessageVariable
Generated by: JavaInterface
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.String
getKey()
A unique key identifying the variable.java.lang.String
getValue()
The value of the variable.void
setKey(java.lang.String val)
void
setValue(java.lang.String val)
-
-
-
Method Detail
-
setValue
void setValue(java.lang.String val)
- Parameters:
val
- The value of the variable.- Since:
- ARI_1_5_0
-
setKey
void setKey(java.lang.String val)
- Parameters:
val
- A unique key identifying the variable.- Since:
- ARI_1_5_0
-
getKey
java.lang.String getKey()
A unique key identifying the variable.- Returns:
- String
- Since:
- ARI_1_5_0
-
getValue
java.lang.String getValue()
The value of the variable.- Returns:
- String
- Since:
- ARI_1_5_0
-
-