Class: Google::Apis::DfareportingV2_1::MobileCarrier

Inherits:
Object
  • Object
show all
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

Instance Method Summary collapse

Methods included from Core::Hashable

process_value, #to_h

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_codeString

Country code of the country to which this mobile carrier belongs. Corresponds to the JSON property countryCode

Returns:

  • (String)


6438
6439
6440
# File 'generated/google/apis/dfareporting_v2_1/classes.rb', line 6438

def country_code
  @country_code
end

#country_dart_idString

DART ID of the country to which this mobile carrier belongs. Corresponds to the JSON property countryDartId

Returns:

  • (String)


6443
6444
6445
# File 'generated/google/apis/dfareporting_v2_1/classes.rb', line 6443

def country_dart_id
  @country_dart_id
end

#idString

ID of this mobile carrier. Corresponds to the JSON property id

Returns:

  • (String)


6448
6449
6450
# File 'generated/google/apis/dfareporting_v2_1/classes.rb', line 6448

def id
  @id
end

#kindString

Identifies what kind of resource this is. Value: the fixed string " dfareporting#mobileCarrier". Corresponds to the JSON property kind

Returns:

  • (String)


6454
6455
6456
# File 'generated/google/apis/dfareporting_v2_1/classes.rb', line 6454

def kind
  @kind
end

#nameString

Name of this mobile carrier. Corresponds to the JSON property name

Returns:

  • (String)


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