Class: Google::Apis::ApigeeV1::GoogleCloudApigeeV1ListAppsResponse

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

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudApigeeV1ListAppsResponse

Returns a new instance of GoogleCloudApigeeV1ListAppsResponse.



5875
5876
5877
# File 'lib/google/apis/apigee_v1/classes.rb', line 5875

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

Instance Attribute Details

#appArray<Google::Apis::ApigeeV1::GoogleCloudApigeeV1App>

Corresponds to the JSON property app



5862
5863
5864
# File 'lib/google/apis/apigee_v1/classes.rb', line 5862

def app
  @app
end

#next_page_tokenString

Token that can be sent as next_page_token to retrieve the next page. If this field is omitted, there are no subsequent pages. Corresponds to the JSON property nextPageToken

Returns:

  • (String)


5868
5869
5870
# File 'lib/google/apis/apigee_v1/classes.rb', line 5868

def next_page_token
  @next_page_token
end

#total_sizeFixnum

Total count of Apps. Corresponds to the JSON property totalSize

Returns:

  • (Fixnum)


5873
5874
5875
# File 'lib/google/apis/apigee_v1/classes.rb', line 5873

def total_size
  @total_size
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



5880
5881
5882
5883
5884
# File 'lib/google/apis/apigee_v1/classes.rb', line 5880

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