Class: Google::Apis::DfareportingV2_3::Size

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
generated/google/apis/dfareporting_v2_3/classes.rb,
generated/google/apis/dfareporting_v2_3/representations.rb,
generated/google/apis/dfareporting_v2_3/representations.rb

Overview

Represents the dimensions of ads, placements, creatives, or creative assets.

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) ⇒ Size

Returns a new instance of Size.



9943
9944
9945
# File 'generated/google/apis/dfareporting_v2_3/classes.rb', line 9943

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

Instance Attribute Details

#heightFixnum

Height of this size. Corresponds to the JSON property height

Returns:

  • (Fixnum)


9919
9920
9921
# File 'generated/google/apis/dfareporting_v2_3/classes.rb', line 9919

def height
  @height
end

#iabBoolean Also known as: iab?

IAB standard size. This is a read-only, auto-generated field. Corresponds to the JSON property iab

Returns:

  • (Boolean)


9924
9925
9926
# File 'generated/google/apis/dfareporting_v2_3/classes.rb', line 9924

def iab
  @iab
end

#idString

ID of this size. This is a read-only, auto-generated field. Corresponds to the JSON property id

Returns:

  • (String)


9930
9931
9932
# File 'generated/google/apis/dfareporting_v2_3/classes.rb', line 9930

def id
  @id
end

#kindString

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

Returns:

  • (String)


9936
9937
9938
# File 'generated/google/apis/dfareporting_v2_3/classes.rb', line 9936

def kind
  @kind
end

#widthFixnum

Width of this size. Corresponds to the JSON property width

Returns:

  • (Fixnum)


9941
9942
9943
# File 'generated/google/apis/dfareporting_v2_3/classes.rb', line 9941

def width
  @width
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



9948
9949
9950
9951
9952
9953
9954
# File 'generated/google/apis/dfareporting_v2_3/classes.rb', line 9948

def update!(**args)
  @height = args[:height] if args.key?(:height)
  @iab = args[:iab] if args.key?(:iab)
  @id = args[:id] if args.key?(:id)
  @kind = args[:kind] if args.key?(:kind)
  @width = args[:width] if args.key?(:width)
end