| Name | Type | Description | Notes |
|---|---|---|---|
| Asm | []string | The ordered assembly strings for this chunk | |
| Id | int32 | ID of the block | |
| MinAddr | int32 | The minimum vaddr of the block | |
| MaxAddr | int32 | The maximum vaddr of the block | |
| Destinations | []FunctionBlockDestinationResponse | The potential execution flow destinations from this block | |
| Comment | Pointer to NullableString | [optional] |
func NewFunctionBlockResponse(asm []string, id int32, minAddr int32, maxAddr int32, destinations []FunctionBlockDestinationResponse, ) *FunctionBlockResponse
NewFunctionBlockResponse instantiates a new FunctionBlockResponse 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 NewFunctionBlockResponseWithDefaults() *FunctionBlockResponse
NewFunctionBlockResponseWithDefaults instantiates a new FunctionBlockResponse 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 *FunctionBlockResponse) GetAsm() []string
GetAsm returns the Asm field if non-nil, zero value otherwise.
func (o *FunctionBlockResponse) GetAsmOk() (*[]string, bool)
GetAsmOk returns a tuple with the Asm field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *FunctionBlockResponse) SetAsm(v []string)
SetAsm sets Asm field to given value.
func (o *FunctionBlockResponse) GetId() int32
GetId returns the Id field if non-nil, zero value otherwise.
func (o *FunctionBlockResponse) GetIdOk() (*int32, bool)
GetIdOk returns a tuple with the Id field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *FunctionBlockResponse) SetId(v int32)
SetId sets Id field to given value.
func (o *FunctionBlockResponse) GetMinAddr() int32
GetMinAddr returns the MinAddr field if non-nil, zero value otherwise.
func (o *FunctionBlockResponse) GetMinAddrOk() (*int32, bool)
GetMinAddrOk returns a tuple with the MinAddr field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *FunctionBlockResponse) SetMinAddr(v int32)
SetMinAddr sets MinAddr field to given value.
func (o *FunctionBlockResponse) GetMaxAddr() int32
GetMaxAddr returns the MaxAddr field if non-nil, zero value otherwise.
func (o *FunctionBlockResponse) GetMaxAddrOk() (*int32, bool)
GetMaxAddrOk returns a tuple with the MaxAddr field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *FunctionBlockResponse) SetMaxAddr(v int32)
SetMaxAddr sets MaxAddr field to given value.
func (o *FunctionBlockResponse) GetDestinations() []FunctionBlockDestinationResponse
GetDestinations returns the Destinations field if non-nil, zero value otherwise.
func (o *FunctionBlockResponse) GetDestinationsOk() (*[]FunctionBlockDestinationResponse, bool)
GetDestinationsOk returns a tuple with the Destinations field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *FunctionBlockResponse) SetDestinations(v []FunctionBlockDestinationResponse)
SetDestinations sets Destinations field to given value.
func (o *FunctionBlockResponse) GetComment() string
GetComment returns the Comment field if non-nil, zero value otherwise.
func (o *FunctionBlockResponse) GetCommentOk() (*string, bool)
GetCommentOk returns a tuple with the Comment field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *FunctionBlockResponse) SetComment(v string)
SetComment sets Comment field to given value.
func (o *FunctionBlockResponse) HasComment() bool
HasComment returns a boolean if a field has been set.
func (o *FunctionBlockResponse) SetCommentNil(b bool)
SetCommentNil sets the value for Comment to be an explicit nil
func (o *FunctionBlockResponse) UnsetComment()
UnsetComment ensures that no value is present for Comment, not even an explicit nil