class TravelsPlans
- TravelsPlans
 - Jennifer::Model::Base
 - Jennifer::Model::Resource
 - Reference
 - Object
 
Defined in:
models/travels_plans.crConstructors
- 
        .new(values : Hash(Symbol, AttrType) | NamedTuple)
        
          
Accepts symbol hash or named tuple, stringify it and calls constructor with string-based keys hash.
 - 
        .new
        
          
Default constructor without any fields
 
Class Method Summary
Instance Method Summary
- #created_at : Time?
 - #created_at!
 - #created_at=(_created_at : Union(Time, Nil))
 - #created_at=(_created_at : String)
 - #created_at=(_created_at : AttrType)
 - #created_at_changed? : Bool
 - #created_at_will_change!
 - 
        #destroy : Bool
        
          
Deletes object from db and calls all related callbacks.
 - #id : Int32?
 - #id!
 - #id=(_id : Int32 | Nil)
 - #id=(_id : String)
 - #id=(_id : AttrType)
 - #id_changed? : Bool
 - #id_will_change!
 - #track_timestamps_on_create
 - #track_timestamps_on_update
 - #travel_stops : String
 - #travel_stops!
 - #travel_stops=(_travel_stops : String)
 - #travel_stops=(_travel_stops : AttrType)
 - #travel_stops_changed? : Bool
 - #travel_stops_will_change!
 - #updated_at : Time?
 - #updated_at!
 - #updated_at=(_updated_at : Union(Time, Nil))
 - #updated_at=(_updated_at : String)
 - #updated_at=(_updated_at : AttrType)
 - #updated_at_changed? : Bool
 - #updated_at_will_change!
 
Constructor Detail
Accepts symbol hash or named tuple, stringify it and calls constructor with string-based keys hash.
Class Method Detail
Instance Method Detail
        
        def destroy : Bool
        #
      
      
        
              Description copied from class Jennifer::Model::Base
            
          
          Deletes object from db and calls all related callbacks.
It returns true if the object was successfully deleted.
Contact.first!.destroy # => true