Skip to content

Latest commit

 

History

History
150 lines (81 loc) · 3.94 KB

File metadata and controls

150 lines (81 loc) · 3.94 KB

StructureMember

Properties

Name Type Description Notes
LastChange Pointer to NullableString [optional]
Name string Name of the structure member
Offset int32 Offset of the member within the structure
Type string Data type of the structure member
Size int32 Size of the structure member in bytes

Methods

NewStructureMember

func NewStructureMember(name string, offset int32, type_ string, size int32, ) *StructureMember

NewStructureMember instantiates a new StructureMember 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

NewStructureMemberWithDefaults

func NewStructureMemberWithDefaults() *StructureMember

NewStructureMemberWithDefaults instantiates a new StructureMember 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

GetLastChange

func (o *StructureMember) GetLastChange() string

GetLastChange returns the LastChange field if non-nil, zero value otherwise.

GetLastChangeOk

func (o *StructureMember) GetLastChangeOk() (*string, bool)

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

SetLastChange

func (o *StructureMember) SetLastChange(v string)

SetLastChange sets LastChange field to given value.

HasLastChange

func (o *StructureMember) HasLastChange() bool

HasLastChange returns a boolean if a field has been set.

SetLastChangeNil

func (o *StructureMember) SetLastChangeNil(b bool)

SetLastChangeNil sets the value for LastChange to be an explicit nil

UnsetLastChange

func (o *StructureMember) UnsetLastChange()

UnsetLastChange ensures that no value is present for LastChange, not even an explicit nil

GetName

func (o *StructureMember) GetName() string

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

GetNameOk

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

SetName sets Name field to given value.

GetOffset

func (o *StructureMember) GetOffset() int32

GetOffset returns the Offset field if non-nil, zero value otherwise.

GetOffsetOk

func (o *StructureMember) GetOffsetOk() (*int32, bool)

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

SetOffset

func (o *StructureMember) SetOffset(v int32)

SetOffset sets Offset field to given value.

GetType

func (o *StructureMember) GetType() string

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

GetTypeOk

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

SetType sets Type field to given value.

GetSize

func (o *StructureMember) GetSize() int32

GetSize returns the Size field if non-nil, zero value otherwise.

GetSizeOk

func (o *StructureMember) GetSizeOk() (*int32, bool)

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

SetSize

func (o *StructureMember) SetSize(v int32)

SetSize sets Size field to given value.

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