Class: Google::Apis::DfareportingV4::MobileCarrier

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

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ MobileCarrier

Returns a new instance of MobileCarrier.



8061
8062
8063
# File 'lib/google/apis/dfareporting_v4/classes.rb', line 8061

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)


8038
8039
8040
# File 'lib/google/apis/dfareporting_v4/classes.rb', line 8038

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)


8043
8044
8045
# File 'lib/google/apis/dfareporting_v4/classes.rb', line 8043

def country_dart_id
  @country_dart_id
end

#idFixnum

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

Returns:

  • (Fixnum)


8048
8049
8050
# File 'lib/google/apis/dfareporting_v4/classes.rb', line 8048

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)


8054
8055
8056
# File 'lib/google/apis/dfareporting_v4/classes.rb', line 8054

def kind
  @kind
end

#nameString

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

Returns:

  • (String)


8059
8060
8061
# File 'lib/google/apis/dfareporting_v4/classes.rb', line 8059

def name
  @name
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



8066
8067
8068
8069
8070
8071
8072
# File 'lib/google/apis/dfareporting_v4/classes.rb', line 8066

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