Skip to content

Latest commit

 

History

History
160 lines (87 loc) · 4.31 KB

UpdateOutputRequest.md

File metadata and controls

160 lines (87 loc) · 4.31 KB

UpdateOutputRequest

Properties

Name Type Description Notes
CollectionId Pointer to string [optional]
Type Pointer to OutputType [optional] [default to OUTPUTTYPE_UNDEFINED]
Config Pointer to OutputConfig [optional]
Enabled Pointer to bool [optional]
Tags Pointer to map[string]string [optional]

Methods

NewUpdateOutputRequest

func NewUpdateOutputRequest() *UpdateOutputRequest

NewUpdateOutputRequest instantiates a new UpdateOutputRequest 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

NewUpdateOutputRequestWithDefaults

func NewUpdateOutputRequestWithDefaults() *UpdateOutputRequest

NewUpdateOutputRequestWithDefaults instantiates a new UpdateOutputRequest 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

GetCollectionId

func (o *UpdateOutputRequest) GetCollectionId() string

GetCollectionId returns the CollectionId field if non-nil, zero value otherwise.

GetCollectionIdOk

func (o *UpdateOutputRequest) GetCollectionIdOk() (*string, bool)

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

SetCollectionId

func (o *UpdateOutputRequest) SetCollectionId(v string)

SetCollectionId sets CollectionId field to given value.

HasCollectionId

func (o *UpdateOutputRequest) HasCollectionId() bool

HasCollectionId returns a boolean if a field has been set.

GetType

func (o *UpdateOutputRequest) GetType() OutputType

GetType returns the Type field if non-nil, zero value otherwise.

GetTypeOk

func (o *UpdateOutputRequest) GetTypeOk() (*OutputType, bool)

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

SetType

func (o *UpdateOutputRequest) SetType(v OutputType)

SetType sets Type field to given value.

HasType

func (o *UpdateOutputRequest) HasType() bool

HasType returns a boolean if a field has been set.

GetConfig

func (o *UpdateOutputRequest) GetConfig() OutputConfig

GetConfig returns the Config field if non-nil, zero value otherwise.

GetConfigOk

func (o *UpdateOutputRequest) GetConfigOk() (*OutputConfig, bool)

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

SetConfig

func (o *UpdateOutputRequest) SetConfig(v OutputConfig)

SetConfig sets Config field to given value.

HasConfig

func (o *UpdateOutputRequest) HasConfig() bool

HasConfig returns a boolean if a field has been set.

GetEnabled

func (o *UpdateOutputRequest) GetEnabled() bool

GetEnabled returns the Enabled field if non-nil, zero value otherwise.

GetEnabledOk

func (o *UpdateOutputRequest) GetEnabledOk() (*bool, bool)

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

SetEnabled

func (o *UpdateOutputRequest) SetEnabled(v bool)

SetEnabled sets Enabled field to given value.

HasEnabled

func (o *UpdateOutputRequest) HasEnabled() bool

HasEnabled returns a boolean if a field has been set.

GetTags

func (o *UpdateOutputRequest) GetTags() map[string]string

GetTags returns the Tags field if non-nil, zero value otherwise.

GetTagsOk

func (o *UpdateOutputRequest) GetTagsOk() (*map[string]string, bool)

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

SetTags

func (o *UpdateOutputRequest) SetTags(v map[string]string)

SetTags sets Tags field to given value.

HasTags

func (o *UpdateOutputRequest) HasTags() bool

HasTags returns a boolean if a field has been set.

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