Skip to content

Latest commit

 

History

History
123 lines (68 loc) · 3.3 KB

File metadata and controls

123 lines (68 loc) · 3.3 KB

StreamStatusDto

Properties

Name Type Description Notes
IsLive bool
StartedAt Pointer to NullableTime [optional]
EndedAt Pointer to NullableTime [optional]

Methods

NewStreamStatusDto

func NewStreamStatusDto(isLive bool, ) *StreamStatusDto

NewStreamStatusDto instantiates a new StreamStatusDto 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

NewStreamStatusDtoWithDefaults

func NewStreamStatusDtoWithDefaults() *StreamStatusDto

NewStreamStatusDtoWithDefaults instantiates a new StreamStatusDto 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

GetIsLive

func (o *StreamStatusDto) GetIsLive() bool

GetIsLive returns the IsLive field if non-nil, zero value otherwise.

GetIsLiveOk

func (o *StreamStatusDto) GetIsLiveOk() (*bool, bool)

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

SetIsLive

func (o *StreamStatusDto) SetIsLive(v bool)

SetIsLive sets IsLive field to given value.

GetStartedAt

func (o *StreamStatusDto) GetStartedAt() time.Time

GetStartedAt returns the StartedAt field if non-nil, zero value otherwise.

GetStartedAtOk

func (o *StreamStatusDto) GetStartedAtOk() (*time.Time, bool)

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

SetStartedAt

func (o *StreamStatusDto) SetStartedAt(v time.Time)

SetStartedAt sets StartedAt field to given value.

HasStartedAt

func (o *StreamStatusDto) HasStartedAt() bool

HasStartedAt returns a boolean if a field has been set.

SetStartedAtNil

func (o *StreamStatusDto) SetStartedAtNil(b bool)

SetStartedAtNil sets the value for StartedAt to be an explicit nil

UnsetStartedAt

func (o *StreamStatusDto) UnsetStartedAt()

UnsetStartedAt ensures that no value is present for StartedAt, not even an explicit nil

GetEndedAt

func (o *StreamStatusDto) GetEndedAt() time.Time

GetEndedAt returns the EndedAt field if non-nil, zero value otherwise.

GetEndedAtOk

func (o *StreamStatusDto) GetEndedAtOk() (*time.Time, bool)

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

SetEndedAt

func (o *StreamStatusDto) SetEndedAt(v time.Time)

SetEndedAt sets EndedAt field to given value.

HasEndedAt

func (o *StreamStatusDto) HasEndedAt() bool

HasEndedAt returns a boolean if a field has been set.

SetEndedAtNil

func (o *StreamStatusDto) SetEndedAtNil(b bool)

SetEndedAtNil sets the value for EndedAt to be an explicit nil

UnsetEndedAt

func (o *StreamStatusDto) UnsetEndedAt()

UnsetEndedAt ensures that no value is present for EndedAt, not even an explicit nil

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