class Google::Apis::FileV1beta1::ListSnapshotsResponse

ListSnapshotsResponse is the result of ListSnapshotsRequest.

Attributes

next_page_token[RW]

The token you can use to retrieve the next page of results. Not returned if there are no more results in the list. Corresponds to the JSON property `nextPageToken` @return [String]

snapshots[RW]

A list of snapshots in the project for the specified instance. Corresponds to the JSON property `snapshots` @return [Array<Google::Apis::FileV1beta1::Snapshot>]

Public Class Methods

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

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

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