mode property
Specifies whether the argument is input or output.
Can be set for procedures only.
Optional. Possible string values are:
- "MODE_UNSPECIFIED" : Default value.
- "IN" : The argument is input-only.
- "OUT" : The argument is output-only.
- "INOUT" : The argument is both an input and an output.
Implementation
core.String? mode;