ResponsePayload
public struct ResponsePayload : Codable
Response Payload native struct.
-
The response payload ID. Copied from the incoming request.
Declaration
Swift
public var id: String
-
The device ID that processed the request.
Declaration
Swift
public var deviceId: String
-
The actual response to be returned.
Declaration
Swift
public var response: EosioReferenceAuthenticatorSignatureProvider.Response
-
The current response, in Hex format.
Declaration
Swift
public var toHex: String? { get }
-
Declaration
Swift
public init()
-
Initialize a response payload from a hexadecimal
String
representation.Declaration
Swift
public init(hex: String) throws
Parameters
hex
Hexadecimal
String
representation of aResponsePayload
. -
Declaration
Swift
public init(id: String, transactionSignatureResponse: EosioTransactionSignatureResponse)