Class: PortfolioManager::Xml::DataRequest

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

Overview

{}dataRequest

Defined Under Namespace

Classes: Locations, RequesterDetails

Constant Summary collapse

AttrId =
XSD::QName.new(nil, "id")

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(name = nil, requesterDetails = nil, instructions = nil, timeframe = nil, locations = nil, dataRequestStatus = nil, dataRequestAcceptedBy = nil, dataRequestAcceptedDate = nil) ⇒ DataRequest

Returns a new instance of DataRequest.



8183
8184
8185
8186
8187
8188
8189
8190
8191
8192
8193
# File 'lib/portfolio_manager/xml.rb', line 8183

def initialize(name = nil, requesterDetails = nil, instructions = nil, timeframe = nil, locations = nil, dataRequestStatus = nil, dataRequestAcceptedBy = nil, dataRequestAcceptedDate = nil)
  @name = name
  @requesterDetails = requesterDetails
  @instructions = instructions
  @timeframe = timeframe
  @locations = locations
  @dataRequestStatus = dataRequestStatus
  @dataRequestAcceptedBy = dataRequestAcceptedBy
  @dataRequestAcceptedDate = dataRequestAcceptedDate
  @__xmlattr = {}
end

Instance Attribute Details

#dataRequestAcceptedBySOAP::SOAPString

Returns:

  • (SOAP::SOAPString)


8096
8097
8098
8099
8100
8101
8102
8103
8104
8105
8106
8107
8108
8109
8110
8111
8112
8113
8114
8115
8116
8117
8118
8119
8120
8121
8122
8123
8124
8125
8126
8127
8128
8129
8130
8131
8132
8133
8134
8135
8136
8137
8138
8139
8140
8141
8142
8143
8144
8145
8146
8147
8148
8149
8150
8151
8152
8153
8154
8155
8156
8157
8158
8159
8160
8161
8162
8163
8164
8165
8166
8167
8168
8169
8170
8171
8172
8173
8174
8175
8176
8177
8178
8179
8180
8181
8182
8183
8184
8185
8186
8187
8188
8189
8190
8191
8192
8193
8194
# File 'lib/portfolio_manager/xml.rb', line 8096

class DataRequest
  AttrId = XSD::QName.new(nil, "id")

  # inner class for member: requesterDetails
  # {}requesterDetails
  # @!attribute [rw] firstName
  #   @return [SOAP::SOAPString]
  # @!attribute [rw] lastName
  #   @return [SOAP::SOAPString]
  # @!attribute [rw] email
  #   @return [SOAP::SOAPString]
  # @!attribute [rw] phone
  #   @return [SOAP::SOAPString]
  class RequesterDetails
    attr_accessor :firstName
    attr_accessor :lastName
    attr_accessor :email
    attr_accessor :phone

    def initialize(firstName = nil, lastName = nil, email = nil, phone = nil)
      @firstName = firstName
      @lastName = lastName
      @email = email
      @phone = phone
    end
  end

  # inner class for member: locations
  # {}locations
  class Locations < ::Array

    # {}location
    # @!attribute [rw] xmlattr_country
    #   @return [SOAP::SOAPString]
    # @!attribute [rw] xmlattr_state
    #   @return [SOAP::SOAPString]
    class Location
      AttrCountry = XSD::QName.new(nil, "country")
      AttrState = XSD::QName.new(nil, "state")

      def __xmlattr
        @__xmlattr ||= {}
      end

      def xmlattr_country
        __xmlattr[AttrCountry]
      end

      def xmlattr_country=(value)
        __xmlattr[AttrCountry] = value
      end

      def xmlattr_state
        __xmlattr[AttrState]
      end

      def xmlattr_state=(value)
        __xmlattr[AttrState] = value
      end

      def initialize
        @__xmlattr = {}
      end
    end
  end

  attr_accessor :name
  attr_accessor :requesterDetails
  attr_accessor :instructions
  attr_accessor :timeframe
  attr_accessor :locations
  attr_accessor :dataRequestStatus
  attr_accessor :dataRequestAcceptedBy
  attr_accessor :dataRequestAcceptedDate

  def __xmlattr
    @__xmlattr ||= {}
  end

  def xmlattr_id
    __xmlattr[AttrId]
  end

  def xmlattr_id=(value)
    __xmlattr[AttrId] = value
  end

  def initialize(name = nil, requesterDetails = nil, instructions = nil, timeframe = nil, locations = nil, dataRequestStatus = nil, dataRequestAcceptedBy = nil, dataRequestAcceptedDate = nil)
    @name = name
    @requesterDetails = requesterDetails
    @instructions = instructions
    @timeframe = timeframe
    @locations = locations
    @dataRequestStatus = dataRequestStatus
    @dataRequestAcceptedBy = dataRequestAcceptedBy
    @dataRequestAcceptedDate = dataRequestAcceptedDate
    @__xmlattr = {}
  end
end

#dataRequestAcceptedDateSOAP::SOAPDateTime

Returns:

  • (SOAP::SOAPDateTime)


8096
8097
8098
8099
8100
8101
8102
8103
8104
8105
8106
8107
8108
8109
8110
8111
8112
8113
8114
8115
8116
8117
8118
8119
8120
8121
8122
8123
8124
8125
8126
8127
8128
8129
8130
8131
8132
8133
8134
8135
8136
8137
8138
8139
8140
8141
8142
8143
8144
8145
8146
8147
8148
8149
8150
8151
8152
8153
8154
8155
8156
8157
8158
8159
8160
8161
8162
8163
8164
8165
8166
8167
8168
8169
8170
8171
8172
8173
8174
8175
8176
8177
8178
8179
8180
8181
8182
8183
8184
8185
8186
8187
8188
8189
8190
8191
8192
8193
8194
# File 'lib/portfolio_manager/xml.rb', line 8096

class DataRequest
  AttrId = XSD::QName.new(nil, "id")

  # inner class for member: requesterDetails
  # {}requesterDetails
  # @!attribute [rw] firstName
  #   @return [SOAP::SOAPString]
  # @!attribute [rw] lastName
  #   @return [SOAP::SOAPString]
  # @!attribute [rw] email
  #   @return [SOAP::SOAPString]
  # @!attribute [rw] phone
  #   @return [SOAP::SOAPString]
  class RequesterDetails
    attr_accessor :firstName
    attr_accessor :lastName
    attr_accessor :email
    attr_accessor :phone

    def initialize(firstName = nil, lastName = nil, email = nil, phone = nil)
      @firstName = firstName
      @lastName = lastName
      @email = email
      @phone = phone
    end
  end

  # inner class for member: locations
  # {}locations
  class Locations < ::Array

    # {}location
    # @!attribute [rw] xmlattr_country
    #   @return [SOAP::SOAPString]
    # @!attribute [rw] xmlattr_state
    #   @return [SOAP::SOAPString]
    class Location
      AttrCountry = XSD::QName.new(nil, "country")
      AttrState = XSD::QName.new(nil, "state")

      def __xmlattr
        @__xmlattr ||= {}
      end

      def xmlattr_country
        __xmlattr[AttrCountry]
      end

      def xmlattr_country=(value)
        __xmlattr[AttrCountry] = value
      end

      def xmlattr_state
        __xmlattr[AttrState]
      end

      def xmlattr_state=(value)
        __xmlattr[AttrState] = value
      end

      def initialize
        @__xmlattr = {}
      end
    end
  end

  attr_accessor :name
  attr_accessor :requesterDetails
  attr_accessor :instructions
  attr_accessor :timeframe
  attr_accessor :locations
  attr_accessor :dataRequestStatus
  attr_accessor :dataRequestAcceptedBy
  attr_accessor :dataRequestAcceptedDate

  def __xmlattr
    @__xmlattr ||= {}
  end

  def xmlattr_id
    __xmlattr[AttrId]
  end

  def xmlattr_id=(value)
    __xmlattr[AttrId] = value
  end

  def initialize(name = nil, requesterDetails = nil, instructions = nil, timeframe = nil, locations = nil, dataRequestStatus = nil, dataRequestAcceptedBy = nil, dataRequestAcceptedDate = nil)
    @name = name
    @requesterDetails = requesterDetails
    @instructions = instructions
    @timeframe = timeframe
    @locations = locations
    @dataRequestStatus = dataRequestStatus
    @dataRequestAcceptedBy = dataRequestAcceptedBy
    @dataRequestAcceptedDate = dataRequestAcceptedDate
    @__xmlattr = {}
  end
end

#dataRequestStatusPortfolioManager::Xml::DataRequestStatusType



8096
8097
8098
8099
8100
8101
8102
8103
8104
8105
8106
8107
8108
8109
8110
8111
8112
8113
8114
8115
8116
8117
8118
8119
8120
8121
8122
8123
8124
8125
8126
8127
8128
8129
8130
8131
8132
8133
8134
8135
8136
8137
8138
8139
8140
8141
8142
8143
8144
8145
8146
8147
8148
8149
8150
8151
8152
8153
8154
8155
8156
8157
8158
8159
8160
8161
8162
8163
8164
8165
8166
8167
8168
8169
8170
8171
8172
8173
8174
8175
8176
8177
8178
8179
8180
8181
8182
8183
8184
8185
8186
8187
8188
8189
8190
8191
8192
8193
8194
# File 'lib/portfolio_manager/xml.rb', line 8096

class DataRequest
  AttrId = XSD::QName.new(nil, "id")

  # inner class for member: requesterDetails
  # {}requesterDetails
  # @!attribute [rw] firstName
  #   @return [SOAP::SOAPString]
  # @!attribute [rw] lastName
  #   @return [SOAP::SOAPString]
  # @!attribute [rw] email
  #   @return [SOAP::SOAPString]
  # @!attribute [rw] phone
  #   @return [SOAP::SOAPString]
  class RequesterDetails
    attr_accessor :firstName
    attr_accessor :lastName
    attr_accessor :email
    attr_accessor :phone

    def initialize(firstName = nil, lastName = nil, email = nil, phone = nil)
      @firstName = firstName
      @lastName = lastName
      @email = email
      @phone = phone
    end
  end

  # inner class for member: locations
  # {}locations
  class Locations < ::Array

    # {}location
    # @!attribute [rw] xmlattr_country
    #   @return [SOAP::SOAPString]
    # @!attribute [rw] xmlattr_state
    #   @return [SOAP::SOAPString]
    class Location
      AttrCountry = XSD::QName.new(nil, "country")
      AttrState = XSD::QName.new(nil, "state")

      def __xmlattr
        @__xmlattr ||= {}
      end

      def xmlattr_country
        __xmlattr[AttrCountry]
      end

      def xmlattr_country=(value)
        __xmlattr[AttrCountry] = value
      end

      def xmlattr_state
        __xmlattr[AttrState]
      end

      def xmlattr_state=(value)
        __xmlattr[AttrState] = value
      end

      def initialize
        @__xmlattr = {}
      end
    end
  end

  attr_accessor :name
  attr_accessor :requesterDetails
  attr_accessor :instructions
  attr_accessor :timeframe
  attr_accessor :locations
  attr_accessor :dataRequestStatus
  attr_accessor :dataRequestAcceptedBy
  attr_accessor :dataRequestAcceptedDate

  def __xmlattr
    @__xmlattr ||= {}
  end

  def xmlattr_id
    __xmlattr[AttrId]
  end

  def xmlattr_id=(value)
    __xmlattr[AttrId] = value
  end

  def initialize(name = nil, requesterDetails = nil, instructions = nil, timeframe = nil, locations = nil, dataRequestStatus = nil, dataRequestAcceptedBy = nil, dataRequestAcceptedDate = nil)
    @name = name
    @requesterDetails = requesterDetails
    @instructions = instructions
    @timeframe = timeframe
    @locations = locations
    @dataRequestStatus = dataRequestStatus
    @dataRequestAcceptedBy = dataRequestAcceptedBy
    @dataRequestAcceptedDate = dataRequestAcceptedDate
    @__xmlattr = {}
  end
end

#instructionsSOAP::SOAPString

Returns:

  • (SOAP::SOAPString)


8096
8097
8098
8099
8100
8101
8102
8103
8104
8105
8106
8107
8108
8109
8110
8111
8112
8113
8114
8115
8116
8117
8118
8119
8120
8121
8122
8123
8124
8125
8126
8127
8128
8129
8130
8131
8132
8133
8134
8135
8136
8137
8138
8139
8140
8141
8142
8143
8144
8145
8146
8147
8148
8149
8150
8151
8152
8153
8154
8155
8156
8157
8158
8159
8160
8161
8162
8163
8164
8165
8166
8167
8168
8169
8170
8171
8172
8173
8174
8175
8176
8177
8178
8179
8180
8181
8182
8183
8184
8185
8186
8187
8188
8189
8190
8191
8192
8193
8194
# File 'lib/portfolio_manager/xml.rb', line 8096

class DataRequest
  AttrId = XSD::QName.new(nil, "id")

  # inner class for member: requesterDetails
  # {}requesterDetails
  # @!attribute [rw] firstName
  #   @return [SOAP::SOAPString]
  # @!attribute [rw] lastName
  #   @return [SOAP::SOAPString]
  # @!attribute [rw] email
  #   @return [SOAP::SOAPString]
  # @!attribute [rw] phone
  #   @return [SOAP::SOAPString]
  class RequesterDetails
    attr_accessor :firstName
    attr_accessor :lastName
    attr_accessor :email
    attr_accessor :phone

    def initialize(firstName = nil, lastName = nil, email = nil, phone = nil)
      @firstName = firstName
      @lastName = lastName
      @email = email
      @phone = phone
    end
  end

  # inner class for member: locations
  # {}locations
  class Locations < ::Array

    # {}location
    # @!attribute [rw] xmlattr_country
    #   @return [SOAP::SOAPString]
    # @!attribute [rw] xmlattr_state
    #   @return [SOAP::SOAPString]
    class Location
      AttrCountry = XSD::QName.new(nil, "country")
      AttrState = XSD::QName.new(nil, "state")

      def __xmlattr
        @__xmlattr ||= {}
      end

      def xmlattr_country
        __xmlattr[AttrCountry]
      end

      def xmlattr_country=(value)
        __xmlattr[AttrCountry] = value
      end

      def xmlattr_state
        __xmlattr[AttrState]
      end

      def xmlattr_state=(value)
        __xmlattr[AttrState] = value
      end

      def initialize
        @__xmlattr = {}
      end
    end
  end

  attr_accessor :name
  attr_accessor :requesterDetails
  attr_accessor :instructions
  attr_accessor :timeframe
  attr_accessor :locations
  attr_accessor :dataRequestStatus
  attr_accessor :dataRequestAcceptedBy
  attr_accessor :dataRequestAcceptedDate

  def __xmlattr
    @__xmlattr ||= {}
  end

  def xmlattr_id
    __xmlattr[AttrId]
  end

  def xmlattr_id=(value)
    __xmlattr[AttrId] = value
  end

  def initialize(name = nil, requesterDetails = nil, instructions = nil, timeframe = nil, locations = nil, dataRequestStatus = nil, dataRequestAcceptedBy = nil, dataRequestAcceptedDate = nil)
    @name = name
    @requesterDetails = requesterDetails
    @instructions = instructions
    @timeframe = timeframe
    @locations = locations
    @dataRequestStatus = dataRequestStatus
    @dataRequestAcceptedBy = dataRequestAcceptedBy
    @dataRequestAcceptedDate = dataRequestAcceptedDate
    @__xmlattr = {}
  end
end

#locationsPortfolioManager::Xml::DataRequest::Locations



8096
8097
8098
8099
8100
8101
8102
8103
8104
8105
8106
8107
8108
8109
8110
8111
8112
8113
8114
8115
8116
8117
8118
8119
8120
8121
8122
8123
8124
8125
8126
8127
8128
8129
8130
8131
8132
8133
8134
8135
8136
8137
8138
8139
8140
8141
8142
8143
8144
8145
8146
8147
8148
8149
8150
8151
8152
8153
8154
8155
8156
8157
8158
8159
8160
8161
8162
8163
8164
8165
8166
8167
8168
8169
8170
8171
8172
8173
8174
8175
8176
8177
8178
8179
8180
8181
8182
8183
8184
8185
8186
8187
8188
8189
8190
8191
8192
8193
8194
# File 'lib/portfolio_manager/xml.rb', line 8096

class DataRequest
  AttrId = XSD::QName.new(nil, "id")

  # inner class for member: requesterDetails
  # {}requesterDetails
  # @!attribute [rw] firstName
  #   @return [SOAP::SOAPString]
  # @!attribute [rw] lastName
  #   @return [SOAP::SOAPString]
  # @!attribute [rw] email
  #   @return [SOAP::SOAPString]
  # @!attribute [rw] phone
  #   @return [SOAP::SOAPString]
  class RequesterDetails
    attr_accessor :firstName
    attr_accessor :lastName
    attr_accessor :email
    attr_accessor :phone

    def initialize(firstName = nil, lastName = nil, email = nil, phone = nil)
      @firstName = firstName
      @lastName = lastName
      @email = email
      @phone = phone
    end
  end

  # inner class for member: locations
  # {}locations
  class Locations < ::Array

    # {}location
    # @!attribute [rw] xmlattr_country
    #   @return [SOAP::SOAPString]
    # @!attribute [rw] xmlattr_state
    #   @return [SOAP::SOAPString]
    class Location
      AttrCountry = XSD::QName.new(nil, "country")
      AttrState = XSD::QName.new(nil, "state")

      def __xmlattr
        @__xmlattr ||= {}
      end

      def xmlattr_country
        __xmlattr[AttrCountry]
      end

      def xmlattr_country=(value)
        __xmlattr[AttrCountry] = value
      end

      def xmlattr_state
        __xmlattr[AttrState]
      end

      def xmlattr_state=(value)
        __xmlattr[AttrState] = value
      end

      def initialize
        @__xmlattr = {}
      end
    end
  end

  attr_accessor :name
  attr_accessor :requesterDetails
  attr_accessor :instructions
  attr_accessor :timeframe
  attr_accessor :locations
  attr_accessor :dataRequestStatus
  attr_accessor :dataRequestAcceptedBy
  attr_accessor :dataRequestAcceptedDate

  def __xmlattr
    @__xmlattr ||= {}
  end

  def xmlattr_id
    __xmlattr[AttrId]
  end

  def xmlattr_id=(value)
    __xmlattr[AttrId] = value
  end

  def initialize(name = nil, requesterDetails = nil, instructions = nil, timeframe = nil, locations = nil, dataRequestStatus = nil, dataRequestAcceptedBy = nil, dataRequestAcceptedDate = nil)
    @name = name
    @requesterDetails = requesterDetails
    @instructions = instructions
    @timeframe = timeframe
    @locations = locations
    @dataRequestStatus = dataRequestStatus
    @dataRequestAcceptedBy = dataRequestAcceptedBy
    @dataRequestAcceptedDate = dataRequestAcceptedDate
    @__xmlattr = {}
  end
end

#nameSOAP::SOAPString

Returns:

  • (SOAP::SOAPString)


8096
8097
8098
8099
8100
8101
8102
8103
8104
8105
8106
8107
8108
8109
8110
8111
8112
8113
8114
8115
8116
8117
8118
8119
8120
8121
8122
8123
8124
8125
8126
8127
8128
8129
8130
8131
8132
8133
8134
8135
8136
8137
8138
8139
8140
8141
8142
8143
8144
8145
8146
8147
8148
8149
8150
8151
8152
8153
8154
8155
8156
8157
8158
8159
8160
8161
8162
8163
8164
8165
8166
8167
8168
8169
8170
8171
8172
8173
8174
8175
8176
8177
8178
8179
8180
8181
8182
8183
8184
8185
8186
8187
8188
8189
8190
8191
8192
8193
8194
# File 'lib/portfolio_manager/xml.rb', line 8096

class DataRequest
  AttrId = XSD::QName.new(nil, "id")

  # inner class for member: requesterDetails
  # {}requesterDetails
  # @!attribute [rw] firstName
  #   @return [SOAP::SOAPString]
  # @!attribute [rw] lastName
  #   @return [SOAP::SOAPString]
  # @!attribute [rw] email
  #   @return [SOAP::SOAPString]
  # @!attribute [rw] phone
  #   @return [SOAP::SOAPString]
  class RequesterDetails
    attr_accessor :firstName
    attr_accessor :lastName
    attr_accessor :email
    attr_accessor :phone

    def initialize(firstName = nil, lastName = nil, email = nil, phone = nil)
      @firstName = firstName
      @lastName = lastName
      @email = email
      @phone = phone
    end
  end

  # inner class for member: locations
  # {}locations
  class Locations < ::Array

    # {}location
    # @!attribute [rw] xmlattr_country
    #   @return [SOAP::SOAPString]
    # @!attribute [rw] xmlattr_state
    #   @return [SOAP::SOAPString]
    class Location
      AttrCountry = XSD::QName.new(nil, "country")
      AttrState = XSD::QName.new(nil, "state")

      def __xmlattr
        @__xmlattr ||= {}
      end

      def xmlattr_country
        __xmlattr[AttrCountry]
      end

      def xmlattr_country=(value)
        __xmlattr[AttrCountry] = value
      end

      def xmlattr_state
        __xmlattr[AttrState]
      end

      def xmlattr_state=(value)
        __xmlattr[AttrState] = value
      end

      def initialize
        @__xmlattr = {}
      end
    end
  end

  attr_accessor :name
  attr_accessor :requesterDetails
  attr_accessor :instructions
  attr_accessor :timeframe
  attr_accessor :locations
  attr_accessor :dataRequestStatus
  attr_accessor :dataRequestAcceptedBy
  attr_accessor :dataRequestAcceptedDate

  def __xmlattr
    @__xmlattr ||= {}
  end

  def xmlattr_id
    __xmlattr[AttrId]
  end

  def xmlattr_id=(value)
    __xmlattr[AttrId] = value
  end

  def initialize(name = nil, requesterDetails = nil, instructions = nil, timeframe = nil, locations = nil, dataRequestStatus = nil, dataRequestAcceptedBy = nil, dataRequestAcceptedDate = nil)
    @name = name
    @requesterDetails = requesterDetails
    @instructions = instructions
    @timeframe = timeframe
    @locations = locations
    @dataRequestStatus = dataRequestStatus
    @dataRequestAcceptedBy = dataRequestAcceptedBy
    @dataRequestAcceptedDate = dataRequestAcceptedDate
    @__xmlattr = {}
  end
end

#requesterDetailsPortfolioManager::Xml::DataRequest::RequesterDetails



8096
8097
8098
8099
8100
8101
8102
8103
8104
8105
8106
8107
8108
8109
8110
8111
8112
8113
8114
8115
8116
8117
8118
8119
8120
8121
8122
8123
8124
8125
8126
8127
8128
8129
8130
8131
8132
8133
8134
8135
8136
8137
8138
8139
8140
8141
8142
8143
8144
8145
8146
8147
8148
8149
8150
8151
8152
8153
8154
8155
8156
8157
8158
8159
8160
8161
8162
8163
8164
8165
8166
8167
8168
8169
8170
8171
8172
8173
8174
8175
8176
8177
8178
8179
8180
8181
8182
8183
8184
8185
8186
8187
8188
8189
8190
8191
8192
8193
8194
# File 'lib/portfolio_manager/xml.rb', line 8096

class DataRequest
  AttrId = XSD::QName.new(nil, "id")

  # inner class for member: requesterDetails
  # {}requesterDetails
  # @!attribute [rw] firstName
  #   @return [SOAP::SOAPString]
  # @!attribute [rw] lastName
  #   @return [SOAP::SOAPString]
  # @!attribute [rw] email
  #   @return [SOAP::SOAPString]
  # @!attribute [rw] phone
  #   @return [SOAP::SOAPString]
  class RequesterDetails
    attr_accessor :firstName
    attr_accessor :lastName
    attr_accessor :email
    attr_accessor :phone

    def initialize(firstName = nil, lastName = nil, email = nil, phone = nil)
      @firstName = firstName
      @lastName = lastName
      @email = email
      @phone = phone
    end
  end

  # inner class for member: locations
  # {}locations
  class Locations < ::Array

    # {}location
    # @!attribute [rw] xmlattr_country
    #   @return [SOAP::SOAPString]
    # @!attribute [rw] xmlattr_state
    #   @return [SOAP::SOAPString]
    class Location
      AttrCountry = XSD::QName.new(nil, "country")
      AttrState = XSD::QName.new(nil, "state")

      def __xmlattr
        @__xmlattr ||= {}
      end

      def xmlattr_country
        __xmlattr[AttrCountry]
      end

      def xmlattr_country=(value)
        __xmlattr[AttrCountry] = value
      end

      def xmlattr_state
        __xmlattr[AttrState]
      end

      def xmlattr_state=(value)
        __xmlattr[AttrState] = value
      end

      def initialize
        @__xmlattr = {}
      end
    end
  end

  attr_accessor :name
  attr_accessor :requesterDetails
  attr_accessor :instructions
  attr_accessor :timeframe
  attr_accessor :locations
  attr_accessor :dataRequestStatus
  attr_accessor :dataRequestAcceptedBy
  attr_accessor :dataRequestAcceptedDate

  def __xmlattr
    @__xmlattr ||= {}
  end

  def xmlattr_id
    __xmlattr[AttrId]
  end

  def xmlattr_id=(value)
    __xmlattr[AttrId] = value
  end

  def initialize(name = nil, requesterDetails = nil, instructions = nil, timeframe = nil, locations = nil, dataRequestStatus = nil, dataRequestAcceptedBy = nil, dataRequestAcceptedDate = nil)
    @name = name
    @requesterDetails = requesterDetails
    @instructions = instructions
    @timeframe = timeframe
    @locations = locations
    @dataRequestStatus = dataRequestStatus
    @dataRequestAcceptedBy = dataRequestAcceptedBy
    @dataRequestAcceptedDate = dataRequestAcceptedDate
    @__xmlattr = {}
  end
end

#timeframePortfolioManager::Xml::TimeframeType



8096
8097
8098
8099
8100
8101
8102
8103
8104
8105
8106
8107
8108
8109
8110
8111
8112
8113
8114
8115
8116
8117
8118
8119
8120
8121
8122
8123
8124
8125
8126
8127
8128
8129
8130
8131
8132
8133
8134
8135
8136
8137
8138
8139
8140
8141
8142
8143
8144
8145
8146
8147
8148
8149
8150
8151
8152
8153
8154
8155
8156
8157
8158
8159
8160
8161
8162
8163
8164
8165
8166
8167
8168
8169
8170
8171
8172
8173
8174
8175
8176
8177
8178
8179
8180
8181
8182
8183
8184
8185
8186
8187
8188
8189
8190
8191
8192
8193
8194
# File 'lib/portfolio_manager/xml.rb', line 8096

class DataRequest
  AttrId = XSD::QName.new(nil, "id")

  # inner class for member: requesterDetails
  # {}requesterDetails
  # @!attribute [rw] firstName
  #   @return [SOAP::SOAPString]
  # @!attribute [rw] lastName
  #   @return [SOAP::SOAPString]
  # @!attribute [rw] email
  #   @return [SOAP::SOAPString]
  # @!attribute [rw] phone
  #   @return [SOAP::SOAPString]
  class RequesterDetails
    attr_accessor :firstName
    attr_accessor :lastName
    attr_accessor :email
    attr_accessor :phone

    def initialize(firstName = nil, lastName = nil, email = nil, phone = nil)
      @firstName = firstName
      @lastName = lastName
      @email = email
      @phone = phone
    end
  end

  # inner class for member: locations
  # {}locations
  class Locations < ::Array

    # {}location
    # @!attribute [rw] xmlattr_country
    #   @return [SOAP::SOAPString]
    # @!attribute [rw] xmlattr_state
    #   @return [SOAP::SOAPString]
    class Location
      AttrCountry = XSD::QName.new(nil, "country")
      AttrState = XSD::QName.new(nil, "state")

      def __xmlattr
        @__xmlattr ||= {}
      end

      def xmlattr_country
        __xmlattr[AttrCountry]
      end

      def xmlattr_country=(value)
        __xmlattr[AttrCountry] = value
      end

      def xmlattr_state
        __xmlattr[AttrState]
      end

      def xmlattr_state=(value)
        __xmlattr[AttrState] = value
      end

      def initialize
        @__xmlattr = {}
      end
    end
  end

  attr_accessor :name
  attr_accessor :requesterDetails
  attr_accessor :instructions
  attr_accessor :timeframe
  attr_accessor :locations
  attr_accessor :dataRequestStatus
  attr_accessor :dataRequestAcceptedBy
  attr_accessor :dataRequestAcceptedDate

  def __xmlattr
    @__xmlattr ||= {}
  end

  def xmlattr_id
    __xmlattr[AttrId]
  end

  def xmlattr_id=(value)
    __xmlattr[AttrId] = value
  end

  def initialize(name = nil, requesterDetails = nil, instructions = nil, timeframe = nil, locations = nil, dataRequestStatus = nil, dataRequestAcceptedBy = nil, dataRequestAcceptedDate = nil)
    @name = name
    @requesterDetails = requesterDetails
    @instructions = instructions
    @timeframe = timeframe
    @locations = locations
    @dataRequestStatus = dataRequestStatus
    @dataRequestAcceptedBy = dataRequestAcceptedBy
    @dataRequestAcceptedDate = dataRequestAcceptedDate
    @__xmlattr = {}
  end
end

#xmlattr_idSOAP::SOAPLong

Returns:

  • (SOAP::SOAPLong)


8096
8097
8098
8099
8100
8101
8102
8103
8104
8105
8106
8107
8108
8109
8110
8111
8112
8113
8114
8115
8116
8117
8118
8119
8120
8121
8122
8123
8124
8125
8126
8127
8128
8129
8130
8131
8132
8133
8134
8135
8136
8137
8138
8139
8140
8141
8142
8143
8144
8145
8146
8147
8148
8149
8150
8151
8152
8153
8154
8155
8156
8157
8158
8159
8160
8161
8162
8163
8164
8165
8166
8167
8168
8169
8170
8171
8172
8173
8174
8175
8176
8177
8178
8179
8180
8181
8182
8183
8184
8185
8186
8187
8188
8189
8190
8191
8192
8193
8194
# File 'lib/portfolio_manager/xml.rb', line 8096

class DataRequest
  AttrId = XSD::QName.new(nil, "id")

  # inner class for member: requesterDetails
  # {}requesterDetails
  # @!attribute [rw] firstName
  #   @return [SOAP::SOAPString]
  # @!attribute [rw] lastName
  #   @return [SOAP::SOAPString]
  # @!attribute [rw] email
  #   @return [SOAP::SOAPString]
  # @!attribute [rw] phone
  #   @return [SOAP::SOAPString]
  class RequesterDetails
    attr_accessor :firstName
    attr_accessor :lastName
    attr_accessor :email
    attr_accessor :phone

    def initialize(firstName = nil, lastName = nil, email = nil, phone = nil)
      @firstName = firstName
      @lastName = lastName
      @email = email
      @phone = phone
    end
  end

  # inner class for member: locations
  # {}locations
  class Locations < ::Array

    # {}location
    # @!attribute [rw] xmlattr_country
    #   @return [SOAP::SOAPString]
    # @!attribute [rw] xmlattr_state
    #   @return [SOAP::SOAPString]
    class Location
      AttrCountry = XSD::QName.new(nil, "country")
      AttrState = XSD::QName.new(nil, "state")

      def __xmlattr
        @__xmlattr ||= {}
      end

      def xmlattr_country
        __xmlattr[AttrCountry]
      end

      def xmlattr_country=(value)
        __xmlattr[AttrCountry] = value
      end

      def xmlattr_state
        __xmlattr[AttrState]
      end

      def xmlattr_state=(value)
        __xmlattr[AttrState] = value
      end

      def initialize
        @__xmlattr = {}
      end
    end
  end

  attr_accessor :name
  attr_accessor :requesterDetails
  attr_accessor :instructions
  attr_accessor :timeframe
  attr_accessor :locations
  attr_accessor :dataRequestStatus
  attr_accessor :dataRequestAcceptedBy
  attr_accessor :dataRequestAcceptedDate

  def __xmlattr
    @__xmlattr ||= {}
  end

  def xmlattr_id
    __xmlattr[AttrId]
  end

  def xmlattr_id=(value)
    __xmlattr[AttrId] = value
  end

  def initialize(name = nil, requesterDetails = nil, instructions = nil, timeframe = nil, locations = nil, dataRequestStatus = nil, dataRequestAcceptedBy = nil, dataRequestAcceptedDate = nil)
    @name = name
    @requesterDetails = requesterDetails
    @instructions = instructions
    @timeframe = timeframe
    @locations = locations
    @dataRequestStatus = dataRequestStatus
    @dataRequestAcceptedBy = dataRequestAcceptedBy
    @dataRequestAcceptedDate = dataRequestAcceptedDate
    @__xmlattr = {}
  end
end

Instance Method Details

#__xmlattrObject



8171
8172
8173
# File 'lib/portfolio_manager/xml.rb', line 8171

def __xmlattr
  @__xmlattr ||= {}
end