SendUAFResponse

public struct SendUAFResponse : Codable

A SendUAFResponse object represents a response message delivered to a relying party server.

  • The UAF response message.

    Declaration

    Swift

    public let uafResponse: String
  • Any additional contextual information that may be useful or necessary for the server to process the response message.

    Declaration

    Swift

    public let context: String?
  • Creates a new SendUAFResponse instance.

    Declaration

    Swift

    public init(uafResponse: String, context: String? = nil)

    Parameters

    uafResponse

    The UAF response message.

    context

    Any additional contextual information that may be useful or necessary for the server to process the response message.