Structures

The following structures are available globally.

  • Creates a url-encoded query string to be set as or appended to any existing URL query string or set as the HTTP body of the URL request. Whether the query string is set or appended to any existing URL query string or set as the HTTP body depends on the destination of the encoding.

    The Content-Type HTTP header field of an encoded request with HTTP body is set to application/x-www-form-urlencoded; charset=utf-8.

    There is no published specification for how to encode collection types. By default the convention of appending [] to the key for array values (foo[]=1&foo[]=2), and appending the key surrounded by square brackets for nested dictionary values (foo[bar]=baz) is used. Optionally, ArrayEncoding can be used to omit the square brackets appended to array keys.

    BoolEncoding can be used to configure how boolean values are encoded. The default behavior is to encode true as 1 and false as 0.

    See more

    Declaration

    Swift

    public struct URLEncoding : ParameterEncoding
  • Uses JSONSerialization to create a JSON representation of the parameters object, which is set as the body of the request. The Content-Type HTTP header field of an encoded request is set to application/json.

    See more

    Declaration

    Swift

    public struct JSONEncoding : ParameterEncoding
  • Uses PropertyListSerialization to create a plist representation of the parameters object, according to the associated format and write options values, which is set as the body of the request. The Content-Type HTTP header field of an encoded request is set to application/x-plist.

    See more

    Declaration

    Swift

    public struct PropertyListEncoding : ParameterEncoding
  • Used to store all data associated with an non-serialized response of a data or upload request.

    See more

    Declaration

    Swift

    public struct DefaultDataResponse
  • Used to store all data associated with a serialized response of a data or upload request.

    See more

    Declaration

    Swift

    public struct DataResponse<Value>
  • Used to store all data associated with an non-serialized response of a download request.

    See more

    Declaration

    Swift

    public struct DefaultDownloadResponse
  • Used to store all data associated with a serialized response of a download request.

    See more

    Declaration

    Swift

    public struct DownloadResponse<Value>
  • Responsible for computing the timing metrics for the complete lifecycle of a Request.

    See more

    Declaration

    Swift

    public struct Timeline