Class: BuildingSync::DocumentHistory
- Inherits:
-
Object
- Object
- BuildingSync::DocumentHistory
- Defined in:
- lib/BuildingSync.rb
Overview
http://www.gbxml.org/schemaDocumentHistory
createdBy - BuildingSync::CreatedBy
programInfo - BuildingSync::ProgramInfo
personInfo - BuildingSync::PersonInfo
modifiedBy - BuildingSync::ModifiedBy
Instance Attribute Summary collapse
-
#createdBy ⇒ Object
Returns the value of attribute createdBy.
-
#modifiedBy ⇒ Object
Returns the value of attribute modifiedBy.
-
#personInfo ⇒ Object
Returns the value of attribute personInfo.
-
#programInfo ⇒ Object
Returns the value of attribute programInfo.
Instance Method Summary collapse
-
#initialize(createdBy = [], programInfo = [], personInfo = [], modifiedBy = []) ⇒ DocumentHistory
constructor
A new instance of DocumentHistory.
Constructor Details
#initialize(createdBy = [], programInfo = [], personInfo = [], modifiedBy = []) ⇒ DocumentHistory
Returns a new instance of DocumentHistory.
27356 27357 27358 27359 27360 27361 |
# File 'lib/BuildingSync.rb', line 27356 def initialize(createdBy = [], programInfo = [], personInfo = [], modifiedBy = []) @createdBy = createdBy @programInfo = programInfo @personInfo = personInfo @modifiedBy = modifiedBy end |
Instance Attribute Details
#createdBy ⇒ Object
Returns the value of attribute createdBy.
27351 27352 27353 |
# File 'lib/BuildingSync.rb', line 27351 def createdBy @createdBy end |
#modifiedBy ⇒ Object
Returns the value of attribute modifiedBy.
27354 27355 27356 |
# File 'lib/BuildingSync.rb', line 27354 def modifiedBy @modifiedBy end |
#personInfo ⇒ Object
Returns the value of attribute personInfo.
27353 27354 27355 |
# File 'lib/BuildingSync.rb', line 27353 def personInfo @personInfo end |
#programInfo ⇒ Object
Returns the value of attribute programInfo.
27352 27353 27354 |
# File 'lib/BuildingSync.rb', line 27352 def programInfo @programInfo end |