Class: Google::Apis::DfareportingV4::OperatingSystem

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 an operating system that can be targeted by ads.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ OperatingSystem

Returns a new instance of OperatingSystem.



8285
8286
8287
# File 'lib/google/apis/dfareporting_v4/classes.rb', line 8285

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#dart_idFixnum

DART ID of this operating system. This is the ID used for targeting. Corresponds to the JSON property dartId

Returns:

  • (Fixnum)


8260
8261
8262
# File 'lib/google/apis/dfareporting_v4/classes.rb', line 8260

def dart_id
  @dart_id
end

#desktopBoolean Also known as: desktop?

Whether this operating system is for desktop. Corresponds to the JSON property desktop

Returns:

  • (Boolean)


8265
8266
8267
# File 'lib/google/apis/dfareporting_v4/classes.rb', line 8265

def desktop
  @desktop
end

#kindString

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

Returns:

  • (String)


8272
8273
8274
# File 'lib/google/apis/dfareporting_v4/classes.rb', line 8272

def kind
  @kind
end

#mobileBoolean Also known as: mobile?

Whether this operating system is for mobile. Corresponds to the JSON property mobile

Returns:

  • (Boolean)


8277
8278
8279
# File 'lib/google/apis/dfareporting_v4/classes.rb', line 8277

def mobile
  @mobile
end

#nameString

Name of this operating system. Corresponds to the JSON property name

Returns:

  • (String)


8283
8284
8285
# File 'lib/google/apis/dfareporting_v4/classes.rb', line 8283

def name
  @name
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



8290
8291
8292
8293
8294
8295
8296
# File 'lib/google/apis/dfareporting_v4/classes.rb', line 8290

def update!(**args)
  @dart_id = args[:dart_id] if args.key?(:dart_id)
  @desktop = args[:desktop] if args.key?(:desktop)
  @kind = args[:kind] if args.key?(:kind)
  @mobile = args[:mobile] if args.key?(:mobile)
  @name = args[:name] if args.key?(:name)
end