class Google::Apis::FirebaserulesV1::ListRulesetsResponse

The response for FirebaseRulesService.ListRulesets.

Attributes

next_page_token[RW]

The pagination token to retrieve the next page of results. If the value is empty, no further results remain. Corresponds to the JSON property `nextPageToken` @return [String]

rulesets[RW]

List of `Ruleset` instances. Corresponds to the JSON property `rulesets` @return [Array<Google::Apis::FirebaserulesV1::Ruleset>]

Public Class Methods

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

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/firebaserules_v1/classes.rb, line 330
def update!(**args)
  @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
  @rulesets = args[:rulesets] if args.key?(:rulesets)
end