Class: AdCenterWrapper::Step

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

Overview

http://schemas.datacontract.org/2004/07/Microsoft.AdCenter.Advertiser.CampaignManagement.Api.DataContractsStep

id - SOAP::SOAPLong
name - SOAP::SOAPString
positionNumber - SOAP::SOAPInt
script - SOAP::SOAPString
type - AdCenterWrapper::StepType

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(id = nil, name = nil, positionNumber = nil, script = nil, type = nil) ⇒ Step

Returns a new instance of Step.

[View source]

1398
1399
1400
1401
1402
1403
1404
# File 'lib/CampaignManagementService.rb', line 1398

def initialize(id = nil, name = nil, positionNumber = nil, script = nil, type = nil)
  @id = id
  @name = name
  @positionNumber = positionNumber
  @script = script
  @type = type
end

Instance Attribute Details

#idObject

Returns the value of attribute id.


1392
1393
1394
# File 'lib/CampaignManagementService.rb', line 1392

def id
  @id
end

#nameObject

Returns the value of attribute name.


1393
1394
1395
# File 'lib/CampaignManagementService.rb', line 1393

def name
  @name
end

#positionNumberObject

Returns the value of attribute positionNumber.


1394
1395
1396
# File 'lib/CampaignManagementService.rb', line 1394

def positionNumber
  @positionNumber
end

#scriptObject

Returns the value of attribute script.


1395
1396
1397
# File 'lib/CampaignManagementService.rb', line 1395

def script
  @script
end

#typeObject

Returns the value of attribute type.


1396
1397
1398
# File 'lib/CampaignManagementService.rb', line 1396

def type
  @type
end