--- id: v2024-workflow-library-action title: WorkflowLibraryAction pagination_label: WorkflowLibraryAction sidebar_label: WorkflowLibraryAction sidebar_class_name: gosdk keywords: ['go', 'Golang', 'sdk', 'WorkflowLibraryAction', 'V2024WorkflowLibraryAction'] slug: /tools/sdk/go/v2024/models/workflow-library-action tags: ['SDK', 'Software Development Kit', 'WorkflowLibraryAction', 'V2024WorkflowLibraryAction'] --- # WorkflowLibraryAction ## Properties Name | Type | Description | Notes ------------ | ------------- | ------------- | ------------- **Id** | Pointer to **string** | Action ID. This is a static namespaced ID for the action | [optional] **Name** | Pointer to **string** | Action Name | [optional] **Type** | Pointer to **string** | Action type | [optional] **Description** | Pointer to **string** | Action Description | [optional] **FormFields** | Pointer to [**[]WorkflowLibraryFormFields**](workflow-library-form-fields) | One or more inputs that the action accepts | [optional] **ExampleOutput** | Pointer to [**WorkflowLibraryActionExampleOutput**](workflow-library-action-example-output) | | [optional] **Deprecated** | Pointer to **bool** | | [optional] **DeprecatedBy** | Pointer to **SailPointTime** | | [optional] **VersionNumber** | Pointer to **int32** | Version number | [optional] **IsSimulationEnabled** | Pointer to **bool** | | [optional] **IsDynamicSchema** | Pointer to **bool** | Determines whether the dynamic output schema is returned in place of the action's output schema. The dynamic schema lists non-static properties, like properties of a workflow form where each form has different fields. These will be provided dynamically based on available form fields. | [optional] [default to false] **OutputSchema** | Pointer to **map[string]interface{}** | Defines the output schema, if any, that this action produces. | [optional] ## Methods ### NewWorkflowLibraryAction `func NewWorkflowLibraryAction() *WorkflowLibraryAction` NewWorkflowLibraryAction instantiates a new WorkflowLibraryAction 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 ### NewWorkflowLibraryActionWithDefaults `func NewWorkflowLibraryActionWithDefaults() *WorkflowLibraryAction` NewWorkflowLibraryActionWithDefaults instantiates a new WorkflowLibraryAction 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 ### GetId `func (o *WorkflowLibraryAction) GetId() string` GetId returns the Id field if non-nil, zero value otherwise. ### GetIdOk `func (o *WorkflowLibraryAction) GetIdOk() (*string, bool)` GetIdOk returns a tuple with the Id field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetId `func (o *WorkflowLibraryAction) SetId(v string)` SetId sets Id field to given value. ### HasId `func (o *WorkflowLibraryAction) HasId() bool` HasId returns a boolean if a field has been set. ### GetName `func (o *WorkflowLibraryAction) GetName() string` GetName returns the Name field if non-nil, zero value otherwise. ### GetNameOk `func (o *WorkflowLibraryAction) GetNameOk() (*string, bool)` GetNameOk returns a tuple with the Name field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetName `func (o *WorkflowLibraryAction) SetName(v string)` SetName sets Name field to given value. ### HasName `func (o *WorkflowLibraryAction) HasName() bool` HasName returns a boolean if a field has been set. ### GetType `func (o *WorkflowLibraryAction) GetType() string` GetType returns the Type field if non-nil, zero value otherwise. ### GetTypeOk `func (o *WorkflowLibraryAction) GetTypeOk() (*string, bool)` GetTypeOk returns a tuple with the Type field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetType `func (o *WorkflowLibraryAction) SetType(v string)` SetType sets Type field to given value. ### HasType `func (o *WorkflowLibraryAction) HasType() bool` HasType returns a boolean if a field has been set. ### GetDescription `func (o *WorkflowLibraryAction) GetDescription() string` GetDescription returns the Description field if non-nil, zero value otherwise. ### GetDescriptionOk `func (o *WorkflowLibraryAction) GetDescriptionOk() (*string, bool)` GetDescriptionOk returns a tuple with the Description field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetDescription `func (o *WorkflowLibraryAction) SetDescription(v string)` SetDescription sets Description field to given value. ### HasDescription `func (o *WorkflowLibraryAction) HasDescription() bool` HasDescription returns a boolean if a field has been set. ### GetFormFields `func (o *WorkflowLibraryAction) GetFormFields() []WorkflowLibraryFormFields` GetFormFields returns the FormFields field if non-nil, zero value otherwise. ### GetFormFieldsOk `func (o *WorkflowLibraryAction) GetFormFieldsOk() (*[]WorkflowLibraryFormFields, bool)` GetFormFieldsOk returns a tuple with the FormFields field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetFormFields `func (o *WorkflowLibraryAction) SetFormFields(v []WorkflowLibraryFormFields)` SetFormFields sets FormFields field to given value. ### HasFormFields `func (o *WorkflowLibraryAction) HasFormFields() bool` HasFormFields returns a boolean if a field has been set. ### SetFormFieldsNil `func (o *WorkflowLibraryAction) SetFormFieldsNil(b bool)` SetFormFieldsNil sets the value for FormFields to be an explicit nil ### UnsetFormFields `func (o *WorkflowLibraryAction) UnsetFormFields()` UnsetFormFields ensures that no value is present for FormFields, not even an explicit nil ### GetExampleOutput `func (o *WorkflowLibraryAction) GetExampleOutput() WorkflowLibraryActionExampleOutput` GetExampleOutput returns the ExampleOutput field if non-nil, zero value otherwise. ### GetExampleOutputOk `func (o *WorkflowLibraryAction) GetExampleOutputOk() (*WorkflowLibraryActionExampleOutput, bool)` GetExampleOutputOk returns a tuple with the ExampleOutput field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetExampleOutput `func (o *WorkflowLibraryAction) SetExampleOutput(v WorkflowLibraryActionExampleOutput)` SetExampleOutput sets ExampleOutput field to given value. ### HasExampleOutput `func (o *WorkflowLibraryAction) HasExampleOutput() bool` HasExampleOutput returns a boolean if a field has been set. ### GetDeprecated `func (o *WorkflowLibraryAction) GetDeprecated() bool` GetDeprecated returns the Deprecated field if non-nil, zero value otherwise. ### GetDeprecatedOk `func (o *WorkflowLibraryAction) GetDeprecatedOk() (*bool, bool)` GetDeprecatedOk returns a tuple with the Deprecated field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetDeprecated `func (o *WorkflowLibraryAction) SetDeprecated(v bool)` SetDeprecated sets Deprecated field to given value. ### HasDeprecated `func (o *WorkflowLibraryAction) HasDeprecated() bool` HasDeprecated returns a boolean if a field has been set. ### GetDeprecatedBy `func (o *WorkflowLibraryAction) GetDeprecatedBy() SailPointTime` GetDeprecatedBy returns the DeprecatedBy field if non-nil, zero value otherwise. ### GetDeprecatedByOk `func (o *WorkflowLibraryAction) GetDeprecatedByOk() (*SailPointTime, bool)` GetDeprecatedByOk returns a tuple with the DeprecatedBy field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetDeprecatedBy `func (o *WorkflowLibraryAction) SetDeprecatedBy(v SailPointTime)` SetDeprecatedBy sets DeprecatedBy field to given value. ### HasDeprecatedBy `func (o *WorkflowLibraryAction) HasDeprecatedBy() bool` HasDeprecatedBy returns a boolean if a field has been set. ### GetVersionNumber `func (o *WorkflowLibraryAction) GetVersionNumber() int32` GetVersionNumber returns the VersionNumber field if non-nil, zero value otherwise. ### GetVersionNumberOk `func (o *WorkflowLibraryAction) GetVersionNumberOk() (*int32, bool)` GetVersionNumberOk returns a tuple with the VersionNumber field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetVersionNumber `func (o *WorkflowLibraryAction) SetVersionNumber(v int32)` SetVersionNumber sets VersionNumber field to given value. ### HasVersionNumber `func (o *WorkflowLibraryAction) HasVersionNumber() bool` HasVersionNumber returns a boolean if a field has been set. ### GetIsSimulationEnabled `func (o *WorkflowLibraryAction) GetIsSimulationEnabled() bool` GetIsSimulationEnabled returns the IsSimulationEnabled field if non-nil, zero value otherwise. ### GetIsSimulationEnabledOk `func (o *WorkflowLibraryAction) GetIsSimulationEnabledOk() (*bool, bool)` GetIsSimulationEnabledOk returns a tuple with the IsSimulationEnabled field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetIsSimulationEnabled `func (o *WorkflowLibraryAction) SetIsSimulationEnabled(v bool)` SetIsSimulationEnabled sets IsSimulationEnabled field to given value. ### HasIsSimulationEnabled `func (o *WorkflowLibraryAction) HasIsSimulationEnabled() bool` HasIsSimulationEnabled returns a boolean if a field has been set. ### GetIsDynamicSchema `func (o *WorkflowLibraryAction) GetIsDynamicSchema() bool` GetIsDynamicSchema returns the IsDynamicSchema field if non-nil, zero value otherwise. ### GetIsDynamicSchemaOk `func (o *WorkflowLibraryAction) GetIsDynamicSchemaOk() (*bool, bool)` GetIsDynamicSchemaOk returns a tuple with the IsDynamicSchema field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetIsDynamicSchema `func (o *WorkflowLibraryAction) SetIsDynamicSchema(v bool)` SetIsDynamicSchema sets IsDynamicSchema field to given value. ### HasIsDynamicSchema `func (o *WorkflowLibraryAction) HasIsDynamicSchema() bool` HasIsDynamicSchema returns a boolean if a field has been set. ### GetOutputSchema `func (o *WorkflowLibraryAction) GetOutputSchema() map[string]interface{}` GetOutputSchema returns the OutputSchema field if non-nil, zero value otherwise. ### GetOutputSchemaOk `func (o *WorkflowLibraryAction) GetOutputSchemaOk() (*map[string]interface{}, bool)` GetOutputSchemaOk returns a tuple with the OutputSchema field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetOutputSchema `func (o *WorkflowLibraryAction) SetOutputSchema(v map[string]interface{})` SetOutputSchema sets OutputSchema field to given value. ### HasOutputSchema `func (o *WorkflowLibraryAction) HasOutputSchema() bool` HasOutputSchema returns a boolean if a field has been set.