Class: PortfolioManager::Xml::CustomUseDetailsType
- Inherits:
-
UseAttributeBase
- Object
- UseAttributeBase
- PortfolioManager::Xml::CustomUseDetailsType
- Defined in:
- lib/portfolio_manager/xml.rb
Overview
{}customUseDetailsType
Constant Summary collapse
- AttrCurrentAsOf =
XSD::QName.new(nil, "currentAsOf")
- AttrDataType =
XSD::QName.new(nil, "dataType")
- AttrDefault =
XSD::QName.new(nil, "default")
- AttrId =
XSD::QName.new(nil, "id")
- AttrTemporary =
XSD::QName.new(nil, "temporary")
- AttrUnits =
XSD::QName.new(nil, "units")
Instance Attribute Summary collapse
- #audit ⇒ PortfolioManager::Xml::LogType
- #customName ⇒ SOAP::SOAPString
- #customUom ⇒ SOAP::SOAPString
- #value ⇒ SOAP::SOAPString
- #xmlattr_currentAsOf ⇒ SOAP::SOAPDate
- #xmlattr_dataType ⇒ SOAP::SOAPString
- #xmlattr_default ⇒ SOAP::SOAPString
- #xmlattr_id ⇒ SOAP::SOAPLong
- #xmlattr_temporary ⇒ SOAP::SOAPBoolean
- #xmlattr_units ⇒ SOAP::SOAPString
Instance Method Summary collapse
- #__xmlattr ⇒ Object
-
#initialize(audit = nil, value = nil, customName = nil, customUom = nil) ⇒ CustomUseDetailsType
constructor
A new instance of CustomUseDetailsType.
Constructor Details
#initialize(audit = nil, value = nil, customName = nil, customUom = nil) ⇒ CustomUseDetailsType
Returns a new instance of CustomUseDetailsType.
2527 2528 2529 2530 2531 2532 2533 |
# File 'lib/portfolio_manager/xml.rb', line 2527 def initialize(audit = nil, value = nil, customName = nil, customUom = nil) @audit = audit @value = value @customName = customName @customUom = customUom @__xmlattr = {} end |
Instance Attribute Details
#audit ⇒ PortfolioManager::Xml::LogType
2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 |
# File 'lib/portfolio_manager/xml.rb', line 2462 class CustomUseDetailsType < UseAttributeBase AttrCurrentAsOf = XSD::QName.new(nil, "currentAsOf") AttrDataType = XSD::QName.new(nil, "dataType") AttrDefault = XSD::QName.new(nil, "default") AttrId = XSD::QName.new(nil, "id") AttrTemporary = XSD::QName.new(nil, "temporary") AttrUnits = XSD::QName.new(nil, "units") attr_accessor :audit attr_accessor :value attr_accessor :customName attr_accessor :customUom def __xmlattr @__xmlattr ||= {} end def xmlattr_id __xmlattr[AttrId] end def xmlattr_id=(value) __xmlattr[AttrId] = value end def xmlattr_currentAsOf __xmlattr[AttrCurrentAsOf] end def xmlattr_currentAsOf=(value) __xmlattr[AttrCurrentAsOf] = value end def xmlattr_temporary __xmlattr[AttrTemporary] end def xmlattr_temporary=(value) __xmlattr[AttrTemporary] = value end def xmlattr_default __xmlattr[AttrDefault] end def xmlattr_default=(value) __xmlattr[AttrDefault] = value end def xmlattr_units __xmlattr[AttrUnits] end def xmlattr_units=(value) __xmlattr[AttrUnits] = value end def xmlattr_dataType __xmlattr[AttrDataType] end def xmlattr_dataType=(value) __xmlattr[AttrDataType] = value end def initialize(audit = nil, value = nil, customName = nil, customUom = nil) @audit = audit @value = value @customName = customName @customUom = customUom @__xmlattr = {} end end |
#customName ⇒ SOAP::SOAPString
2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 |
# File 'lib/portfolio_manager/xml.rb', line 2462 class CustomUseDetailsType < UseAttributeBase AttrCurrentAsOf = XSD::QName.new(nil, "currentAsOf") AttrDataType = XSD::QName.new(nil, "dataType") AttrDefault = XSD::QName.new(nil, "default") AttrId = XSD::QName.new(nil, "id") AttrTemporary = XSD::QName.new(nil, "temporary") AttrUnits = XSD::QName.new(nil, "units") attr_accessor :audit attr_accessor :value attr_accessor :customName attr_accessor :customUom def __xmlattr @__xmlattr ||= {} end def xmlattr_id __xmlattr[AttrId] end def xmlattr_id=(value) __xmlattr[AttrId] = value end def xmlattr_currentAsOf __xmlattr[AttrCurrentAsOf] end def xmlattr_currentAsOf=(value) __xmlattr[AttrCurrentAsOf] = value end def xmlattr_temporary __xmlattr[AttrTemporary] end def xmlattr_temporary=(value) __xmlattr[AttrTemporary] = value end def xmlattr_default __xmlattr[AttrDefault] end def xmlattr_default=(value) __xmlattr[AttrDefault] = value end def xmlattr_units __xmlattr[AttrUnits] end def xmlattr_units=(value) __xmlattr[AttrUnits] = value end def xmlattr_dataType __xmlattr[AttrDataType] end def xmlattr_dataType=(value) __xmlattr[AttrDataType] = value end def initialize(audit = nil, value = nil, customName = nil, customUom = nil) @audit = audit @value = value @customName = customName @customUom = customUom @__xmlattr = {} end end |
#customUom ⇒ SOAP::SOAPString
2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 |
# File 'lib/portfolio_manager/xml.rb', line 2462 class CustomUseDetailsType < UseAttributeBase AttrCurrentAsOf = XSD::QName.new(nil, "currentAsOf") AttrDataType = XSD::QName.new(nil, "dataType") AttrDefault = XSD::QName.new(nil, "default") AttrId = XSD::QName.new(nil, "id") AttrTemporary = XSD::QName.new(nil, "temporary") AttrUnits = XSD::QName.new(nil, "units") attr_accessor :audit attr_accessor :value attr_accessor :customName attr_accessor :customUom def __xmlattr @__xmlattr ||= {} end def xmlattr_id __xmlattr[AttrId] end def xmlattr_id=(value) __xmlattr[AttrId] = value end def xmlattr_currentAsOf __xmlattr[AttrCurrentAsOf] end def xmlattr_currentAsOf=(value) __xmlattr[AttrCurrentAsOf] = value end def xmlattr_temporary __xmlattr[AttrTemporary] end def xmlattr_temporary=(value) __xmlattr[AttrTemporary] = value end def xmlattr_default __xmlattr[AttrDefault] end def xmlattr_default=(value) __xmlattr[AttrDefault] = value end def xmlattr_units __xmlattr[AttrUnits] end def xmlattr_units=(value) __xmlattr[AttrUnits] = value end def xmlattr_dataType __xmlattr[AttrDataType] end def xmlattr_dataType=(value) __xmlattr[AttrDataType] = value end def initialize(audit = nil, value = nil, customName = nil, customUom = nil) @audit = audit @value = value @customName = customName @customUom = customUom @__xmlattr = {} end end |
#value ⇒ SOAP::SOAPString
2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 |
# File 'lib/portfolio_manager/xml.rb', line 2462 class CustomUseDetailsType < UseAttributeBase AttrCurrentAsOf = XSD::QName.new(nil, "currentAsOf") AttrDataType = XSD::QName.new(nil, "dataType") AttrDefault = XSD::QName.new(nil, "default") AttrId = XSD::QName.new(nil, "id") AttrTemporary = XSD::QName.new(nil, "temporary") AttrUnits = XSD::QName.new(nil, "units") attr_accessor :audit attr_accessor :value attr_accessor :customName attr_accessor :customUom def __xmlattr @__xmlattr ||= {} end def xmlattr_id __xmlattr[AttrId] end def xmlattr_id=(value) __xmlattr[AttrId] = value end def xmlattr_currentAsOf __xmlattr[AttrCurrentAsOf] end def xmlattr_currentAsOf=(value) __xmlattr[AttrCurrentAsOf] = value end def xmlattr_temporary __xmlattr[AttrTemporary] end def xmlattr_temporary=(value) __xmlattr[AttrTemporary] = value end def xmlattr_default __xmlattr[AttrDefault] end def xmlattr_default=(value) __xmlattr[AttrDefault] = value end def xmlattr_units __xmlattr[AttrUnits] end def xmlattr_units=(value) __xmlattr[AttrUnits] = value end def xmlattr_dataType __xmlattr[AttrDataType] end def xmlattr_dataType=(value) __xmlattr[AttrDataType] = value end def initialize(audit = nil, value = nil, customName = nil, customUom = nil) @audit = audit @value = value @customName = customName @customUom = customUom @__xmlattr = {} end end |
#xmlattr_currentAsOf ⇒ SOAP::SOAPDate
2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 |
# File 'lib/portfolio_manager/xml.rb', line 2462 class CustomUseDetailsType < UseAttributeBase AttrCurrentAsOf = XSD::QName.new(nil, "currentAsOf") AttrDataType = XSD::QName.new(nil, "dataType") AttrDefault = XSD::QName.new(nil, "default") AttrId = XSD::QName.new(nil, "id") AttrTemporary = XSD::QName.new(nil, "temporary") AttrUnits = XSD::QName.new(nil, "units") attr_accessor :audit attr_accessor :value attr_accessor :customName attr_accessor :customUom def __xmlattr @__xmlattr ||= {} end def xmlattr_id __xmlattr[AttrId] end def xmlattr_id=(value) __xmlattr[AttrId] = value end def xmlattr_currentAsOf __xmlattr[AttrCurrentAsOf] end def xmlattr_currentAsOf=(value) __xmlattr[AttrCurrentAsOf] = value end def xmlattr_temporary __xmlattr[AttrTemporary] end def xmlattr_temporary=(value) __xmlattr[AttrTemporary] = value end def xmlattr_default __xmlattr[AttrDefault] end def xmlattr_default=(value) __xmlattr[AttrDefault] = value end def xmlattr_units __xmlattr[AttrUnits] end def xmlattr_units=(value) __xmlattr[AttrUnits] = value end def xmlattr_dataType __xmlattr[AttrDataType] end def xmlattr_dataType=(value) __xmlattr[AttrDataType] = value end def initialize(audit = nil, value = nil, customName = nil, customUom = nil) @audit = audit @value = value @customName = customName @customUom = customUom @__xmlattr = {} end end |
#xmlattr_dataType ⇒ SOAP::SOAPString
2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 |
# File 'lib/portfolio_manager/xml.rb', line 2462 class CustomUseDetailsType < UseAttributeBase AttrCurrentAsOf = XSD::QName.new(nil, "currentAsOf") AttrDataType = XSD::QName.new(nil, "dataType") AttrDefault = XSD::QName.new(nil, "default") AttrId = XSD::QName.new(nil, "id") AttrTemporary = XSD::QName.new(nil, "temporary") AttrUnits = XSD::QName.new(nil, "units") attr_accessor :audit attr_accessor :value attr_accessor :customName attr_accessor :customUom def __xmlattr @__xmlattr ||= {} end def xmlattr_id __xmlattr[AttrId] end def xmlattr_id=(value) __xmlattr[AttrId] = value end def xmlattr_currentAsOf __xmlattr[AttrCurrentAsOf] end def xmlattr_currentAsOf=(value) __xmlattr[AttrCurrentAsOf] = value end def xmlattr_temporary __xmlattr[AttrTemporary] end def xmlattr_temporary=(value) __xmlattr[AttrTemporary] = value end def xmlattr_default __xmlattr[AttrDefault] end def xmlattr_default=(value) __xmlattr[AttrDefault] = value end def xmlattr_units __xmlattr[AttrUnits] end def xmlattr_units=(value) __xmlattr[AttrUnits] = value end def xmlattr_dataType __xmlattr[AttrDataType] end def xmlattr_dataType=(value) __xmlattr[AttrDataType] = value end def initialize(audit = nil, value = nil, customName = nil, customUom = nil) @audit = audit @value = value @customName = customName @customUom = customUom @__xmlattr = {} end end |
#xmlattr_default ⇒ SOAP::SOAPString
2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 |
# File 'lib/portfolio_manager/xml.rb', line 2462 class CustomUseDetailsType < UseAttributeBase AttrCurrentAsOf = XSD::QName.new(nil, "currentAsOf") AttrDataType = XSD::QName.new(nil, "dataType") AttrDefault = XSD::QName.new(nil, "default") AttrId = XSD::QName.new(nil, "id") AttrTemporary = XSD::QName.new(nil, "temporary") AttrUnits = XSD::QName.new(nil, "units") attr_accessor :audit attr_accessor :value attr_accessor :customName attr_accessor :customUom def __xmlattr @__xmlattr ||= {} end def xmlattr_id __xmlattr[AttrId] end def xmlattr_id=(value) __xmlattr[AttrId] = value end def xmlattr_currentAsOf __xmlattr[AttrCurrentAsOf] end def xmlattr_currentAsOf=(value) __xmlattr[AttrCurrentAsOf] = value end def xmlattr_temporary __xmlattr[AttrTemporary] end def xmlattr_temporary=(value) __xmlattr[AttrTemporary] = value end def xmlattr_default __xmlattr[AttrDefault] end def xmlattr_default=(value) __xmlattr[AttrDefault] = value end def xmlattr_units __xmlattr[AttrUnits] end def xmlattr_units=(value) __xmlattr[AttrUnits] = value end def xmlattr_dataType __xmlattr[AttrDataType] end def xmlattr_dataType=(value) __xmlattr[AttrDataType] = value end def initialize(audit = nil, value = nil, customName = nil, customUom = nil) @audit = audit @value = value @customName = customName @customUom = customUom @__xmlattr = {} end end |
#xmlattr_id ⇒ SOAP::SOAPLong
2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 |
# File 'lib/portfolio_manager/xml.rb', line 2462 class CustomUseDetailsType < UseAttributeBase AttrCurrentAsOf = XSD::QName.new(nil, "currentAsOf") AttrDataType = XSD::QName.new(nil, "dataType") AttrDefault = XSD::QName.new(nil, "default") AttrId = XSD::QName.new(nil, "id") AttrTemporary = XSD::QName.new(nil, "temporary") AttrUnits = XSD::QName.new(nil, "units") attr_accessor :audit attr_accessor :value attr_accessor :customName attr_accessor :customUom def __xmlattr @__xmlattr ||= {} end def xmlattr_id __xmlattr[AttrId] end def xmlattr_id=(value) __xmlattr[AttrId] = value end def xmlattr_currentAsOf __xmlattr[AttrCurrentAsOf] end def xmlattr_currentAsOf=(value) __xmlattr[AttrCurrentAsOf] = value end def xmlattr_temporary __xmlattr[AttrTemporary] end def xmlattr_temporary=(value) __xmlattr[AttrTemporary] = value end def xmlattr_default __xmlattr[AttrDefault] end def xmlattr_default=(value) __xmlattr[AttrDefault] = value end def xmlattr_units __xmlattr[AttrUnits] end def xmlattr_units=(value) __xmlattr[AttrUnits] = value end def xmlattr_dataType __xmlattr[AttrDataType] end def xmlattr_dataType=(value) __xmlattr[AttrDataType] = value end def initialize(audit = nil, value = nil, customName = nil, customUom = nil) @audit = audit @value = value @customName = customName @customUom = customUom @__xmlattr = {} end end |
#xmlattr_temporary ⇒ SOAP::SOAPBoolean
2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 |
# File 'lib/portfolio_manager/xml.rb', line 2462 class CustomUseDetailsType < UseAttributeBase AttrCurrentAsOf = XSD::QName.new(nil, "currentAsOf") AttrDataType = XSD::QName.new(nil, "dataType") AttrDefault = XSD::QName.new(nil, "default") AttrId = XSD::QName.new(nil, "id") AttrTemporary = XSD::QName.new(nil, "temporary") AttrUnits = XSD::QName.new(nil, "units") attr_accessor :audit attr_accessor :value attr_accessor :customName attr_accessor :customUom def __xmlattr @__xmlattr ||= {} end def xmlattr_id __xmlattr[AttrId] end def xmlattr_id=(value) __xmlattr[AttrId] = value end def xmlattr_currentAsOf __xmlattr[AttrCurrentAsOf] end def xmlattr_currentAsOf=(value) __xmlattr[AttrCurrentAsOf] = value end def xmlattr_temporary __xmlattr[AttrTemporary] end def xmlattr_temporary=(value) __xmlattr[AttrTemporary] = value end def xmlattr_default __xmlattr[AttrDefault] end def xmlattr_default=(value) __xmlattr[AttrDefault] = value end def xmlattr_units __xmlattr[AttrUnits] end def xmlattr_units=(value) __xmlattr[AttrUnits] = value end def xmlattr_dataType __xmlattr[AttrDataType] end def xmlattr_dataType=(value) __xmlattr[AttrDataType] = value end def initialize(audit = nil, value = nil, customName = nil, customUom = nil) @audit = audit @value = value @customName = customName @customUom = customUom @__xmlattr = {} end end |
#xmlattr_units ⇒ SOAP::SOAPString
2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 |
# File 'lib/portfolio_manager/xml.rb', line 2462 class CustomUseDetailsType < UseAttributeBase AttrCurrentAsOf = XSD::QName.new(nil, "currentAsOf") AttrDataType = XSD::QName.new(nil, "dataType") AttrDefault = XSD::QName.new(nil, "default") AttrId = XSD::QName.new(nil, "id") AttrTemporary = XSD::QName.new(nil, "temporary") AttrUnits = XSD::QName.new(nil, "units") attr_accessor :audit attr_accessor :value attr_accessor :customName attr_accessor :customUom def __xmlattr @__xmlattr ||= {} end def xmlattr_id __xmlattr[AttrId] end def xmlattr_id=(value) __xmlattr[AttrId] = value end def xmlattr_currentAsOf __xmlattr[AttrCurrentAsOf] end def xmlattr_currentAsOf=(value) __xmlattr[AttrCurrentAsOf] = value end def xmlattr_temporary __xmlattr[AttrTemporary] end def xmlattr_temporary=(value) __xmlattr[AttrTemporary] = value end def xmlattr_default __xmlattr[AttrDefault] end def xmlattr_default=(value) __xmlattr[AttrDefault] = value end def xmlattr_units __xmlattr[AttrUnits] end def xmlattr_units=(value) __xmlattr[AttrUnits] = value end def xmlattr_dataType __xmlattr[AttrDataType] end def xmlattr_dataType=(value) __xmlattr[AttrDataType] = value end def initialize(audit = nil, value = nil, customName = nil, customUom = nil) @audit = audit @value = value @customName = customName @customUom = customUom @__xmlattr = {} end end |
Instance Method Details
#__xmlattr ⇒ Object
2475 2476 2477 |
# File 'lib/portfolio_manager/xml.rb', line 2475 def __xmlattr @__xmlattr ||= {} end |