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

alg[RW]

See [section 4.4 of RFC 7517](tools.ietf.org/html/rfc7517#section-4.4). Corresponds to the JSON property `alg` @return [String]

e[RW]

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]

kid[RW]

See [section 4.5 of RFC 7517](tools.ietf.org/html/rfc7517#section-4.5). Corresponds to the JSON property `kid` @return [String]

kty[RW]

See [section 4.1 of RFC 7517](tools.ietf.org/html/rfc7517#section-4.1). Corresponds to the JSON property `kty` @return [String]

n[RW]

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]

use[RW]

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

new(**args) click to toggle source
# File lib/google/apis/firebaseappcheck_v1beta/classes.rb, line 649
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

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