class Google::Apis::FirebaseappcheckV1beta::GoogleFirebaseAppcheckV1betaPublicJwk
A JWK as specified by [section 4 of RFC 7517](tools.ietf.org/html/ rfc7517#section-4) and [section 6.3.1 of RFC 7518](tools.ietf.org/html/ rfc7518#section-6.3.1).
Attributes
See [section 4.4 of RFC 7517](tools.ietf.org/html/rfc7517#section-4.4). Corresponds to the JSON property `alg` @return [String]
See [section 6.3.1.2 of RFC 7518](tools.ietf.org/html/rfc7518#section- 6.3.1.2). Corresponds to the JSON property `e` @return [String]
See [section 4.5 of RFC 7517](tools.ietf.org/html/rfc7517#section-4.5). Corresponds to the JSON property `kid` @return [String]
See [section 4.1 of RFC 7517](tools.ietf.org/html/rfc7517#section-4.1). Corresponds to the JSON property `kty` @return [String]
See [section 6.3.1.1 of RFC 7518](tools.ietf.org/html/rfc7518#section- 6.3.1.1). Corresponds to the JSON property `n` @return [String]
See [section 4.2 of RFC 7517](tools.ietf.org/html/rfc7517#section-4.2). Corresponds to the JSON property `use` @return [String]
Public Class Methods
# File lib/google/apis/firebaseappcheck_v1beta/classes.rb, line 649 def initialize(**args) update!(**args) end
Public Instance Methods
Update properties of this object
# File lib/google/apis/firebaseappcheck_v1beta/classes.rb, line 654 def update!(**args) @alg = args[:alg] if args.key?(:alg) @e = args[:e] if args.key?(:e) @kid = args[:kid] if args.key?(:kid) @kty = args[:kty] if args.key?(:kty) @n = args[:n] if args.key?(:n) @use = args[:use] if args.key?(:use) end