Skip to content

Latest commit

 

History

History
160 lines (87 loc) · 4.68 KB

WorkflowLibraryAction.md

File metadata and controls

160 lines (87 loc) · 4.68 KB

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]
Description Pointer to string Action Description [optional]
FormFields Pointer to []WorkflowLibraryFormFields One or more inputs that the action accepts [optional]
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.

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.

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.

[Back to Model list] [Back to API list] [Back to README]