Skip to content

Latest commit

 

History

History
24 lines (18 loc) · 789 Bytes

PipelineStepParamBinding.md

File metadata and controls

24 lines (18 loc) · 789 Bytes

SajariAPIClient::PipelineStepParamBinding

Properties

Name Type Description Notes
bind String Bind the step parameter to a pipeline variable. [optional]
constant String Bind the step parameter to a constant value. [optional]
default_value String Set a default value for the step parameter. This allows you to set a default value for the step parameter when it is not bound to a pipeline variable. [optional]
description String Set the description of the step parameter. [optional]

Example

require 'sdk_ruby'

instance = SajariAPIClient::PipelineStepParamBinding.new(
  bind: null,
  constant: null,
  default_value: null,
  description: null
)