empty method and model folders for go to start fixing build

This commit is contained in:
darrell-thobe-sp
2025-03-31 09:09:43 -04:00
parent 34d14a520e
commit 1b874a5285
2759 changed files with 2 additions and 516357 deletions

View File

@@ -1,116 +0,0 @@
---
id: v2024-form-condition
title: FormCondition
pagination_label: FormCondition
sidebar_label: FormCondition
sidebar_class_name: gosdk
keywords: ['go', 'Golang', 'sdk', 'FormCondition', 'V2024FormCondition']
slug: /tools/sdk/go/v2024/models/form-condition
tags: ['SDK', 'Software Development Kit', 'FormCondition', 'V2024FormCondition']
---
# FormCondition
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**RuleOperator** | Pointer to **string** | ConditionRuleLogicalOperatorType value. AND ConditionRuleLogicalOperatorTypeAnd OR ConditionRuleLogicalOperatorTypeOr | [optional]
**Rules** | Pointer to [**[]ConditionRule**](condition-rule) | List of rules. | [optional]
**Effects** | Pointer to [**[]ConditionEffect**](condition-effect) | List of effects. | [optional]
## Methods
### NewFormCondition
`func NewFormCondition() *FormCondition`
NewFormCondition instantiates a new FormCondition 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
### NewFormConditionWithDefaults
`func NewFormConditionWithDefaults() *FormCondition`
NewFormConditionWithDefaults instantiates a new FormCondition 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
### GetRuleOperator
`func (o *FormCondition) GetRuleOperator() string`
GetRuleOperator returns the RuleOperator field if non-nil, zero value otherwise.
### GetRuleOperatorOk
`func (o *FormCondition) GetRuleOperatorOk() (*string, bool)`
GetRuleOperatorOk returns a tuple with the RuleOperator field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetRuleOperator
`func (o *FormCondition) SetRuleOperator(v string)`
SetRuleOperator sets RuleOperator field to given value.
### HasRuleOperator
`func (o *FormCondition) HasRuleOperator() bool`
HasRuleOperator returns a boolean if a field has been set.
### GetRules
`func (o *FormCondition) GetRules() []ConditionRule`
GetRules returns the Rules field if non-nil, zero value otherwise.
### GetRulesOk
`func (o *FormCondition) GetRulesOk() (*[]ConditionRule, bool)`
GetRulesOk returns a tuple with the Rules field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetRules
`func (o *FormCondition) SetRules(v []ConditionRule)`
SetRules sets Rules field to given value.
### HasRules
`func (o *FormCondition) HasRules() bool`
HasRules returns a boolean if a field has been set.
### GetEffects
`func (o *FormCondition) GetEffects() []ConditionEffect`
GetEffects returns the Effects field if non-nil, zero value otherwise.
### GetEffectsOk
`func (o *FormCondition) GetEffectsOk() (*[]ConditionEffect, 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.
### SetEffects
`func (o *FormCondition) SetEffects(v []ConditionEffect)`
SetEffects sets Effects field to given value.
### HasEffects
`func (o *FormCondition) HasEffects() bool`
HasEffects returns a boolean if a field has been set.