Class: Google::Apis::DfareportingV5::MobileAppsListResponse

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

Overview

Mobile app List Response

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ MobileAppsListResponse

Returns a new instance of MobileAppsListResponse.



8816
8817
8818
# File 'lib/google/apis/dfareporting_v5/classes.rb', line 8816

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)


8804
8805
8806
# File 'lib/google/apis/dfareporting_v5/classes.rb', line 8804

def kind
  @kind
end

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

Mobile apps collection. Corresponds to the JSON property mobileApps



8809
8810
8811
# File 'lib/google/apis/dfareporting_v5/classes.rb', line 8809

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)


8814
8815
8816
# File 'lib/google/apis/dfareporting_v5/classes.rb', line 8814

def next_page_token
  @next_page_token
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



8821
8822
8823
8824
8825
# File 'lib/google/apis/dfareporting_v5/classes.rb', line 8821

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