Method: SDM::AccountAttachmentHistory#initialize
- Defined in:
- lib/models/porcelain.rb
#initialize(account_attachment: nil, activity_id: nil, deleted_at: nil, timestamp: nil) ⇒ AccountAttachmentHistory
Returns a new instance of AccountAttachmentHistory.
1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 |
# File 'lib/models/porcelain.rb', line 1061 def initialize( account_attachment: nil, activity_id: nil, deleted_at: nil, timestamp: nil ) @account_attachment = == nil ? nil : @activity_id = activity_id == nil ? "" : activity_id @deleted_at = deleted_at == nil ? nil : deleted_at @timestamp = == nil ? nil : end |