gravitino.api.function.function_param.FunctionParam¶
- class gravitino.api.function.function_param.FunctionParam¶
Bases:
ABCRepresents a function parameter.
- __init__()¶
Methods
__init__()comment()Returns the optional comment of the parameter, None if not provided.
Returns the data type of the parameter.
Returns the default value of the parameter if provided, otherwise None.
name()Returns the name of the parameter.
- comment() str | None¶
Returns the optional comment of the parameter, None if not provided.
- default_value() Expression | None¶
Returns the default value of the parameter if provided, otherwise None.
- abstract name() str¶
Returns the name of the parameter.