Name | Type | Description | Notes |
---|---|---|---|
WorkflowId | string | The unique identifier for the Workflow. | |
ApplicantId | string | The unique identifier for the Applicant. | |
CustomData | Pointer to map[string]interface{} | Optional object with custom input data to be used in the Workflow Run. | [optional] |
Tags | Pointer to []string | Tags or labels to assign to the workflow run. | [optional] |
Link | Pointer to map[string]interface{} | Optional object for the configuration of the Workflow Run link. | [optional] |
func NewCreateWorkflowRunRequest(workflowId string, applicantId string, ) *CreateWorkflowRunRequest
NewCreateWorkflowRunRequest instantiates a new CreateWorkflowRunRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed
func NewCreateWorkflowRunRequestWithDefaults() *CreateWorkflowRunRequest
NewCreateWorkflowRunRequestWithDefaults instantiates a new CreateWorkflowRunRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set
func (o *CreateWorkflowRunRequest) GetWorkflowId() string
GetWorkflowId returns the WorkflowId field if non-nil, zero value otherwise.
func (o *CreateWorkflowRunRequest) GetWorkflowIdOk() (*string, bool)
GetWorkflowIdOk returns a tuple with the WorkflowId field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *CreateWorkflowRunRequest) SetWorkflowId(v string)
SetWorkflowId sets WorkflowId field to given value.
func (o *CreateWorkflowRunRequest) GetApplicantId() string
GetApplicantId returns the ApplicantId field if non-nil, zero value otherwise.
func (o *CreateWorkflowRunRequest) GetApplicantIdOk() (*string, bool)
GetApplicantIdOk returns a tuple with the ApplicantId field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *CreateWorkflowRunRequest) SetApplicantId(v string)
SetApplicantId sets ApplicantId field to given value.
func (o *CreateWorkflowRunRequest) GetCustomData() map[string]interface{}
GetCustomData returns the CustomData field if non-nil, zero value otherwise.
func (o *CreateWorkflowRunRequest) GetCustomDataOk() (*map[string]interface{}, bool)
GetCustomDataOk returns a tuple with the CustomData field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *CreateWorkflowRunRequest) SetCustomData(v map[string]interface{})
SetCustomData sets CustomData field to given value.
func (o *CreateWorkflowRunRequest) HasCustomData() bool
HasCustomData returns a boolean if a field has been set.
func (o *CreateWorkflowRunRequest) GetTags() []string
GetTags returns the Tags field if non-nil, zero value otherwise.
func (o *CreateWorkflowRunRequest) GetTagsOk() (*[]string, bool)
GetTagsOk returns a tuple with the Tags field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *CreateWorkflowRunRequest) SetTags(v []string)
SetTags sets Tags field to given value.
func (o *CreateWorkflowRunRequest) HasTags() bool
HasTags returns a boolean if a field has been set.
func (o *CreateWorkflowRunRequest) GetLink() map[string]interface{}
GetLink returns the Link field if non-nil, zero value otherwise.
func (o *CreateWorkflowRunRequest) GetLinkOk() (*map[string]interface{}, bool)
GetLinkOk returns a tuple with the Link field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *CreateWorkflowRunRequest) SetLink(v map[string]interface{})
SetLink sets Link field to given value.
func (o *CreateWorkflowRunRequest) HasLink() bool
HasLink returns a boolean if a field has been set.