Class: Google::Apis::DfareportingV3_1::MobileCarrier

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
generated/google/apis/dfareporting_v3_1/classes.rb,
generated/google/apis/dfareporting_v3_1/representations.rb,
generated/google/apis/dfareporting_v3_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::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ MobileCarrier

Returns a new instance of MobileCarrier



7489
7490
7491
# File 'generated/google/apis/dfareporting_v3_1/classes.rb', line 7489

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)


7466
7467
7468
# File 'generated/google/apis/dfareporting_v3_1/classes.rb', line 7466

def country_code
  @country_code
end

#country_dart_idFixnum

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

Returns:

  • (Fixnum)


7471
7472
7473
# File 'generated/google/apis/dfareporting_v3_1/classes.rb', line 7471

def country_dart_id
  @country_dart_id
end

#idFixnum

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

Returns:

  • (Fixnum)


7476
7477
7478
# File 'generated/google/apis/dfareporting_v3_1/classes.rb', line 7476

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)


7482
7483
7484
# File 'generated/google/apis/dfareporting_v3_1/classes.rb', line 7482

def kind
  @kind
end

#nameString

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

Returns:

  • (String)


7487
7488
7489
# File 'generated/google/apis/dfareporting_v3_1/classes.rb', line 7487

def name
  @name
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



7494
7495
7496
7497
7498
7499
7500
# File 'generated/google/apis/dfareporting_v3_1/classes.rb', line 7494

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