Class: AdCenterWrapper::Dimension

Inherits:
Object
  • Object
show all
Defined in:
lib/CampaignManagementService.rb

Overview

https://adcenter.microsoft.com/v8Dimension

height - SOAP::SOAPInt
width - SOAP::SOAPInt

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(height = nil, width = nil) ⇒ Dimension

Returns a new instance of Dimension.

[View source]

496
497
498
499
# File 'lib/CampaignManagementService.rb', line 496

def initialize(height = nil, width = nil)
  @height = height
  @width = width
end

Instance Attribute Details

#heightObject

Returns the value of attribute height.


493
494
495
# File 'lib/CampaignManagementService.rb', line 493

def height
  @height
end

#widthObject

Returns the value of attribute width.


494
495
496
# File 'lib/CampaignManagementService.rb', line 494

def width
  @width
end