class Google::Apis::BigqueryreservationV1::SearchAssignmentsResponse

The response for ReservationService.SearchAssignments.

Attributes

assignments[RW]

List of assignments visible to the user. Corresponds to the JSON property `assignments` @return [Array<Google::Apis::BigqueryreservationV1::Assignment>]

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]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/bigqueryreservation_v1/classes.rb, line 408
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_v1/classes.rb, line 413
def update!(**args)
  @assignments = args[:assignments] if args.key?(:assignments)
  @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
end