Class: Google::Apis::DfareportingV3_2::MobileAppsListResponse
- Inherits:
-
Object
- Object
- Google::Apis::DfareportingV3_2::MobileAppsListResponse
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/dfareporting_v3_2/classes.rb,
generated/google/apis/dfareporting_v3_2/representations.rb,
generated/google/apis/dfareporting_v3_2/representations.rb
Overview
Mobile app List Response
Instance Attribute Summary collapse
-
#kind ⇒ String
Identifies what kind of resource this is.
-
#mobile_apps ⇒ Array<Google::Apis::DfareportingV3_2::MobileApp>
Mobile apps collection.
-
#next_page_token ⇒ String
Pagination token to be used for the next list operation.
Instance Method Summary collapse
-
#initialize(**args) ⇒ MobileAppsListResponse
constructor
A new instance of MobileAppsListResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ MobileAppsListResponse
Returns a new instance of MobileAppsListResponse
7483 7484 7485 |
# File 'generated/google/apis/dfareporting_v3_2/classes.rb', line 7483 def initialize(**args) update!(**args) end |
Instance Attribute Details
#kind ⇒ String
Identifies what kind of resource this is. Value: the fixed string "
dfareporting#mobileAppsListResponse".
Corresponds to the JSON property kind
7471 7472 7473 |
# File 'generated/google/apis/dfareporting_v3_2/classes.rb', line 7471 def kind @kind end |
#mobile_apps ⇒ Array<Google::Apis::DfareportingV3_2::MobileApp>
Mobile apps collection.
Corresponds to the JSON property mobileApps
7476 7477 7478 |
# File 'generated/google/apis/dfareporting_v3_2/classes.rb', line 7476 def mobile_apps @mobile_apps end |
#next_page_token ⇒ String
Pagination token to be used for the next list operation.
Corresponds to the JSON property nextPageToken
7481 7482 7483 |
# File 'generated/google/apis/dfareporting_v3_2/classes.rb', line 7481 def next_page_token @next_page_token end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
7488 7489 7490 7491 7492 |
# File 'generated/google/apis/dfareporting_v3_2/classes.rb', line 7488 def update!(**args) @kind = args[:kind] if args.key?(:kind) @mobile_apps = args[:mobile_apps] if args.key?(:mobile_apps) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) end |