BinaryResponse

public protocol BinaryResponse : Decodable

A response with binary data.

  • The gzipped data.

    Declaration

    Swift

    var data: Data { get }
  • Create a new instance with the data.

    Declaration

    Swift

    static func from(data: Data) -> Self

    Parameters

    data

    The data for the response.