Class: Google::Apis::BigqueryreservationV1::SearchAssignmentsResponse

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/bigqueryreservation_v1/classes.rb,
lib/google/apis/bigqueryreservation_v1/representations.rb,
lib/google/apis/bigqueryreservation_v1/representations.rb

Overview

The response for ReservationService.SearchAssignments.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ SearchAssignmentsResponse

Returns a new instance of SearchAssignmentsResponse.



524
525
526
# File 'lib/google/apis/bigqueryreservation_v1/classes.rb', line 524

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#assignmentsArray<Google::Apis::BigqueryreservationV1::Assignment>

List of assignments visible to the user. Corresponds to the JSON property assignments



516
517
518
# File 'lib/google/apis/bigqueryreservation_v1/classes.rb', line 516

def assignments
  @assignments
end

#next_page_tokenString

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

Returns:

  • (String)


522
523
524
# File 'lib/google/apis/bigqueryreservation_v1/classes.rb', line 522

def next_page_token
  @next_page_token
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



529
530
531
532
# File 'lib/google/apis/bigqueryreservation_v1/classes.rb', line 529

def update!(**args)
  @assignments = args[:assignments] if args.key?(:assignments)
  @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
end