interface InputStep {
    allow_dependency_failure?: boolean;
    branches?: string | string[];
    depends_on?: null | string | (string | DependsOn)[];
    fields: Field[];
    id?: string;
    identifier?: string;
    if?: string;
    input: string;
    key?: string;
    label?: string;
    name?: string;
    prompt?: string;
}

Properties

allow_dependency_failure?: boolean
branches?: string | string[]
depends_on?: null | string | (string | DependsOn)[]
fields: Field[]
id?: string
identifier?: string
if?: string
input: string
key?: string
label?: string
name?: string
prompt?: string