| Name | Type | Description | Notes |
|---|---|---|---|
| LastChange | Pointer to NullableString | [optional] | |
| Name | string | Name of the function | |
| Addr | int32 | Memory address of the function | |
| Type | string | Return type of the function | |
| Args | map[string]Argument | Dictionary of function arguments |
func NewFunctionHeader(name string, addr int32, type_ string, args map[string]Argument, ) *FunctionHeader
NewFunctionHeader instantiates a new FunctionHeader 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
func NewFunctionHeaderWithDefaults() *FunctionHeader
NewFunctionHeaderWithDefaults instantiates a new FunctionHeader 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
func (o *FunctionHeader) GetLastChange() string
GetLastChange returns the LastChange field if non-nil, zero value otherwise.
func (o *FunctionHeader) 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.
func (o *FunctionHeader) SetLastChange(v string)
SetLastChange sets LastChange field to given value.
func (o *FunctionHeader) HasLastChange() bool
HasLastChange returns a boolean if a field has been set.
func (o *FunctionHeader) SetLastChangeNil(b bool)
SetLastChangeNil sets the value for LastChange to be an explicit nil
func (o *FunctionHeader) UnsetLastChange()
UnsetLastChange ensures that no value is present for LastChange, not even an explicit nil
func (o *FunctionHeader) GetName() string
GetName returns the Name field if non-nil, zero value otherwise.
func (o *FunctionHeader) 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.
func (o *FunctionHeader) SetName(v string)
SetName sets Name field to given value.
func (o *FunctionHeader) GetAddr() int32
GetAddr returns the Addr field if non-nil, zero value otherwise.
func (o *FunctionHeader) GetAddrOk() (*int32, bool)
GetAddrOk returns a tuple with the Addr field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *FunctionHeader) SetAddr(v int32)
SetAddr sets Addr field to given value.
func (o *FunctionHeader) GetType() string
GetType returns the Type field if non-nil, zero value otherwise.
func (o *FunctionHeader) 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.
func (o *FunctionHeader) SetType(v string)
SetType sets Type field to given value.
func (o *FunctionHeader) GetArgs() map[string]Argument
GetArgs returns the Args field if non-nil, zero value otherwise.
func (o *FunctionHeader) GetArgsOk() (*map[string]Argument, bool)
GetArgsOk returns a tuple with the Args field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *FunctionHeader) SetArgs(v map[string]Argument)
SetArgs sets Args field to given value.