Skip to content

Latest commit

 

History

History
72 lines (39 loc) · 1.93 KB

Function.md

File metadata and controls

72 lines (39 loc) · 1.93 KB

Function

Properties

Name Type Description Notes
ImportByOrdinal bool API imported by ordinal
Name string API name

Methods

NewFunction

func NewFunction(importByOrdinal bool, name string, ) *Function

NewFunction instantiates a new Function 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

NewFunctionWithDefaults

func NewFunctionWithDefaults() *Function

NewFunctionWithDefaults instantiates a new Function 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

GetImportByOrdinal

func (o *Function) GetImportByOrdinal() bool

GetImportByOrdinal returns the ImportByOrdinal field if non-nil, zero value otherwise.

GetImportByOrdinalOk

func (o *Function) GetImportByOrdinalOk() (*bool, bool)

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

SetImportByOrdinal

func (o *Function) SetImportByOrdinal(v bool)

SetImportByOrdinal sets ImportByOrdinal field to given value.

GetName

func (o *Function) GetName() string

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

GetNameOk

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

SetName sets Name field to given value.

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