NoahFormNextStep

data class NoahFormNextStep(val stepId: String, val stepType: NoahFormNextStepType, val schema: Map<String, Any>? = null)

Next step in a Noah multi-step form flow.

Per connect-api FormNextStep, schema is required when nextStep is present. We keep it optional in the SDK to be defensive against missing fields and avoid hard-decode failures.

Constructors

Link copied to clipboard
constructor(stepId: String, stepType: NoahFormNextStepType, schema: Map<String, Any>? = null)

Properties

Link copied to clipboard
val schema: Map<String, Any>? = null
Link copied to clipboard
Link copied to clipboard