Class: ModifiedFieldType

Inherits:
Object
  • Object
show all
Defined in:
lib/paypal-business/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.



2990
2991
2992
2993
# File 'lib/paypal-business/default.rb', line 2990

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

Instance Attribute Details

#fieldObject

Returns the value of attribute field.



2987
2988
2989
# File 'lib/paypal-business/default.rb', line 2987

def field
  @field
end

#modifyTypeObject

Returns the value of attribute modifyType.



2988
2989
2990
# File 'lib/paypal-business/default.rb', line 2988

def modifyType
  @modifyType
end