Skip to content

Latest commit

 

History

History
24 lines (18 loc) · 605 Bytes

File metadata and controls

24 lines (18 loc) · 605 Bytes

Passbase::ResourceFile

Properties

Name Type Description Notes
id String Unique ID representing a resource file [optional]
created Integer Unix-timestamp of when the resource was created [optional]
updated Integer Unix-timestamp of when the resource was updated [optional]
file File Raw bytes: the actual file [optional]

Example

require 'passbase'

instance = Passbase::ResourceFile.new(
  id: null,
  created: 1600250430,
  updated: 1600250430,
  file: null
)