| Name | Type | Description | Notes |
|---|---|---|---|
| FunctionMap | map[string]int32 | Mapping of remote function ids to local function addresses | |
| InverseFunctionMap | map[string]int32 | Mapping of local function addresses to remote function ids | |
| NameMap | map[string]string | Mapping of local function addresses to mangled names |
func NewFunctionMapping(functionMap map[string]int32, inverseFunctionMap map[string]int32, nameMap map[string]string, ) *FunctionMapping
NewFunctionMapping instantiates a new FunctionMapping 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 NewFunctionMappingWithDefaults() *FunctionMapping
NewFunctionMappingWithDefaults instantiates a new FunctionMapping 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 *FunctionMapping) GetFunctionMap() map[string]int32
GetFunctionMap returns the FunctionMap field if non-nil, zero value otherwise.
func (o *FunctionMapping) GetFunctionMapOk() (*map[string]int32, bool)
GetFunctionMapOk returns a tuple with the FunctionMap field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *FunctionMapping) SetFunctionMap(v map[string]int32)
SetFunctionMap sets FunctionMap field to given value.
func (o *FunctionMapping) GetInverseFunctionMap() map[string]int32
GetInverseFunctionMap returns the InverseFunctionMap field if non-nil, zero value otherwise.
func (o *FunctionMapping) GetInverseFunctionMapOk() (*map[string]int32, bool)
GetInverseFunctionMapOk returns a tuple with the InverseFunctionMap field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *FunctionMapping) SetInverseFunctionMap(v map[string]int32)
SetInverseFunctionMap sets InverseFunctionMap field to given value.
func (o *FunctionMapping) GetNameMap() map[string]string
GetNameMap returns the NameMap field if non-nil, zero value otherwise.
func (o *FunctionMapping) GetNameMapOk() (*map[string]string, bool)
GetNameMapOk returns a tuple with the NameMap field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *FunctionMapping) SetNameMap(v map[string]string)
SetNameMap sets NameMap field to given value.