Class: Google::Apis::ApigeeV1::GoogleCloudApigeeV1ListAppsResponse
- Inherits:
-
Object
- Object
- Google::Apis::ApigeeV1::GoogleCloudApigeeV1ListAppsResponse
- 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
-
#app ⇒ Array<Google::Apis::ApigeeV1::GoogleCloudApigeeV1App>
Corresponds to the JSON property
app. -
#next_page_token ⇒ String
Token that can be sent as
next_page_tokento retrieve the next page. -
#total_size ⇒ Fixnum
Total count of Apps.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudApigeeV1ListAppsResponse
constructor
A new instance of GoogleCloudApigeeV1ListAppsResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudApigeeV1ListAppsResponse
Returns a new instance of GoogleCloudApigeeV1ListAppsResponse.
6022 6023 6024 |
# File 'lib/google/apis/apigee_v1/classes.rb', line 6022 def initialize(**args) update!(**args) end |
Instance Attribute Details
#app ⇒ Array<Google::Apis::ApigeeV1::GoogleCloudApigeeV1App>
Corresponds to the JSON property app
6009 6010 6011 |
# File 'lib/google/apis/apigee_v1/classes.rb', line 6009 def app @app end |
#next_page_token ⇒ String
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
6015 6016 6017 |
# File 'lib/google/apis/apigee_v1/classes.rb', line 6015 def next_page_token @next_page_token end |
#total_size ⇒ Fixnum
Total count of Apps.
Corresponds to the JSON property totalSize
6020 6021 6022 |
# File 'lib/google/apis/apigee_v1/classes.rb', line 6020 def total_size @total_size end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
6027 6028 6029 6030 6031 |
# File 'lib/google/apis/apigee_v1/classes.rb', line 6027 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 |