Structures
The following structures are available globally.
-
A struct that represents a custom HTTP cookie.
See moreDeclaration
Swift
public struct CustomHTTPCookie : Codable, Sendable
-
Struct for a Response. A Response represents a response received from a network request.
- property data: The data received from the network request.
- property response: The URLResponse received from the network request.
Declaration
Swift
public struct Response
-
Struct for a Setup. A Setup represents the setup of a module in the application.
- property workflow: The workflow of the application.
- property context: The shared context of the application.
- property logger: The logger used in the application.
- property httpClient: The HTTP client used in the application.
- property config: The configuration for the module.
Declaration
Swift
public struct Setup<ModuleConfig> : Sendable where ModuleConfig : Sendable