Class: WebAuthn::PublicKeyCredential::RPEntity
- Defined in:
- lib/webauthn/public_key_credential/rp_entity.rb
Instance Attribute Summary collapse
-
#id ⇒ Object
readonly
Returns the value of attribute id.
Attributes inherited from Entity
Instance Method Summary collapse
-
#initialize(id: nil, **keyword_arguments) ⇒ RPEntity
constructor
A new instance of RPEntity.
Methods included from JSONSerializer
Constructor Details
#initialize(id: nil, **keyword_arguments) ⇒ RPEntity
Returns a new instance of RPEntity.
10 11 12 13 14 |
# File 'lib/webauthn/public_key_credential/rp_entity.rb', line 10 def initialize(id: nil, **keyword_arguments) super(**keyword_arguments) @id = id end |
Instance Attribute Details
#id ⇒ Object (readonly)
Returns the value of attribute id.
8 9 10 |
# File 'lib/webauthn/public_key_credential/rp_entity.rb', line 8 def id @id end |