Class: SDM::ApprovalWorkflowHistory

Inherits:
Object
  • Object
show all
Defined in:
lib/models/porcelain.rb

Overview

ApprovalWorkflowHistory records the state of an ApprovalWorkflow at a given point in time, where every change (create, update and delete) to an ApprovalWorkflow produces an ApprovalWorkflowHistory record.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(activity_id: nil, approval_workflow: nil, deleted_at: nil, timestamp: nil) ⇒ ApprovalWorkflowHistory

Returns a new instance of ApprovalWorkflowHistory.



2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
# File 'lib/models/porcelain.rb', line 2493

def initialize(
  activity_id: nil,
  approval_workflow: nil,
  deleted_at: nil,
  timestamp: nil
)
  @activity_id = activity_id == nil ? "" : activity_id
  @approval_workflow = approval_workflow == nil ? nil : approval_workflow
  @deleted_at = deleted_at == nil ? nil : deleted_at
  @timestamp = timestamp == nil ? nil : timestamp
end

Instance Attribute Details

#activity_idObject

The unique identifier of the Activity that produced this change to the ApprovalWorkflow. May be empty for some system-initiated updates.



2485
2486
2487
# File 'lib/models/porcelain.rb', line 2485

def activity_id
  @activity_id
end

#approval_workflowObject

The complete ApprovalWorkflow state at this time.



2487
2488
2489
# File 'lib/models/porcelain.rb', line 2487

def approval_workflow
  @approval_workflow
end

#deleted_atObject

If this ApprovalWorkflow was deleted, the time it was deleted.



2489
2490
2491
# File 'lib/models/porcelain.rb', line 2489

def deleted_at
  @deleted_at
end

#timestampObject

The time at which the ApprovalWorkflow state was recorded.



2491
2492
2493
# File 'lib/models/porcelain.rb', line 2491

def timestamp
  @timestamp
end

Instance Method Details

#to_json(options = {}) ⇒ Object



2505
2506
2507
2508
2509
2510
2511
# File 'lib/models/porcelain.rb', line 2505

def to_json(options = {})
  hash = {}
  self.instance_variables.each do |var|
    hash[var.id2name.delete_prefix("@")] = self.instance_variable_get var
  end
  hash.to_json
end