Instance Propertyswift-openapi-runtime 1.6.0OpenAPIRuntime
converter
A converter for encoding/decoding data.
UniversalClient.swift:33This declaration is gated by at least one @_spi attribute.
let converter: Converter
Other members in extension
Type members
Show system interfaces (1)
Hide system interfaces
Instance members
Show system interfaces (4)
Hide system interfaces
var middlewares: [any ClientMiddleware]
The middlewares to be invoked before the transport.
let serverURL: URL
The URL of the server, used as the base URL for requests made by the client.
var transport: any ClientTransport
A type capable of sending HTTP requests and receiving HTTP responses.
func send<OperationInput, OperationOutput>(input: OperationInput, forOperation: String, serializer: (OperationInput) throws -> (HTTPRequest, HTTPBody?), deserializer: (HTTPResponse, HTTPBody?) async throws -> OperationOutput
) async throws -> OperationOutput Performs the HTTP operation.