Class: Google::Apis::DfareportingV4::CountriesListResponse
- Inherits:
-
Object
- Object
- Google::Apis::DfareportingV4::CountriesListResponse
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/dfareporting_v4/classes.rb,
lib/google/apis/dfareporting_v4/representations.rb,
lib/google/apis/dfareporting_v4/representations.rb
Overview
Country List Response
Instance Attribute Summary collapse
-
#countries ⇒ Array<Google::Apis::DfareportingV4::Country>
Country collection.
-
#kind ⇒ String
Identifies what kind of resource this is.
Instance Method Summary collapse
-
#initialize(**args) ⇒ CountriesListResponse
constructor
A new instance of CountriesListResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ CountriesListResponse
Returns a new instance of CountriesListResponse.
3157 3158 3159 |
# File 'lib/google/apis/dfareporting_v4/classes.rb', line 3157 def initialize(**args) update!(**args) end |
Instance Attribute Details
#countries ⇒ Array<Google::Apis::DfareportingV4::Country>
Country collection.
Corresponds to the JSON property countries
3149 3150 3151 |
# File 'lib/google/apis/dfareporting_v4/classes.rb', line 3149 def countries @countries end |
#kind ⇒ String
Identifies what kind of resource this is. Value: the fixed string "
dfareporting#countriesListResponse".
Corresponds to the JSON property kind
3155 3156 3157 |
# File 'lib/google/apis/dfareporting_v4/classes.rb', line 3155 def kind @kind end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
3162 3163 3164 3165 |
# File 'lib/google/apis/dfareporting_v4/classes.rb', line 3162 def update!(**args) @countries = args[:countries] if args.key?(:countries) @kind = args[:kind] if args.key?(:kind) end |