Class: Google::Apis::DfareportingV2_6::MobileCarrier

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



7111
7112
7113
# File 'generated/google/apis/dfareporting_v2_6/classes.rb', line 7111

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)


7088
7089
7090
# File 'generated/google/apis/dfareporting_v2_6/classes.rb', line 7088

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)


7093
7094
7095
# File 'generated/google/apis/dfareporting_v2_6/classes.rb', line 7093

def country_dart_id
  @country_dart_id
end

#idString

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

Returns:

  • (String)


7098
7099
7100
# File 'generated/google/apis/dfareporting_v2_6/classes.rb', line 7098

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)


7104
7105
7106
# File 'generated/google/apis/dfareporting_v2_6/classes.rb', line 7104

def kind
  @kind
end

#nameString

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

Returns:

  • (String)


7109
7110
7111
# File 'generated/google/apis/dfareporting_v2_6/classes.rb', line 7109

def name
  @name
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



7116
7117
7118
7119
7120
7121
7122
# File 'generated/google/apis/dfareporting_v2_6/classes.rb', line 7116

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