Class: Fedex::Parcel::Configuration

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

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initializeConfiguration

Returns a new instance of Configuration.



20
21
22
23
24
25
26
27
# File 'lib/fedex_parcels_tracker.rb', line 20

def initialize
  @wsdl = nil
  @access_key = nil
  @method = nil
  @tracking_in_data = nil
  @ssl_version = nil
  @data = {}
end

Instance Attribute Details

#access_keyObject

Returns the value of attribute access_key.



18
19
20
# File 'lib/fedex_parcels_tracker.rb', line 18

def access_key
  @access_key
end

#dataObject

Returns the value of attribute data.



18
19
20
# File 'lib/fedex_parcels_tracker.rb', line 18

def data
  @data
end

#methodObject

Returns the value of attribute method.



18
19
20
# File 'lib/fedex_parcels_tracker.rb', line 18

def method
  @method
end

#ssl_versionObject

Returns the value of attribute ssl_version.



18
19
20
# File 'lib/fedex_parcels_tracker.rb', line 18

def ssl_version
  @ssl_version
end

#tracking_in_dataObject

Returns the value of attribute tracking_in_data.



18
19
20
# File 'lib/fedex_parcels_tracker.rb', line 18

def tracking_in_data
  @tracking_in_data
end

#wsdlObject

Returns the value of attribute wsdl.



18
19
20
# File 'lib/fedex_parcels_tracker.rb', line 18

def wsdl
  @wsdl
end