Files
openapi-go-answer/docs/SchemaConfigField.md
2023-08-22 10:37:28 +08:00

6.3 KiB

SchemaConfigField

Properties

Name Type Description Notes
Description Pointer to string [optional]
Name Pointer to string [optional]
Options Pointer to []SchemaConfigFieldOption [optional]
Required Pointer to bool [optional]
Title Pointer to string [optional]
Type Pointer to string [optional]
UiOptions Pointer to SchemaConfigFieldUIOptions [optional]
Value Pointer to map[string]interface{} [optional]

Methods

NewSchemaConfigField

func NewSchemaConfigField() *SchemaConfigField

NewSchemaConfigField instantiates a new SchemaConfigField 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

NewSchemaConfigFieldWithDefaults

func NewSchemaConfigFieldWithDefaults() *SchemaConfigField

NewSchemaConfigFieldWithDefaults instantiates a new SchemaConfigField 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

GetDescription

func (o *SchemaConfigField) GetDescription() string

GetDescription returns the Description field if non-nil, zero value otherwise.

GetDescriptionOk

func (o *SchemaConfigField) 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 *SchemaConfigField) SetDescription(v string)

SetDescription sets Description field to given value.

HasDescription

func (o *SchemaConfigField) HasDescription() bool

HasDescription returns a boolean if a field has been set.

GetName

func (o *SchemaConfigField) GetName() string

GetName returns the Name field if non-nil, zero value otherwise.

GetNameOk

func (o *SchemaConfigField) 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 *SchemaConfigField) SetName(v string)

SetName sets Name field to given value.

HasName

func (o *SchemaConfigField) HasName() bool

HasName returns a boolean if a field has been set.

GetOptions

func (o *SchemaConfigField) GetOptions() []SchemaConfigFieldOption

GetOptions returns the Options field if non-nil, zero value otherwise.

GetOptionsOk

func (o *SchemaConfigField) GetOptionsOk() (*[]SchemaConfigFieldOption, bool)

GetOptionsOk returns a tuple with the Options field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.

SetOptions

func (o *SchemaConfigField) SetOptions(v []SchemaConfigFieldOption)

SetOptions sets Options field to given value.

HasOptions

func (o *SchemaConfigField) HasOptions() bool

HasOptions returns a boolean if a field has been set.

GetRequired

func (o *SchemaConfigField) GetRequired() bool

GetRequired returns the Required field if non-nil, zero value otherwise.

GetRequiredOk

func (o *SchemaConfigField) GetRequiredOk() (*bool, bool)

GetRequiredOk returns a tuple with the Required field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.

SetRequired

func (o *SchemaConfigField) SetRequired(v bool)

SetRequired sets Required field to given value.

HasRequired

func (o *SchemaConfigField) HasRequired() bool

HasRequired returns a boolean if a field has been set.

GetTitle

func (o *SchemaConfigField) GetTitle() string

GetTitle returns the Title field if non-nil, zero value otherwise.

GetTitleOk

func (o *SchemaConfigField) GetTitleOk() (*string, bool)

GetTitleOk returns a tuple with the Title field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.

SetTitle

func (o *SchemaConfigField) SetTitle(v string)

SetTitle sets Title field to given value.

HasTitle

func (o *SchemaConfigField) HasTitle() bool

HasTitle returns a boolean if a field has been set.

GetType

func (o *SchemaConfigField) GetType() string

GetType returns the Type field if non-nil, zero value otherwise.

GetTypeOk

func (o *SchemaConfigField) 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 *SchemaConfigField) SetType(v string)

SetType sets Type field to given value.

HasType

func (o *SchemaConfigField) HasType() bool

HasType returns a boolean if a field has been set.

GetUiOptions

func (o *SchemaConfigField) GetUiOptions() SchemaConfigFieldUIOptions

GetUiOptions returns the UiOptions field if non-nil, zero value otherwise.

GetUiOptionsOk

func (o *SchemaConfigField) GetUiOptionsOk() (*SchemaConfigFieldUIOptions, bool)

GetUiOptionsOk returns a tuple with the UiOptions field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.

SetUiOptions

func (o *SchemaConfigField) SetUiOptions(v SchemaConfigFieldUIOptions)

SetUiOptions sets UiOptions field to given value.

HasUiOptions

func (o *SchemaConfigField) HasUiOptions() bool

HasUiOptions returns a boolean if a field has been set.

GetValue

func (o *SchemaConfigField) GetValue() map[string]interface{}

GetValue returns the Value field if non-nil, zero value otherwise.

GetValueOk

func (o *SchemaConfigField) GetValueOk() (*map[string]interface{}, bool)

GetValueOk returns a tuple with the Value field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.

SetValue

func (o *SchemaConfigField) SetValue(v map[string]interface{})

SetValue sets Value field to given value.

HasValue

func (o *SchemaConfigField) HasValue() bool

HasValue returns a boolean if a field has been set.

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