Class: Google::Apis::FirebaseappcheckV1::GoogleFirebaseAppcheckV1ExchangeDebugTokenRequest
- Inherits:
-
Object
- Object
- Google::Apis::FirebaseappcheckV1::GoogleFirebaseAppcheckV1ExchangeDebugTokenRequest
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/firebaseappcheck_v1/classes.rb,
lib/google/apis/firebaseappcheck_v1/representations.rb,
lib/google/apis/firebaseappcheck_v1/representations.rb
Overview
Request message for the ExchangeDebugToken method.
Instance Attribute Summary collapse
-
#debug_token ⇒ String
Required.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleFirebaseAppcheckV1ExchangeDebugTokenRequest
constructor
A new instance of GoogleFirebaseAppcheckV1ExchangeDebugTokenRequest.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleFirebaseAppcheckV1ExchangeDebugTokenRequest
Returns a new instance of GoogleFirebaseAppcheckV1ExchangeDebugTokenRequest.
483 484 485 |
# File 'lib/google/apis/firebaseappcheck_v1/classes.rb', line 483 def initialize(**args) update!(**args) end |
Instance Attribute Details
#debug_token ⇒ String
Required. A debug token secret. This string must match a debug token secret
previously created using CreateDebugToken.
Corresponds to the JSON property debugToken
481 482 483 |
# File 'lib/google/apis/firebaseappcheck_v1/classes.rb', line 481 def debug_token @debug_token end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
488 489 490 |
# File 'lib/google/apis/firebaseappcheck_v1/classes.rb', line 488 def update!(**args) @debug_token = args[:debug_token] if args.key?(:debug_token) end |