Class: ModifiedFieldType

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

Overview

urn:ebay:apis:eBLBaseComponentsModifiedFieldType

Constant Summary collapse

@@schema_type =
"ModifiedFieldType"
@@schema_ns =
"urn:ebay:apis:eBLBaseComponents"
@@schema_element =
[
  ["field", ["SOAP::SOAPString", XSD::QName.new("urn:ebay:apis:eBLBaseComponents", "Field")]],
  ["modifyType", ["ModifyCodeType", XSD::QName.new("urn:ebay:apis:eBLBaseComponents", "ModifyType")]]
]

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(field = nil, modifyType = nil) ⇒ ModifiedFieldType

Returns a new instance of ModifiedFieldType.



2810
2811
2812
2813
# File 'lib/v_paypal/default.rb', line 2810

def initialize(field = nil, modifyType = nil)
  @field = field
  @modifyType = modifyType
end

Instance Attribute Details

#fieldObject

Returns the value of attribute field.



2807
2808
2809
# File 'lib/v_paypal/default.rb', line 2807

def field
  @field
end

#modifyTypeObject

Returns the value of attribute modifyType.



2808
2809
2810
# File 'lib/v_paypal/default.rb', line 2808

def modifyType
  @modifyType
end