Class: Google::Apis::DfareportingV4::MobileCarrier
- Inherits:
-
Object
- Object
- Google::Apis::DfareportingV4::MobileCarrier
- 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
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.
8083 8084 8085 |
# File 'lib/google/apis/dfareporting_v4/classes.rb', line 8083 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
8060 8061 8062 |
# File 'lib/google/apis/dfareporting_v4/classes.rb', line 8060 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
8065 8066 8067 |
# File 'lib/google/apis/dfareporting_v4/classes.rb', line 8065 def country_dart_id @country_dart_id end |
#id ⇒ Fixnum
ID of this mobile carrier.
Corresponds to the JSON property id
8070 8071 8072 |
# File 'lib/google/apis/dfareporting_v4/classes.rb', line 8070 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
8076 8077 8078 |
# File 'lib/google/apis/dfareporting_v4/classes.rb', line 8076 def kind @kind end |
#name ⇒ String
Name of this mobile carrier.
Corresponds to the JSON property name
8081 8082 8083 |
# File 'lib/google/apis/dfareporting_v4/classes.rb', line 8081 def name @name end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
8088 8089 8090 8091 8092 8093 8094 |
# File 'lib/google/apis/dfareporting_v4/classes.rb', line 8088 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 |