FallbackInquiryConfiguration
public struct FallbackInquiryConfiguration : InquiryConfig
An inquiry configuration that runs against a fallback inquiry template. Fallback templates do not support conditional routing or verification.
-
Begin a fallback flow from in memory data.
Declaration
Swift
public init( fallbackTemplateData data: Data, referenceId: String? = nil, initialStepName: String? = nil, collectionDelegate: InquiryCollectionDelegate? = nil )Parameters
dataThe data object to deserialize into a fallback template.
referenceIdOptional unique id to associate with the inquiry.
initialStepNameUsed to resume flow after a canceled inquiry.
collectionDelegateUsed to return inquiry data clientside
-
Begin a fallback flow from in memory data.
Declaration
Swift
public init( fallbackTemplateUrl url: URL, referenceId: String? = nil, initialStepName: String? = nil, collectionDelegate: InquiryCollectionDelegate? = nil )Parameters
urlThe network url to fetch and deserialize into a fallback template.
referenceIdOptional unique id to associate with the inquiry.
initialStepNameUsed to resume flow after a canceled inquiry.
collectionDelegateUsed to return inquiry data clientside
View on GitHub
FallbackInquiryConfiguration Structure Reference