Skip to content

Latest commit

 

History

History
145 lines (78 loc) · 4.04 KB

File metadata and controls

145 lines (78 loc) · 4.04 KB

CreateStructDataType

Properties

Name Type Description Notes
Definition StructDefinition
Kind string
Name string Type name. Unique within the analysis for a given namespace and kind.
Namespace Pointer to string The scope qualifying the type name. Omit for a type of the binary's own. [optional]
Size Pointer to int64 Size in bytes. Omit when it is not known. [optional]

Methods

NewCreateStructDataType

func NewCreateStructDataType(definition StructDefinition, kind string, name string, ) *CreateStructDataType

NewCreateStructDataType instantiates a new CreateStructDataType 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

NewCreateStructDataTypeWithDefaults

func NewCreateStructDataTypeWithDefaults() *CreateStructDataType

NewCreateStructDataTypeWithDefaults instantiates a new CreateStructDataType 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

GetDefinition

func (o *CreateStructDataType) GetDefinition() StructDefinition

GetDefinition returns the Definition field if non-nil, zero value otherwise.

GetDefinitionOk

func (o *CreateStructDataType) GetDefinitionOk() (*StructDefinition, bool)

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

SetDefinition

func (o *CreateStructDataType) SetDefinition(v StructDefinition)

SetDefinition sets Definition field to given value.

GetKind

func (o *CreateStructDataType) GetKind() string

GetKind returns the Kind field if non-nil, zero value otherwise.

GetKindOk

func (o *CreateStructDataType) GetKindOk() (*string, bool)

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

SetKind

func (o *CreateStructDataType) SetKind(v string)

SetKind sets Kind field to given value.

GetName

func (o *CreateStructDataType) GetName() string

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

GetNameOk

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

SetName sets Name field to given value.

GetNamespace

func (o *CreateStructDataType) GetNamespace() string

GetNamespace returns the Namespace field if non-nil, zero value otherwise.

GetNamespaceOk

func (o *CreateStructDataType) GetNamespaceOk() (*string, bool)

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

SetNamespace

func (o *CreateStructDataType) SetNamespace(v string)

SetNamespace sets Namespace field to given value.

HasNamespace

func (o *CreateStructDataType) HasNamespace() bool

HasNamespace returns a boolean if a field has been set.

GetSize

func (o *CreateStructDataType) GetSize() int64

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

GetSizeOk

func (o *CreateStructDataType) GetSizeOk() (*int64, 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 *CreateStructDataType) SetSize(v int64)

SetSize sets Size field to given value.

HasSize

func (o *CreateStructDataType) HasSize() bool

HasSize returns a boolean if a field has been set.

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