Skip to content
This repository has been archived by the owner on Nov 20, 2023. It is now read-only.

Latest commit

 

History

History
160 lines (87 loc) · 3.74 KB

FieldDiff.md

File metadata and controls

160 lines (87 loc) · 3.74 KB

FieldDiff

Properties

Name Type Description Notes
Annotations Pointer to []string [optional]
Name Pointer to string [optional]
New Pointer to string [optional]
Old Pointer to string [optional]
Type Pointer to string [optional]

Methods

NewFieldDiff

func NewFieldDiff() *FieldDiff

NewFieldDiff instantiates a new FieldDiff 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

NewFieldDiffWithDefaults

func NewFieldDiffWithDefaults() *FieldDiff

NewFieldDiffWithDefaults instantiates a new FieldDiff 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

GetAnnotations

func (o *FieldDiff) GetAnnotations() []string

GetAnnotations returns the Annotations field if non-nil, zero value otherwise.

GetAnnotationsOk

func (o *FieldDiff) GetAnnotationsOk() (*[]string, bool)

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

SetAnnotations

func (o *FieldDiff) SetAnnotations(v []string)

SetAnnotations sets Annotations field to given value.

HasAnnotations

func (o *FieldDiff) HasAnnotations() bool

HasAnnotations returns a boolean if a field has been set.

GetName

func (o *FieldDiff) GetName() string

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

GetNameOk

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

SetName sets Name field to given value.

HasName

func (o *FieldDiff) HasName() bool

HasName returns a boolean if a field has been set.

GetNew

func (o *FieldDiff) GetNew() string

GetNew returns the New field if non-nil, zero value otherwise.

GetNewOk

func (o *FieldDiff) GetNewOk() (*string, bool)

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

SetNew

func (o *FieldDiff) SetNew(v string)

SetNew sets New field to given value.

HasNew

func (o *FieldDiff) HasNew() bool

HasNew returns a boolean if a field has been set.

GetOld

func (o *FieldDiff) GetOld() string

GetOld returns the Old field if non-nil, zero value otherwise.

GetOldOk

func (o *FieldDiff) GetOldOk() (*string, bool)

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

SetOld

func (o *FieldDiff) SetOld(v string)

SetOld sets Old field to given value.

HasOld

func (o *FieldDiff) HasOld() bool

HasOld returns a boolean if a field has been set.

GetType

func (o *FieldDiff) GetType() string

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

GetTypeOk

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

SetType sets Type field to given value.

HasType

func (o *FieldDiff) HasType() bool

HasType returns a boolean if a field has been set.

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