class BlazingDocs::OperationModel
Attributes
elapsed_milliseconds[RW]
files[R]
id[RW]
page_count[RW]
remote_ip_address[RW]
type[R]
Public Instance Methods
files=(file_hashes)
click to toggle source
# File lib/blazingdocs/models/operation_model.rb 15 def files=(file_hashes) 16 @files = file_hashes.map { |hash| FileModel.new(hash) } 17 end
type=(type_hash)
click to toggle source
# File lib/blazingdocs/models/operation_model.rb 19 def type=(type_hash) 20 @type = OperationTypeModel.new(type_hash) 21 end