Class: Google::Apis::DfareportingV3_0::MobileCarrier
- Inherits:
-
Object
- Object
- Google::Apis::DfareportingV3_0::MobileCarrier
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/dfareporting_v3_0/classes.rb,
generated/google/apis/dfareporting_v3_0/representations.rb,
generated/google/apis/dfareporting_v3_0/representations.rb
Overview
Contains information about a mobile carrier that can be targeted by ads.
Instance Attribute Summary collapse
-
#country_code ⇒ String
Country code of the country to which this mobile carrier belongs.
-
#country_dart_id ⇒ Fixnum
DART ID of the country to which this mobile carrier belongs.
-
#id ⇒ Fixnum
ID of this mobile carrier.
-
#kind ⇒ String
Identifies what kind of resource this is.
-
#name ⇒ String
Name of this mobile carrier.
Instance Method Summary collapse
-
#initialize(**args) ⇒ MobileCarrier
constructor
A new instance of MobileCarrier.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ MobileCarrier
Returns a new instance of MobileCarrier
7352 7353 7354 |
# File 'generated/google/apis/dfareporting_v3_0/classes.rb', line 7352 def initialize(**args) update!(**args) end |
Instance Attribute Details
#country_code ⇒ String
Country code of the country to which this mobile carrier belongs.
Corresponds to the JSON property countryCode
7329 7330 7331 |
# File 'generated/google/apis/dfareporting_v3_0/classes.rb', line 7329 def country_code @country_code end |
#country_dart_id ⇒ Fixnum
DART ID of the country to which this mobile carrier belongs.
Corresponds to the JSON property countryDartId
7334 7335 7336 |
# File 'generated/google/apis/dfareporting_v3_0/classes.rb', line 7334 def country_dart_id @country_dart_id end |
#id ⇒ Fixnum
ID of this mobile carrier.
Corresponds to the JSON property id
7339 7340 7341 |
# File 'generated/google/apis/dfareporting_v3_0/classes.rb', line 7339 def id @id end |
#kind ⇒ String
Identifies what kind of resource this is. Value: the fixed string "
dfareporting#mobileCarrier".
Corresponds to the JSON property kind
7345 7346 7347 |
# File 'generated/google/apis/dfareporting_v3_0/classes.rb', line 7345 def kind @kind end |
#name ⇒ String
Name of this mobile carrier.
Corresponds to the JSON property name
7350 7351 7352 |
# File 'generated/google/apis/dfareporting_v3_0/classes.rb', line 7350 def name @name end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
7357 7358 7359 7360 7361 7362 7363 |
# File 'generated/google/apis/dfareporting_v3_0/classes.rb', line 7357 def update!(**args) @country_code = args[:country_code] if args.key?(:country_code) @country_dart_id = args[:country_dart_id] if args.key?(:country_dart_id) @id = args[:id] if args.key?(:id) @kind = args[:kind] if args.key?(:kind) @name = args[:name] if args.key?(:name) end |