class Google::Apis::DfareportingV3_4::MobileCarrier

Contains information about a mobile carrier that can be targeted by ads.

Attributes

country_code[RW]

Country code of the country to which this mobile carrier belongs. Corresponds to the JSON property `countryCode` @return [String]

country_dart_id[RW]

DART ID of the country to which this mobile carrier belongs. Corresponds to the JSON property `countryDartId` @return [Fixnum]

id[RW]

ID of this mobile carrier. Corresponds to the JSON property `id` @return [Fixnum]

kind[RW]

Identifies what kind of resource this is. Value: the fixed string “ dfareporting#mobileCarrier”. Corresponds to the JSON property `kind` @return [String]

name[RW]

Name of this mobile carrier. Corresponds to the JSON property `name` @return [String]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/dfareporting_v3_4/classes.rb, line 7867
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/dfareporting_v3_4/classes.rb, line 7872
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