class Google::Apis::FirebaseappcheckV1beta::GoogleFirebaseAppcheckV1betaListDebugTokensResponse
Response message for the ListDebugTokens method.
Attributes
debug_tokens[RW]
The DebugTokens retrieved. Corresponds to the JSON property `debugTokens` @return [Array<Google::Apis::FirebaseappcheckV1beta::GoogleFirebaseAppcheckV1betaDebugToken>]
next_page_token[RW]
If the result list is too large to fit in a single response, then a token is returned. If the string is empty or omitted, then this response is the last page of results. This token can be used in a subsequent call to ListDebugTokens to find the next group of DebugTokens. Page tokens are short- lived and should not be persisted. Corresponds to the JSON property `nextPageToken` @return [String]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/firebaseappcheck_v1beta/classes.rb, line 571 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 576 def update!(**args) @debug_tokens = args[:debug_tokens] if args.key?(:debug_tokens) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) end