InteractorRequestConfiguring
public protocol InteractorRequestConfiguring : Sendable
This protocol represents an Interactor configuration model which defines a request to perform an action.
-
An enum which defines types of actions for a particular Interactor.
Declaration
Swift
associatedtype ActionType : InteractorRequestActionTypeable
-
The type of data that is returned from a datasource.
Declaration
Swift
associatedtype ResultData : Hashable, Sendable
-
The type of action to request being performed.
Declaration
Swift
var action: ActionType { get set }