Class: Google::Apis::DfareportingV2_1::MobileCarrier
- Inherits:
-
Object
- Object
- Google::Apis::DfareportingV2_1::MobileCarrier
- Includes:
- Core::Hashable
- Defined in:
- generated/google/apis/dfareporting_v2_1/classes.rb,
generated/google/apis/dfareporting_v2_1/representations.rb,
generated/google/apis/dfareporting_v2_1/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 ⇒ String
DART ID of the country to which this mobile carrier belongs.
-
#id ⇒ String
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::Hashable
Constructor Details
#initialize(**args) ⇒ MobileCarrier
Returns a new instance of MobileCarrier.
6461 6462 6463 |
# File 'generated/google/apis/dfareporting_v2_1/classes.rb', line 6461 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
6438 6439 6440 |
# File 'generated/google/apis/dfareporting_v2_1/classes.rb', line 6438 def country_code @country_code end |
#country_dart_id ⇒ String
DART ID of the country to which this mobile carrier belongs.
Corresponds to the JSON property countryDartId
6443 6444 6445 |
# File 'generated/google/apis/dfareporting_v2_1/classes.rb', line 6443 def country_dart_id @country_dart_id end |
#id ⇒ String
ID of this mobile carrier.
Corresponds to the JSON property id
6448 6449 6450 |
# File 'generated/google/apis/dfareporting_v2_1/classes.rb', line 6448 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
6454 6455 6456 |
# File 'generated/google/apis/dfareporting_v2_1/classes.rb', line 6454 def kind @kind end |
#name ⇒ String
Name of this mobile carrier.
Corresponds to the JSON property name
6459 6460 6461 |
# File 'generated/google/apis/dfareporting_v2_1/classes.rb', line 6459 def name @name end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
6466 6467 6468 6469 6470 6471 6472 |
# File 'generated/google/apis/dfareporting_v2_1/classes.rb', line 6466 def update!(**args) @country_code = args[:country_code] unless args[:country_code].nil? @country_dart_id = args[:country_dart_id] unless args[:country_dart_id].nil? @id = args[:id] unless args[:id].nil? @kind = args[:kind] unless args[:kind].nil? @name = args[:name] unless args[:name].nil? end |