InteractorAssistantType
public enum InteractorAssistantType
This enum represents the type of assistant to be used in configuring an InterfaceAssisting interactor object.
-
The basic assistant type, a
DefaultInteractorAssistantassistant. This type is adequate for basic interactor requests which don’t require a model state.Declaration
Swift
case basic -
The basic assistant type for async interactors, a
DefaultAsyncInteractorAssistantassistant. This type is adequate for basic interactor requests which don’t require a model state.Declaration
Swift
case basicAsync -
This type passes a custom assistant, used for configuring more advanced interactor requests that require supplying a model or other configuration needs.
Declaration
Swift
case custom(_: any InteractorAssisting)
View on GitHub