Skip to content

Latest commit

 

History

History
18 lines (14 loc) · 1.81 KB

FunctionIntegerInput.md

File metadata and controls

18 lines (14 loc) · 1.81 KB

FunctionIntegerInput

An integer input. You can add additional validation by defining a JSONSchema specification. See http://json-schema.org/understanding-json-schema/reference/numeric.html#numeric for more information.

Properties

Name Type Description Notes
alias list[AnyOfDAGGenericInputAliasDAGStringInputAliasDAGIntegerInputAliasDAGNumberInputAliasDAGBooleanInputAliasDAGFolderInputAliasDAGFileInputAliasDAGPathInputAliasDAGArrayInputAliasDAGJSONObjectInputAliasDAGLinkedInputAlias] A list of aliases for this input in different platforms. [optional]
annotations dict(str, str) An optional dictionary to add annotations to inputs. These annotations will be used by the client side libraries. [optional]
default int Default value to use for an input if a value was not supplied. [optional]
description str Optional description for input. [optional]
name str Input name.
required bool A field to indicate if this input is required. This input needs to be set explicitly even when a default value is provided. [optional] [default to False]
spec object An optional JSON Schema specification to validate the input value. You can use validate_spec method to validate a value against the spec. [optional]
type str [optional] [readonly] [default to 'FunctionIntegerInput']

[Back to Model list] [Back to API list] [Back to README]