Class: Smartsheet::API::ImportObjectFileSpec

Inherits:
Object
  • Object
show all
Defined in:
lib/smartsheet/api/file_spec.rb

Overview

Specification for file sheet import by File, file length, and MIME content type

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(file, file_length, content_type) ⇒ ImportObjectFileSpec

Returns a new instance of ImportObjectFileSpec.



47
48
49
50
51
52
# File 'lib/smartsheet/api/file_spec.rb', line 47

def initialize(file, file_length, content_type)
  @file_length = file_length
  @filename = nil
  @upload_io = Faraday::UploadIO.new(file, content_type)
  @content_type = content_type
end

Instance Attribute Details

#content_typeObject (readonly)

Returns the value of attribute content_type.



45
46
47
# File 'lib/smartsheet/api/file_spec.rb', line 45

def content_type
  @content_type
end

#file_lengthObject (readonly)

Returns the value of attribute file_length.



45
46
47
# File 'lib/smartsheet/api/file_spec.rb', line 45

def file_length
  @file_length
end

#filenameObject (readonly)

Returns the value of attribute filename.



45
46
47
# File 'lib/smartsheet/api/file_spec.rb', line 45

def filename
  @filename
end

#upload_ioObject (readonly)

Returns the value of attribute upload_io.



45
46
47
# File 'lib/smartsheet/api/file_spec.rb', line 45

def upload_io
  @upload_io
end