class OpConnect::Item::File
Attributes
content[R]
content_path[R]
id[R]
name[R]
section[R]
size[R]
Public Class Methods
new(options = {})
click to toggle source
# File lib/op_connect/item/file.rb, line 6 def initialize(options = {}) @id = options["id"] @name = options["name"] @size = options["size"] @content_path = options["content_path"] @content = options["content"] @section = Object.new(options["section"]) end