Method: SDM::SecretStoreHistory#initialize
- Defined in:
- lib/models/porcelain.rb
#initialize(activity_id: nil, deleted_at: nil, secret_store: nil, timestamp: nil) ⇒ SecretStoreHistory
Returns a new instance of SecretStoreHistory.
10762 10763 10764 10765 10766 10767 10768 10769 10770 10771 10772 |
# File 'lib/models/porcelain.rb', line 10762 def initialize( activity_id: nil, deleted_at: nil, secret_store: nil, timestamp: nil ) @activity_id = activity_id == nil ? "" : activity_id @deleted_at = deleted_at == nil ? nil : deleted_at @secret_store = secret_store == nil ? nil : secret_store @timestamp = == nil ? nil : end |