SignedExchangeInfo

@Serializable
data class SignedExchangeInfo(val outerResponse: Network.Response, val hasExtraInfo: Boolean, val header: Network.SignedExchangeHeader? = null, val securityDetails: Network.SecurityDetails? = null, val errors: List<Network.SignedExchangeError>? = null)

Information about a signed exchange response.

Constructors

Link copied to clipboard
constructor(outerResponse: Network.Response, hasExtraInfo: Boolean, header: Network.SignedExchangeHeader? = null, securityDetails: Network.SecurityDetails? = null, errors: List<Network.SignedExchangeError>? = null)

Properties

Link copied to clipboard

Errors occurred while handling the signed exchange.

Link copied to clipboard

Whether network response for the signed exchange was accompanied by extra headers.

Link copied to clipboard

Information about the signed exchange header.

Link copied to clipboard

The outer response of signed HTTP exchange which was received from network.

Link copied to clipboard

Security details for the signed exchange header.