Class: FedexWebServices::Soap::Ship::OperationalInstruction

Inherits:
Object
  • Object
show all
Defined in:
lib/fedex_web_services/soap/ShipServiceDefinitions.rb

Overview

http://fedex.com/ws/ship/v12OperationalInstruction

number - SOAP::SOAPInt
content - SOAP::SOAPString

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(number = nil, content = nil) ⇒ OperationalInstruction

Returns a new instance of OperationalInstruction.



2088
2089
2090
2091
# File 'lib/fedex_web_services/soap/ShipServiceDefinitions.rb', line 2088

def initialize(number = nil, content = nil)
  @number = number
  @content = content
end

Instance Attribute Details

#contentObject

Returns the value of attribute content.



2086
2087
2088
# File 'lib/fedex_web_services/soap/ShipServiceDefinitions.rb', line 2086

def content
  @content
end

#numberObject

Returns the value of attribute number.



2085
2086
2087
# File 'lib/fedex_web_services/soap/ShipServiceDefinitions.rb', line 2085

def number
  @number
end