Method: SDM::ApprovalFlowStep#initialize
- Defined in:
- lib/models/porcelain.rb
#initialize(approvers: nil, quantifier: nil, skip_after: nil) ⇒ ApprovalFlowStep
Returns a new instance of ApprovalFlowStep.
2684 2685 2686 2687 2688 2689 2690 2691 2692 |
# File 'lib/models/porcelain.rb', line 2684 def initialize( approvers: nil, quantifier: nil, skip_after: nil ) @approvers = approvers == nil ? [] : approvers @quantifier = quantifier == nil ? "" : quantifier @skip_after = skip_after == nil ? nil : skip_after end |