Class: Google::Apis::DfareportingV3_3::MobileAppsListResponse

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

Overview

Mobile app List Response

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ MobileAppsListResponse

Returns a new instance of MobileAppsListResponse.



7331
7332
7333
# File 'generated/google/apis/dfareporting_v3_3/classes.rb', line 7331

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

Instance Attribute Details

#kindString

Identifies what kind of resource this is. Value: the fixed string " dfareporting#mobileAppsListResponse". Corresponds to the JSON property kind

Returns:

  • (String)


7319
7320
7321
# File 'generated/google/apis/dfareporting_v3_3/classes.rb', line 7319

def kind
  @kind
end

#mobile_appsArray<Google::Apis::DfareportingV3_3::MobileApp>

Mobile apps collection. Corresponds to the JSON property mobileApps



7324
7325
7326
# File 'generated/google/apis/dfareporting_v3_3/classes.rb', line 7324

def mobile_apps
  @mobile_apps
end

#next_page_tokenString

Pagination token to be used for the next list operation. Corresponds to the JSON property nextPageToken

Returns:

  • (String)


7329
7330
7331
# File 'generated/google/apis/dfareporting_v3_3/classes.rb', line 7329

def next_page_token
  @next_page_token
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



7336
7337
7338
7339
7340
# File 'generated/google/apis/dfareporting_v3_3/classes.rb', line 7336

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