7812
7813
7814
7815
7816
7817
7818
7819
7820
7821
7822
7823
7824
7825
7826
7827
7828
7829
7830
7831
7832
7833
7834
7835
7836
|
# File 'lib/portfolio_manager/xml.rb', line 7812
class Report
class Properties < ::Array
end
attr_accessor :id
attr_accessor :type
attr_accessor :timeframe
attr_accessor :templateId
attr_accessor :templateName
attr_accessor :properties
attr_accessor :reportGenerationStatus
def initialize(id = nil, type = nil, timeframe = nil, templateId = nil, templateName = nil, properties = nil, reportGenerationStatus = nil)
@id = id
@type = type
@timeframe = timeframe
@templateId = templateId
@templateName = templateName
@properties = properties
@reportGenerationStatus = reportGenerationStatus
end
end
|