Class: Refile::Signature

Inherits:
Object
  • Object
show all
Defined in:
lib/refile/signature.rb

Overview

A signature summarizes an HTTP request a client can make to upload a file to directly upload a file to a backend. This signature is usually generated by a backend's presign method.

Instance Attribute Summary collapse

Instance Method Summary collapse

Instance Attribute Details

#asString (readonly)



7
8
9
# File 'lib/refile/signature.rb', line 7

def as
  @as
end

#fieldsString (readonly)



16
17
18
# File 'lib/refile/signature.rb', line 16

def fields
  @fields
end

#idString (readonly)



10
11
12
# File 'lib/refile/signature.rb', line 10

def id
  @id
end

#urlString (readonly)



13
14
15
# File 'lib/refile/signature.rb', line 13

def url
  @url
end

Instance Method Details

#as_jsonHash{Symbol => Object}



27
28
29
# File 'lib/refile/signature.rb', line 27

def as_json(*)
  { as: @as, id: @id, url: @url, fields: @fields }
end