Class: Google::Apis::DrivelabelsV2beta::GoogleAppsDriveLabelsV2betaListLabelsResponse

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

Overview

Response for listing Labels.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleAppsDriveLabelsV2betaListLabelsResponse

Returns a new instance of GoogleAppsDriveLabelsV2betaListLabelsResponse.



2815
2816
2817
# File 'lib/google/apis/drivelabels_v2beta/classes.rb', line 2815

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

Instance Attribute Details

#labelsArray<Google::Apis::DrivelabelsV2beta::GoogleAppsDriveLabelsV2betaLabel>

Labels. Corresponds to the JSON property labels



2808
2809
2810
# File 'lib/google/apis/drivelabels_v2beta/classes.rb', line 2808

def labels
  @labels
end

#next_page_tokenString

The token of the next page in the response. Corresponds to the JSON property nextPageToken

Returns:

  • (String)


2813
2814
2815
# File 'lib/google/apis/drivelabels_v2beta/classes.rb', line 2813

def next_page_token
  @next_page_token
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



2820
2821
2822
2823
# File 'lib/google/apis/drivelabels_v2beta/classes.rb', line 2820

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