Skip to content

Latest commit

 

History

History
72 lines (39 loc) · 1.87 KB

File metadata and controls

72 lines (39 loc) · 1.87 KB

ElfDynamicEntry

Properties

Name Type Description Notes
Tag string
Value int32

Methods

NewElfDynamicEntry

func NewElfDynamicEntry(tag string, value int32, ) *ElfDynamicEntry

NewElfDynamicEntry instantiates a new ElfDynamicEntry 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

NewElfDynamicEntryWithDefaults

func NewElfDynamicEntryWithDefaults() *ElfDynamicEntry

NewElfDynamicEntryWithDefaults instantiates a new ElfDynamicEntry 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

GetTag

func (o *ElfDynamicEntry) GetTag() string

GetTag returns the Tag field if non-nil, zero value otherwise.

GetTagOk

func (o *ElfDynamicEntry) GetTagOk() (*string, bool)

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

SetTag

func (o *ElfDynamicEntry) SetTag(v string)

SetTag sets Tag field to given value.

GetValue

func (o *ElfDynamicEntry) GetValue() int32

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

GetValueOk

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

SetValue sets Value field to given value.

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