class WebAuthn::PublicKeyCredential

def initialize(

def initialize(
  type:,
  id:,
  raw_id:,
  response:,
  authenticator_attachment: nil,
  client_extension_outputs: {},
  relying_party: WebAuthn.configuration.relying_party
)
  @type = type
  @id = id
  @raw_id = raw_id
  @client_extension_outputs = client_extension_outputs
  @authenticator_attachment = authenticator_attachment
  @response = response
  @relying_party = relying_party
end