Skip to content

Latest commit

 

History

History
165 lines (90 loc) · 5.06 KB

File metadata and controls

165 lines (90 loc) · 5.06 KB

FunctionDataTypesListItem

Properties

Name Type Description Notes
Completed bool Whether the service has completed data types generation
Status string The current status of the data types service
DataTypes Pointer to NullableFunctionInfoOutput [optional]
DataTypesVersion Pointer to NullableInt32 [optional]
FunctionId int64 Function id

Methods

NewFunctionDataTypesListItem

func NewFunctionDataTypesListItem(completed bool, status string, functionId int64, ) *FunctionDataTypesListItem

NewFunctionDataTypesListItem instantiates a new FunctionDataTypesListItem 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

NewFunctionDataTypesListItemWithDefaults

func NewFunctionDataTypesListItemWithDefaults() *FunctionDataTypesListItem

NewFunctionDataTypesListItemWithDefaults instantiates a new FunctionDataTypesListItem 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

GetCompleted

func (o *FunctionDataTypesListItem) GetCompleted() bool

GetCompleted returns the Completed field if non-nil, zero value otherwise.

GetCompletedOk

func (o *FunctionDataTypesListItem) GetCompletedOk() (*bool, bool)

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

SetCompleted

func (o *FunctionDataTypesListItem) SetCompleted(v bool)

SetCompleted sets Completed field to given value.

GetStatus

func (o *FunctionDataTypesListItem) GetStatus() string

GetStatus returns the Status field if non-nil, zero value otherwise.

GetStatusOk

func (o *FunctionDataTypesListItem) GetStatusOk() (*string, bool)

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

SetStatus

func (o *FunctionDataTypesListItem) SetStatus(v string)

SetStatus sets Status field to given value.

GetDataTypes

func (o *FunctionDataTypesListItem) GetDataTypes() FunctionInfoOutput

GetDataTypes returns the DataTypes field if non-nil, zero value otherwise.

GetDataTypesOk

func (o *FunctionDataTypesListItem) GetDataTypesOk() (*FunctionInfoOutput, bool)

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

SetDataTypes

func (o *FunctionDataTypesListItem) SetDataTypes(v FunctionInfoOutput)

SetDataTypes sets DataTypes field to given value.

HasDataTypes

func (o *FunctionDataTypesListItem) HasDataTypes() bool

HasDataTypes returns a boolean if a field has been set.

SetDataTypesNil

func (o *FunctionDataTypesListItem) SetDataTypesNil(b bool)

SetDataTypesNil sets the value for DataTypes to be an explicit nil

UnsetDataTypes

func (o *FunctionDataTypesListItem) UnsetDataTypes()

UnsetDataTypes ensures that no value is present for DataTypes, not even an explicit nil

GetDataTypesVersion

func (o *FunctionDataTypesListItem) GetDataTypesVersion() int32

GetDataTypesVersion returns the DataTypesVersion field if non-nil, zero value otherwise.

GetDataTypesVersionOk

func (o *FunctionDataTypesListItem) GetDataTypesVersionOk() (*int32, bool)

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

SetDataTypesVersion

func (o *FunctionDataTypesListItem) SetDataTypesVersion(v int32)

SetDataTypesVersion sets DataTypesVersion field to given value.

HasDataTypesVersion

func (o *FunctionDataTypesListItem) HasDataTypesVersion() bool

HasDataTypesVersion returns a boolean if a field has been set.

SetDataTypesVersionNil

func (o *FunctionDataTypesListItem) SetDataTypesVersionNil(b bool)

SetDataTypesVersionNil sets the value for DataTypesVersion to be an explicit nil

UnsetDataTypesVersion

func (o *FunctionDataTypesListItem) UnsetDataTypesVersion()

UnsetDataTypesVersion ensures that no value is present for DataTypesVersion, not even an explicit nil

GetFunctionId

func (o *FunctionDataTypesListItem) GetFunctionId() int64

GetFunctionId returns the FunctionId field if non-nil, zero value otherwise.

GetFunctionIdOk

func (o *FunctionDataTypesListItem) GetFunctionIdOk() (*int64, bool)

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

SetFunctionId

func (o *FunctionDataTypesListItem) SetFunctionId(v int64)

SetFunctionId sets FunctionId field to given value.

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