Class: Google::Apis::DfareportingV3_3::MobileCarrier
- Inherits:
-
Object
- Object
- Google::Apis::DfareportingV3_3::MobileCarrier
- 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
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.
Constructor Details
#initialize(**args) ⇒ MobileCarrier
Returns a new instance of MobileCarrier.
7243 7244 7245 |
# File 'generated/google/apis/dfareporting_v3_3/classes.rb', line 7243 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
7220 7221 7222 |
# File 'generated/google/apis/dfareporting_v3_3/classes.rb', line 7220 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
7225 7226 7227 |
# File 'generated/google/apis/dfareporting_v3_3/classes.rb', line 7225 def country_dart_id @country_dart_id end |
#id ⇒ Fixnum
ID of this mobile carrier.
Corresponds to the JSON property id
7230 7231 7232 |
# File 'generated/google/apis/dfareporting_v3_3/classes.rb', line 7230 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
7236 7237 7238 |
# File 'generated/google/apis/dfareporting_v3_3/classes.rb', line 7236 def kind @kind end |
#name ⇒ String
Name of this mobile carrier.
Corresponds to the JSON property name
7241 7242 7243 |
# File 'generated/google/apis/dfareporting_v3_3/classes.rb', line 7241 def name @name end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
7248 7249 7250 7251 7252 7253 7254 |
# File 'generated/google/apis/dfareporting_v3_3/classes.rb', line 7248 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 |