Requests
-
A description of a request. This will internally be mapped to a real URL request.
See moreDeclaration
Swift
public struct Request<ResponseType, ErrorResponseType> : Sendable -
HTTP request methods
Documentation borrowed from: https://developer.mozilla.org/en-US/docs/Web/HTTP/Methods
See moreDeclaration
Swift
public enum HTTPMethod : String, Sendable -
Parameter for an endpoint
See moreDeclaration
Swift
public protocol EndpointParameter : Sendable
-
Parameter with an associated (string) value.
See moreDeclaration
Swift
public protocol AssociatedValueParameter : EndpointParameter -
The value of a parameter.
See moreDeclaration
Swift
public protocol ParameterValue
-
Parameter for selecting which fields to return for included related types.
Declaration
Swift
public protocol FieldParameter : AssociatedValueParameter -
Parameter for by which attributes, relationships, and IDs to filter.
Declaration
Swift
public protocol FilterParameter : AssociatedValueParameter -
Parameter for which relationship data to include in the response.
Declaration
Swift
public protocol IncludeParameter : EndpointParameter -
Parameter for including/excluding where a value exists.
See moreDeclaration
Swift
public protocol ExistParameter : EndpointParameter -
Parameter for by which attributes to sort.
See moreDeclaration
Swift
public protocol SortParameter : EndpointParameter -
Parameter for number of resources to return.
See moreDeclaration
Swift
public protocol LimitParameter : EndpointParameter
View on GitHub
Requests Reference