class Google::Apis::FirebasestorageV1beta::ListBucketsResponse

The response returned by `ListBuckets`.

Attributes

buckets[RW]

The list of linked buckets. Corresponds to the JSON property `buckets` @return [Array<Google::Apis::FirebasestorageV1beta::Bucket>]

next_page_token[RW]

A token that can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. Corresponds to the JSON property `nextPageToken` @return [String]

Public Class Methods

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

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

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