Skip to content

Commit

Permalink
Fix map issues
Browse files Browse the repository at this point in the history
  • Loading branch information
Crandel committed Jan 16, 2025
1 parent d733eff commit e0bdb04
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions docs/GenerateRuleTitleRule.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,20 +4,20 @@

Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**Effects** | Pointer to [**[]map[string]interface{}**](map[string]interface{}.md) | An array of effectful Talang expressions in arrays that will be evaluated when a rule matches. | [optional]
**Condition** | Pointer to [**[]map[string]interface{}**](map[string]interface{}.md) | A Talang expression that will be evaluated in the context of the given event. | [optional]
**Effects** | Pointer to [**[]interface{}**]([]interface{}.md) | An array of effectful Talang expressions in arrays that will be evaluated when a rule matches. | [optional]
**Condition** | Pointer to [**[]interface{}**]([]interface{}.md) | A Talang expression that will be evaluated in the context of the given event. | [optional]

## Methods

### GetEffects

`func (o *GenerateRuleTitleRule) GetEffects() []map[string]interface{}`
`func (o *GenerateRuleTitleRule) GetEffects() []interface{}`

GetEffects returns the Effects field if non-nil, zero value otherwise.

### GetEffectsOk

`func (o *GenerateRuleTitleRule) GetEffectsOk() ([]map[string]interface{}, bool)`
`func (o *GenerateRuleTitleRule) GetEffectsOk() ([]interface{}, bool)`

GetEffectsOk returns a tuple with the Effects field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
Expand All @@ -30,19 +30,19 @@ HasEffects returns a boolean if a field has been set.

### SetEffects

`func (o *GenerateRuleTitleRule) SetEffects(v []map[string]interface{})`
`func (o *GenerateRuleTitleRule) SetEffects(v []interface{})`

SetEffects gets a reference to the given []map[string]interface{} and assigns it to the Effects field.
SetEffects gets a reference to the given []interface{} and assigns it to the Effects field.

### GetCondition

`func (o *GenerateRuleTitleRule) GetCondition() []map[string]interface{}`
`func (o *GenerateRuleTitleRule) GetCondition() []interface{}`

GetCondition returns the Condition field if non-nil, zero value otherwise.

### GetConditionOk

`func (o *GenerateRuleTitleRule) GetConditionOk() ([]map[string]interface{}, bool)`
`func (o *GenerateRuleTitleRule) GetConditionOk() ([]interface{}, bool)`

GetConditionOk returns a tuple with the Condition field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
Expand All @@ -55,9 +55,9 @@ HasCondition returns a boolean if a field has been set.

### SetCondition

`func (o *GenerateRuleTitleRule) SetCondition(v []map[string]interface{})`
`func (o *GenerateRuleTitleRule) SetCondition(v []interface{})`

SetCondition gets a reference to the given []map[string]interface{} and assigns it to the Condition field.
SetCondition gets a reference to the given []interface{} and assigns it to the Condition field.


[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
Expand Down

0 comments on commit e0bdb04

Please sign in to comment.