Class: CoreLibrary::FileWrapper

Inherits:
Object
  • Object
show all
Defined in:
lib/apimatic-core/types/sdk/file_wrapper.rb

Overview

A utility to allow users to set the content-type for files

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(file, content_type: 'application/octet-stream') ⇒ FileWrapper

Initializes a new instance of FileWrapper.

Parameters:

  • file (File)

    File to enclose within file wrapper.

  • content_type (String) (defaults to: 'application/octet-stream')

    Content type of file.



9
10
11
12
# File 'lib/apimatic-core/types/sdk/file_wrapper.rb', line 9

def initialize(file, content_type: 'application/octet-stream')
  @file = file
  @content_type = content_type
end

Instance Attribute Details

#content_typeObject (readonly)

Returns the value of attribute content_type.



4
5
6
# File 'lib/apimatic-core/types/sdk/file_wrapper.rb', line 4

def content_type
  @content_type
end

#fileObject (readonly)

Returns the value of attribute file.



4
5
6
# File 'lib/apimatic-core/types/sdk/file_wrapper.rb', line 4

def file
  @file
end