Class: Google::Apis::DfareportingV4::OperatingSystemVersion

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

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ OperatingSystemVersion

Returns a new instance of OperatingSystemVersion.



8270
8271
8272
# File 'lib/google/apis/dfareporting_v4/classes.rb', line 8270

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

Instance Attribute Details

#idFixnum

ID of this operating system version. Corresponds to the JSON property id

Returns:

  • (Fixnum)


8242
8243
8244
# File 'lib/google/apis/dfareporting_v4/classes.rb', line 8242

def id
  @id
end

#kindString

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

Returns:

  • (String)


8248
8249
8250
# File 'lib/google/apis/dfareporting_v4/classes.rb', line 8248

def kind
  @kind
end

#major_versionString

Major version (leftmost number) of this operating system version. Corresponds to the JSON property majorVersion

Returns:

  • (String)


8253
8254
8255
# File 'lib/google/apis/dfareporting_v4/classes.rb', line 8253

def major_version
  @major_version
end

#minor_versionString

Minor version (number after the first dot) of this operating system version. Corresponds to the JSON property minorVersion

Returns:

  • (String)


8258
8259
8260
# File 'lib/google/apis/dfareporting_v4/classes.rb', line 8258

def minor_version
  @minor_version
end

#nameString

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

Returns:

  • (String)


8263
8264
8265
# File 'lib/google/apis/dfareporting_v4/classes.rb', line 8263

def name
  @name
end

#operating_systemGoogle::Apis::DfareportingV4::OperatingSystem

Contains information about an operating system that can be targeted by ads. Corresponds to the JSON property operatingSystem



8268
8269
8270
# File 'lib/google/apis/dfareporting_v4/classes.rb', line 8268

def operating_system
  @operating_system
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



8275
8276
8277
8278
8279
8280
8281
8282
# File 'lib/google/apis/dfareporting_v4/classes.rb', line 8275

def update!(**args)
  @id = args[:id] if args.key?(:id)
  @kind = args[:kind] if args.key?(:kind)
  @major_version = args[:major_version] if args.key?(:major_version)
  @minor_version = args[:minor_version] if args.key?(:minor_version)
  @name = args[:name] if args.key?(:name)
  @operating_system = args[:operating_system] if args.key?(:operating_system)
end