GetUAFRequest

public struct GetUAFRequest : Codable

A GetUAFRequest object represents a request message sent to a relying party server.

  • The type of the UAF request message desired.

    Declaration

    Swift

    public let operation: Operation
  • Any additional contextual information that may be useful or necessary for the server to generate the correct request message.

    Declaration

    Swift

    public let context: String
  • This property can include the previous UAF request to assist the server in locating any state that should be re-associated with a new request message, should one be issued.

    Declaration

    Swift

    public let previousRequest: String?
  • Creates a new request instance.

    Declaration

    Swift

    public init(operation: Operation, context: String, previousRequest: String? = nil)

    Parameters

    operation

    The type of the UAF request message desired.

    context

    Any additional contextual information that may be useful or necessary for the server to generate the correct request message.

    previousRequest

    The previous UAF request.