Skip to content

Files

Latest commit

 

History

History
119 lines (64 loc) · 2.96 KB

StreamStatus.md

File metadata and controls

119 lines (64 loc) · 2.96 KB

StreamStatus

Properties

Name Type Description Notes
Error Pointer to string [optional]
Failed int32
Successful int32
Name string

Methods

NewStreamStatus

func NewStreamStatus(failed int32, successful int32, name string, ) *StreamStatus

NewStreamStatus instantiates a new StreamStatus 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

NewStreamStatusWithDefaults

func NewStreamStatusWithDefaults() *StreamStatus

NewStreamStatusWithDefaults instantiates a new StreamStatus 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

GetError

func (o *StreamStatus) GetError() string

GetError returns the Error field if non-nil, zero value otherwise.

GetErrorOk

func (o *StreamStatus) GetErrorOk() (*string, bool)

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

SetError

func (o *StreamStatus) SetError(v string)

SetError sets Error field to given value.

HasError

func (o *StreamStatus) HasError() bool

HasError returns a boolean if a field has been set.

GetFailed

func (o *StreamStatus) GetFailed() int32

GetFailed returns the Failed field if non-nil, zero value otherwise.

GetFailedOk

func (o *StreamStatus) GetFailedOk() (*int32, bool)

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

SetFailed

func (o *StreamStatus) SetFailed(v int32)

SetFailed sets Failed field to given value.

GetSuccessful

func (o *StreamStatus) GetSuccessful() int32

GetSuccessful returns the Successful field if non-nil, zero value otherwise.

GetSuccessfulOk

func (o *StreamStatus) GetSuccessfulOk() (*int32, bool)

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

SetSuccessful

func (o *StreamStatus) SetSuccessful(v int32)

SetSuccessful sets Successful field to given value.

GetName

func (o *StreamStatus) GetName() string

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

GetNameOk

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

SetName sets Name field to given value.

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