class Google::Apis::BigqueryreservationV1beta1::ListReservationsResponse

The response for ReservationService.ListReservations.

Attributes

next_page_token[RW]

Token to retrieve the next page of results, or empty if there are no more results in the list. Corresponds to the JSON property `nextPageToken` @return [String]

reservations[RW]

List of reservations visible to the user. Corresponds to the JSON property `reservations` @return [Array<Google::Apis::BigqueryreservationV1beta1::Reservation>]

Public Class Methods

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

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

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