Skip to content

Latest commit

 

History

History
138 lines (77 loc) · 3.32 KB

Fields.md

File metadata and controls

138 lines (77 loc) · 3.32 KB

Fields

Properties

Name Type Description Notes
Field Pointer to NullableString [optional]
Message Pointer to NullableString [optional]
Value Pointer to NullableString [optional]

Methods

NewFields

func NewFields() *Fields

NewFields instantiates a new Fields 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

NewFieldsWithDefaults

func NewFieldsWithDefaults() *Fields

NewFieldsWithDefaults instantiates a new Fields 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

GetField

func (o *Fields) GetField() string

GetField returns the Field field if non-nil, zero value otherwise.

GetFieldOk

func (o *Fields) GetFieldOk() (*string, bool)

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

SetField

func (o *Fields) SetField(v string)

SetField sets Field field to given value.

HasField

func (o *Fields) HasField() bool

HasField returns a boolean if a field has been set.

SetFieldNil

func (o *Fields) SetFieldNil(b bool)

SetFieldNil sets the value for Field to be an explicit nil

UnsetField

func (o *Fields) UnsetField()

UnsetField ensures that no value is present for Field, not even an explicit nil

GetMessage

func (o *Fields) GetMessage() string

GetMessage returns the Message field if non-nil, zero value otherwise.

GetMessageOk

func (o *Fields) GetMessageOk() (*string, bool)

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

SetMessage

func (o *Fields) SetMessage(v string)

SetMessage sets Message field to given value.

HasMessage

func (o *Fields) HasMessage() bool

HasMessage returns a boolean if a field has been set.

SetMessageNil

func (o *Fields) SetMessageNil(b bool)

SetMessageNil sets the value for Message to be an explicit nil

UnsetMessage

func (o *Fields) UnsetMessage()

UnsetMessage ensures that no value is present for Message, not even an explicit nil

GetValue

func (o *Fields) GetValue() string

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

GetValueOk

func (o *Fields) GetValueOk() (*string, 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 *Fields) SetValue(v string)

SetValue sets Value field to given value.

HasValue

func (o *Fields) HasValue() bool

HasValue returns a boolean if a field has been set.

SetValueNil

func (o *Fields) SetValueNil(b bool)

SetValueNil sets the value for Value to be an explicit nil

UnsetValue

func (o *Fields) UnsetValue()

UnsetValue ensures that no value is present for Value, not even an explicit nil

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