class PlaceOS::Model::Upload
- PlaceOS::Model::Upload
- PlaceOS::Model::ModelBase
- PgORM::Base
- ActiveModel::Model
- Reference
- Object
Included Modules
Defined in:
placeos-models/upload.crConstant Summary
-
CALLBACKS =
{before_save: [] of Nil, after_save: [] of Nil, before_create: [do self.created_at = self.updated_at = Time.utc end] of Nil, after_create: [] of Nil, before_update: [do self.updated_at = Time.utc end] of Nil, after_update: [] of Nil, before_destroy: [] of Nil, after_destroy: [] of Nil}
-
Log =
::Log.for(self)
Constructors
- .from_json(string_or_io : String | IO, trusted : Bool = false) : self
-
.from_json(string_or_io : String | IO, root : String, trusted : Bool = false) : self
Deserializes the given JSON in string_or_io into an instance of
self
, assuming the JSON consists of an JSON object with key root, and whose value is the value to deserialize. - .from_trusted_json(string_or_io : String | IO, root : String) : self
-
.from_trusted_json(string_or_io : String | IO) : self
Serialize from a trusted JSON source
-
.from_trusted_yaml(string_or_io : String | IO) : self
Serialize from a trusted YAML source
- .from_yaml(string_or_io : String | IO, trusted : Bool = false) : self
- .new(ctx : YAML::ParseContext, node : YAML::Nodes::Node)
- .new(pull : JSON::PullParser)
- .new(rs : DB::ResultSet)
- .new(created_at : Time | ActiveModel::Model::None = ::ActiveModel::Model::None.new, updated_at : Time | ActiveModel::Model::None = ::ActiveModel::Model::None.new, uploaded_email : PlaceOS::Model::Email | ActiveModel::Model::None = ::ActiveModel::Model::None.new, file_name : String | ActiveModel::Model::None = ::ActiveModel::Model::None.new, file_size : Int64 | ActiveModel::Model::None = ::ActiveModel::Model::None.new, file_path : String | Nil | ActiveModel::Model::None = ::ActiveModel::Model::None.new, object_key : String | ActiveModel::Model::None = ::ActiveModel::Model::None.new, file_md5 : String | ActiveModel::Model::None = ::ActiveModel::Model::None.new, public : Bool | ActiveModel::Model::None = ::ActiveModel::Model::None.new, permissions : PlaceOS::Model::Upload::Permissions | ActiveModel::Model::None = ::ActiveModel::Model::None.new, object_options : Hash(String, JSON::Any) | ActiveModel::Model::None = ::ActiveModel::Model::None.new, resumable_id : String | Nil | ActiveModel::Model::None = ::ActiveModel::Model::None.new, resumable : Bool | ActiveModel::Model::None = ::ActiveModel::Model::None.new, part_list : Array(Int32) | ActiveModel::Model::None = ::ActiveModel::Model::None.new, part_data : Hash(String, JSON::Any) | ActiveModel::Model::None = ::ActiveModel::Model::None.new, upload_complete : Bool | ActiveModel::Model::None = ::ActiveModel::Model::None.new, storage_id : String | Nil | ActiveModel::Model::None = ::ActiveModel::Model::None.new, uploaded_by : String | Nil | ActiveModel::Model::None = ::ActiveModel::Model::None.new, id : String | Nil | ActiveModel::Model::None = ::ActiveModel::Model::None.new)
-
.new(params : HTTP::Params | Hash(String, String) | Tuple(String, String))
Initialize PlaceOS::Model::Upload from
HTTP::Params
.
Class Method Summary
-
.attributes : Array(Symbol)
Returns all attribute keys.
- .auto_generate_id : Bool
-
.by_storage_id(id)
Look up instances of this model dependent on the foreign key
-
.by_uploaded_by(id)
Look up instances of this model dependent on the foreign key
-
.changes(id : PrimaryKeyType = nil) : ChangeFeed
Changefeed at row (if
#id
passed) or whole table level. - .elastic
- .from_rs(__temp_663 : DB::ResultSet)
- .on_error(err : Exception | IO::Error)
- .primary_key : Symbol
- .safe_filename?(filename : String) : Bool
- .table_name
Instance Method Summary
- #__storage : Storage | Nil
- #__storage=(__storage : Storage | Nil)
- #__user : User | Nil
- #__user=(__user : User | Nil)
-
#after_create
Base class for all Engine models
-
#after_destroy
Base class for all Engine models
- #after_initialize(trusted : Bool)
-
#after_save
Base class for all Engine models
-
#after_update
Base class for all Engine models
-
#apply_defaults
Generate code to apply default values
-
#assign_attributes(created_at : Time | Missing = Missing, updated_at : Time | Missing = Missing, uploaded_email : PlaceOS::Model::Email | Missing = Missing, file_name : String | Missing = Missing, file_size : Int64 | Missing = Missing, file_path : String | Nil | Missing = Missing, object_key : String | Missing = Missing, file_md5 : String | Missing = Missing, public : Bool | Missing = Missing, permissions : PlaceOS::Model::Upload::Permissions | Missing = Missing, object_options : Hash(String, JSON::Any) | Missing = Missing, resumable_id : String | Nil | Missing = Missing, resumable : Bool | Missing = Missing, part_list : Array(Int32) | Missing = Missing, part_data : Hash(String, JSON::Any) | Missing = Missing, upload_complete : Bool | Missing = Missing, storage_id : String | Nil | Missing = Missing, uploaded_by : String | Nil | Missing = Missing, id : String | Nil | Missing = Missing)
Assign to multiple attributes.
-
#assign_attributes(params : HTTP::Params | Hash(String, String) | Tuple(String, String))
Assign to mulitple attributes via
HTTP::Params
. -
#assign_attributes(model : PlaceOS::Model::Upload)
Assign to multiple attributes from a model object
- #assign_attributes_from_json(json, root : String)
- #assign_attributes_from_json(json)
- #assign_attributes_from_trusted_json(json, root : String)
-
#assign_attributes_from_trusted_json(json)
Assign each field from JSON if field exists in JSON and has changed in model
- #assign_attributes_from_trusted_yaml(yaml)
-
#assign_attributes_from_yaml(yaml)
Uses the YAML parser as JSON is valid YAML
-
#attributes
Returns a
Hash
of all attribute values -
#attributes_tuple
Returns a
NamedTuple
of all attribute values. -
#before_create
Base class for all Engine models
-
#before_destroy
Base class for all Engine models
-
#before_save
Base class for all Engine models
-
#before_update
Base class for all Engine models
-
#changed?
Check if any attributes have changed.
-
#changed_attributes
Returns a
Hash
with all changed attributes. -
#changed_json(io : IO) : Nil
Serialize the set of changed attributes to JSON.
-
#changed_json : String
Serialize the set of changed attributes to JSON.
- #changed_persist_attributes
-
#changed_yaml(io : IO) : Nil
Serialize the set of changed attributes to YAML.
-
#changed_yaml : String
Serialize the set of changed attributes to YAML.
-
#clear_changes_information
Reset changes for all attributes.
-
#created_at : Time
#created_at
getter -
#created_at=(value : Time)
Setters
#created_at
setter - #created_at? : Time | Nil
- #created_at_assigned? : Bool
-
#created_at_change : Tuple(Time | Nil, Time | Nil) | Nil
Returns a Tuple of the previous and the current value of an instance variable if it has changed
- #created_at_changed? : Bool
-
#created_at_default : Time
#created_at
's default value - #created_at_present? : Bool
- #created_at_was : Time | Nil
-
#created_at_will_change! : Nil
Include
#created_at
in the set of changed attributes, whether it has changed or not. -
#file_md5 : String
#file_md5
getter -
#file_md5=(value : String)
#file_md5
setter - #file_md5? : String | Nil
- #file_md5_assigned? : Bool
-
#file_md5_change : Tuple(String | Nil, String | Nil) | Nil
Returns a Tuple of the previous and the current value of an instance variable if it has changed
- #file_md5_changed? : Bool
-
#file_md5_default : String
#file_md5
's default value - #file_md5_present? : Bool
- #file_md5_was : String | Nil
-
#file_md5_will_change! : Nil
Include
#file_md5
in the set of changed attributes, whether it has changed or not. -
#file_name : String
#file_name
getter -
#file_name=(value : String)
#file_name
setter - #file_name? : String | Nil
- #file_name_assigned? : Bool
-
#file_name_change : Tuple(String | Nil, String | Nil) | Nil
Returns a Tuple of the previous and the current value of an instance variable if it has changed
- #file_name_changed? : Bool
-
#file_name_default : String
#file_name
's default value - #file_name_present? : Bool
- #file_name_was : String | Nil
-
#file_name_will_change! : Nil
Include
#file_name
in the set of changed attributes, whether it has changed or not. -
#file_path : String | Nil
#file_path
getter -
#file_path=(value : String | Nil)
#file_path
setter - #file_path_assigned? : Bool
-
#file_path_change : Tuple(String | Nil | Nil, String | Nil | Nil) | Nil
Returns a Tuple of the previous and the current value of an instance variable if it has changed
- #file_path_changed? : Bool
-
#file_path_default : String | Nil
#file_path
's default value - #file_path_present? : Bool
- #file_path_was : String | Nil | Nil
-
#file_path_will_change! : Nil
Include
#file_path
in the set of changed attributes, whether it has changed or not. -
#file_size : Int64
#file_size
getter -
#file_size=(value : Int64)
#file_size
setter - #file_size? : Int64 | Nil
- #file_size_assigned? : Bool
-
#file_size_change : Tuple(Int64 | Nil, Int64 | Nil) | Nil
Returns a Tuple of the previous and the current value of an instance variable if it has changed
- #file_size_changed? : Bool
-
#file_size_default : Int64
#file_size
's default value - #file_size_present? : Bool
- #file_size_was : Int64 | Nil
-
#file_size_will_change! : Nil
Include
#file_size
in the set of changed attributes, whether it has changed or not. -
#id : String | Nil
#id
getter -
#id=(value : String | Nil)
#id
setter -
#id? : String | Nil | Nil
Same as
#id
but may returnnil
when the record hasn't been saved instead of raising. - #id_assigned? : Bool
-
#id_change : Tuple(String | Nil | Nil, String | Nil | Nil) | Nil
Returns a Tuple of the previous and the current value of an instance variable if it has changed
- #id_changed? : Bool
-
#id_default : String | Nil
#id
's default value - #id_present? : Bool
- #id_was : String | Nil | Nil
-
#id_will_change! : Nil
Include
#id
in the set of changed attributes, whether it has changed or not. -
#invoke_props
Base class for all Engine models
-
#object_key : String
#object_key
getter -
#object_key=(value : String)
#object_key
setter - #object_key? : String | Nil
- #object_key_assigned? : Bool
-
#object_key_change : Tuple(String | Nil, String | Nil) | Nil
Returns a Tuple of the previous and the current value of an instance variable if it has changed
- #object_key_changed? : Bool
-
#object_key_default : String
#object_key
's default value - #object_key_present? : Bool
- #object_key_was : String | Nil
-
#object_key_will_change! : Nil
Include
#object_key
in the set of changed attributes, whether it has changed or not. -
#object_options : Hash(String, JSON::Any)
#object_options
getter -
#object_options=(value : Hash(String, JSON::Any))
#object_options
setter - #object_options? : Hash(String, JSON::Any) | Nil
- #object_options_assigned? : Bool
-
#object_options_change : Tuple(Hash(String, JSON::Any) | Nil, Hash(String, JSON::Any) | Nil) | Nil
Returns a Tuple of the previous and the current value of an instance variable if it has changed
- #object_options_changed? : Bool
-
#object_options_default : Hash(String, JSON::Any)
#object_options
's default value - #object_options_present? : Bool
- #object_options_was : Hash(String, JSON::Any) | Nil
-
#object_options_will_change! : Nil
Include
#object_options
in the set of changed attributes, whether it has changed or not. -
#part_data : Hash(String, JSON::Any)
#part_data
getter -
#part_data=(value : Hash(String, JSON::Any))
#part_data
setter - #part_data? : Hash(String, JSON::Any) | Nil
- #part_data_assigned? : Bool
-
#part_data_change : Tuple(Hash(String, JSON::Any) | Nil, Hash(String, JSON::Any) | Nil) | Nil
Returns a Tuple of the previous and the current value of an instance variable if it has changed
- #part_data_changed(flag : Bool = true)
- #part_data_changed? : Bool
-
#part_data_default : Hash(String, JSON::Any)
#part_data
's default value - #part_data_present? : Bool
- #part_data_was : Hash(String, JSON::Any) | Nil
-
#part_data_will_change! : Nil
Include
#part_data
in the set of changed attributes, whether it has changed or not. -
#part_list : Array(Int32)
#part_list
getter -
#part_list=(value : Array(Int32))
#part_list
setter - #part_list? : Array(Int32) | Nil
- #part_list_assigned? : Bool
-
#part_list_change : Tuple(Array(Int32) | Nil, Array(Int32) | Nil) | Nil
Returns a Tuple of the previous and the current value of an instance variable if it has changed
- #part_list_changed? : Bool
-
#part_list_default : Array(Int32)
#part_list
's default value - #part_list_present? : Bool
- #part_list_was : Array(Int32) | Nil
-
#part_list_will_change! : Nil
Include
#part_list
in the set of changed attributes, whether it has changed or not. -
#permissions : PlaceOS::Model::Upload::Permissions
#permissions
getter -
#permissions=(value : PlaceOS::Model::Upload::Permissions)
#permissions
setter - #permissions? : PlaceOS::Model::Upload::Permissions | Nil
- #permissions_assigned? : Bool
-
#permissions_change : Tuple(PlaceOS::Model::Upload::Permissions | Nil, PlaceOS::Model::Upload::Permissions | Nil) | Nil
Returns a Tuple of the previous and the current value of an instance variable if it has changed
- #permissions_changed? : Bool
-
#permissions_default : Permissions
#permissions
's default value - #permissions_present? : Bool
- #permissions_was : PlaceOS::Model::Upload::Permissions | Nil
-
#permissions_will_change! : Nil
Include
#permissions
in the set of changed attributes, whether it has changed or not. -
#persistent_attributes
Returns a
Hash
of all attributes that can be persisted. -
#public : Bool
#public
getter -
#public=(value : Bool)
#public
setter - #public? : Bool | Nil
- #public_assigned? : Bool
-
#public_change : Tuple(Bool | Nil, Bool | Nil) | Nil
Returns a Tuple of the previous and the current value of an instance variable if it has changed
- #public_changed? : Bool
-
#public_default : Bool
#public
's default value - #public_present? : Bool
- #public_was : Bool | Nil
-
#public_will_change! : Nil
Include
#public
in the set of changed attributes, whether it has changed or not. - #reset_associations
-
#restore_attributes
Reset each attribute to their previous values and clears all changes.
-
#resumable : Bool
#resumable
getter -
#resumable=(value : Bool)
#resumable
setter - #resumable? : Bool | Nil
- #resumable_assigned? : Bool
-
#resumable_change : Tuple(Bool | Nil, Bool | Nil) | Nil
Returns a Tuple of the previous and the current value of an instance variable if it has changed
- #resumable_changed? : Bool
-
#resumable_default : Bool
#resumable
's default value -
#resumable_id : String | Nil
#resumable_id
getter -
#resumable_id=(value : String | Nil)
#resumable_id
setter - #resumable_id_assigned? : Bool
-
#resumable_id_change : Tuple(String | Nil | Nil, String | Nil | Nil) | Nil
Returns a Tuple of the previous and the current value of an instance variable if it has changed
- #resumable_id_changed? : Bool
-
#resumable_id_default : String | Nil
#resumable_id
's default value - #resumable_id_present? : Bool
- #resumable_id_was : String | Nil | Nil
-
#resumable_id_will_change! : Nil
Include
#resumable_id
in the set of changed attributes, whether it has changed or not. - #resumable_present? : Bool
- #resumable_was : Bool | Nil
-
#resumable_will_change! : Nil
Include
#resumable
in the set of changed attributes, whether it has changed or not. -
#run_create_callbacks(&)
Wrap a block with callbacks for the appropriate crud operation
-
#run_destroy_callbacks(&)
Base class for all Engine models
-
#run_save_callbacks(&)
Base class for all Engine models
-
#run_update_callbacks(&)
Base class for all Engine models
-
#storage : Storage | Nil
Retrieves the parent relationship
- #storage! : Storage
-
#storage=(parent : Storage)
Sets the parent relationship
-
#storage_id : String | Nil
#storage_id
getter -
#storage_id=(value : String | Nil)
#storage_id
setter - #storage_id_assigned? : Bool
-
#storage_id_change : Tuple(String | Nil | Nil, String | Nil | Nil) | Nil
Returns a Tuple of the previous and the current value of an instance variable if it has changed
- #storage_id_changed? : Bool
-
#storage_id_default : String | Nil
#storage_id
's default value - #storage_id_present? : Bool
- #storage_id_was : String | Nil | Nil
-
#storage_id_will_change! : Nil
Include
#storage_id
in the set of changed attributes, whether it has changed or not. - #table_name
-
#updated_at : Time
#updated_at
getter -
#updated_at=(value : Time)
#updated_at
setter - #updated_at? : Time | Nil
- #updated_at_assigned? : Bool
-
#updated_at_change : Tuple(Time | Nil, Time | Nil) | Nil
Returns a Tuple of the previous and the current value of an instance variable if it has changed
- #updated_at_changed? : Bool
-
#updated_at_default : Time
#updated_at
's default value - #updated_at_present? : Bool
- #updated_at_was : Time | Nil
-
#updated_at_will_change! : Nil
Include
#updated_at
in the set of changed attributes, whether it has changed or not. -
#upload_complete : Bool
#upload_complete
getter -
#upload_complete=(value : Bool)
#upload_complete
setter - #upload_complete? : Bool | Nil
- #upload_complete_assigned? : Bool
-
#upload_complete_change : Tuple(Bool | Nil, Bool | Nil) | Nil
Returns a Tuple of the previous and the current value of an instance variable if it has changed
- #upload_complete_changed? : Bool
-
#upload_complete_default : Bool
#upload_complete
's default value - #upload_complete_present? : Bool
- #upload_complete_was : Bool | Nil
-
#upload_complete_will_change! : Nil
Include
#upload_complete
in the set of changed attributes, whether it has changed or not. -
#uploaded_by : String | Nil
#uploaded_by
getter -
#uploaded_by=(value : String | Nil)
#uploaded_by
setter - #uploaded_by_assigned? : Bool
-
#uploaded_by_change : Tuple(String | Nil | Nil, String | Nil | Nil) | Nil
Returns a Tuple of the previous and the current value of an instance variable if it has changed
- #uploaded_by_changed? : Bool
-
#uploaded_by_default : String | Nil
#uploaded_by
's default value - #uploaded_by_present? : Bool
- #uploaded_by_was : String | Nil | Nil
-
#uploaded_by_will_change! : Nil
Include
#uploaded_by
in the set of changed attributes, whether it has changed or not. -
#uploaded_email : PlaceOS::Model::Email
#uploaded_email
getter -
#uploaded_email=(value : PlaceOS::Model::Email)
#uploaded_email
setter - #uploaded_email? : PlaceOS::Model::Email | Nil
- #uploaded_email_assigned? : Bool
-
#uploaded_email_change : Tuple(PlaceOS::Model::Email | Nil, PlaceOS::Model::Email | Nil) | Nil
Returns a Tuple of the previous and the current value of an instance variable if it has changed
- #uploaded_email_changed? : Bool
-
#uploaded_email_default : Email
#uploaded_email
's default value - #uploaded_email_present? : Bool
- #uploaded_email_was : PlaceOS::Model::Email | Nil
-
#uploaded_email_will_change! : Nil
Include
#uploaded_email
in the set of changed attributes, whether it has changed or not. -
#user : User | Nil
Retrieves the parent relationship
- #user! : User
-
#user=(parent : User)
Sets the parent relationship
-
#validate_nilability
Validate that all non-nillable fields have values.
Instance methods inherited from class PlaceOS::Model::ModelBase
after_create
after_create,
after_destroy
after_destroy,
after_save
after_save,
after_update
after_update,
apply_defaults
apply_defaults,
assign_attributes(params : HTTP::Params | Hash(String, String) | Tuple(String, String))assign_attributes(model : PlaceOS::Model::ModelBase)
assign_attributes assign_attributes, attributes attributes, attributes_tuple attributes_tuple, before_create before_create, before_destroy before_destroy, before_save before_save, before_update before_update, invoke_props invoke_props, persistent_attributes persistent_attributes, run_create_callbacks(&) run_create_callbacks, run_destroy_callbacks(&) run_destroy_callbacks, run_save_callbacks(&) run_save_callbacks, run_update_callbacks(&) run_update_callbacks
Constructor methods inherited from class PlaceOS::Model::ModelBase
new(ctx : YAML::ParseContext, node : YAML::Nodes::Node)new(pull : JSON::PullParser)
new(rs : DB::ResultSet) new
Class methods inherited from class PlaceOS::Model::ModelBase
attributes : Array(Symbol)
attributes,
auto_generate_id : Bool
auto_generate_id,
from_rs(rs : DB::ResultSet)
from_rs,
primary_key : Symbol
primary_key
Instance methods inherited from module PlaceOS::Model::Associations
format_list_for_postgres(list : Enumerable(String)) : String
format_list_for_postgres,
reset_associations
reset_associations
Class methods inherited from module PlaceOS::Model::Associations
format_list_for_postgres(list : Enumerable(String)) : String
format_list_for_postgres
Macros inherited from module PlaceOS::Model::Associations
belongs_to(parent_class, dependent = :none, association_name = nil, foreign_key = nil, presence = false, pk_type = nil, serialize = true)
belongs_to,
has_many(child_class, collection_name = nil, dependent = :none, foreign_key = nil, serialize = false)
has_many,
has_one(child_class, dependent = :none, association_name = nil, presence = false)
has_one
Constructor Detail
Deserializes the given JSON in string_or_io into
an instance of self
, assuming the JSON consists
of an JSON object with key root, and whose value is
the value to deserialize. Will not deserialise from
fields with mass_assign: false
class User < ActiveModel::Model
attribute name : String
attribute google_id : UUID, mass_assign: false
end
User.from_json(%({"main": {"name": "Jason", "google_id": "f6f70bfb-c882-446d-8758-7ce47db39620"}}), root: "main") # => #<User:0x103131b20 @name="Jason">
Serialize from a trusted JSON source
Serialize from a trusted YAML source
Initialize PlaceOS::Model::Upload from HTTP::Params
.
Class Method Detail
Changefeed at row (if #id
passed) or whole table level.
Returns a ChangeFeed
instance which can be used to invoke async callbacks via on
or
use blocking Iterator
via each
method.
Instance Method Detail
Base class for all Engine models
Base class for all Engine models
Base class for all Engine models
Base class for all Engine models
Assign to multiple attributes.
Assign to mulitple attributes via HTTP::Params
.
Assign to multiple attributes from a model object
Assign each field from JSON if field exists in JSON and has changed in model
Base class for all Engine models
Base class for all Engine models
Base class for all Engine models
Base class for all Engine models
Returns a Tuple of the previous and the current value of an instance variable if it has changed
Include #created_at
in the set of changed attributes, whether it has changed or not.
Returns a Tuple of the previous and the current value of an instance variable if it has changed
Include #file_md5
in the set of changed attributes, whether it has changed or not.
Returns a Tuple of the previous and the current value of an instance variable if it has changed
Include #file_name
in the set of changed attributes, whether it has changed or not.
Returns a Tuple of the previous and the current value of an instance variable if it has changed
Include #file_path
in the set of changed attributes, whether it has changed or not.
Returns a Tuple of the previous and the current value of an instance variable if it has changed
Include #file_size
in the set of changed attributes, whether it has changed or not.
Same as #id
but may return nil
when the record hasn't been saved
instead of raising.
Returns a Tuple of the previous and the current value of an instance variable if it has changed
Include #id
in the set of changed attributes, whether it has changed or not.
Base class for all Engine models
Returns a Tuple of the previous and the current value of an instance variable if it has changed
Include #object_key
in the set of changed attributes, whether it has changed or not.
Returns a Tuple of the previous and the current value of an instance variable if it has changed
Include #object_options
in the set of changed attributes, whether it has changed or not.
Returns a Tuple of the previous and the current value of an instance variable if it has changed
Include #part_data
in the set of changed attributes, whether it has changed or not.
Returns a Tuple of the previous and the current value of an instance variable if it has changed
Include #part_list
in the set of changed attributes, whether it has changed or not.
Returns a Tuple of the previous and the current value of an instance variable if it has changed
Include #permissions
in the set of changed attributes, whether it has changed or not.
Returns a Tuple of the previous and the current value of an instance variable if it has changed
Include #public
in the set of changed attributes, whether it has changed or not.
Returns a Tuple of the previous and the current value of an instance variable if it has changed
Returns a Tuple of the previous and the current value of an instance variable if it has changed
Include #resumable_id
in the set of changed attributes, whether it has changed or not.
Include #resumable
in the set of changed attributes, whether it has changed or not.
Base class for all Engine models
Base class for all Engine models
Base class for all Engine models
Returns a Tuple of the previous and the current value of an instance variable if it has changed
Include #storage_id
in the set of changed attributes, whether it has changed or not.
Returns a Tuple of the previous and the current value of an instance variable if it has changed
Include #updated_at
in the set of changed attributes, whether it has changed or not.
Returns a Tuple of the previous and the current value of an instance variable if it has changed
Include #upload_complete
in the set of changed attributes, whether it has changed or not.
Returns a Tuple of the previous and the current value of an instance variable if it has changed
Include #uploaded_by
in the set of changed attributes, whether it has changed or not.
Returns a Tuple of the previous and the current value of an instance variable if it has changed
Include #uploaded_email
in the set of changed attributes, whether it has changed or not.