Requests
-
A lightweight description of an App Store Connect request before it is turned into a
See moreURLRequest.Declaration
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 -
A protocol for request bodies that should be JSON encoded before sending.
See moreDeclaration
Swift
public protocol RequestBody : Encodable, Sendable -
A parameter type that can be converted into the query key expected by an endpoint.
See moreDeclaration
Swift
public protocol EndpointParameter : Sendable
-
A parameter whose associated value becomes the query value.
See moreDeclaration
Swift
public protocol AssociatedValueParameter : EndpointParameter -
A string backed value that can be encoded into a query parameter.
See moreDeclaration
Swift
public protocol ParameterValue
-
Parameter for selecting which fields to return for included related resources.
Declaration
Swift
public protocol FieldParameter : AssociatedValueParameter -
Parameter describing which attributes, relationships, or IDs to filter by.
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 describing how the response should be sorted.
See moreDeclaration
Swift
public protocol SortParameter : EndpointParameter -
Parameter describing a limit value for the response.
See moreDeclaration
Swift
public protocol LimitParameter : EndpointParameter
View on GitHub
Requests Reference