-
Notifications
You must be signed in to change notification settings - Fork 4
/
model_live_stream_update_payload.go
199 lines (167 loc) · 6.22 KB
/
model_live_stream_update_payload.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
/*
* api.video
*
* api.video is an API that encodes on the go to facilitate immediate playback, enhancing viewer streaming experiences across multiple devices and platforms. You can stream live or on-demand online videos within minutes.
*
* API version: 1
*/
// Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT.
package apivideosdk
import (
//"encoding/json"
)
// LiveStreamUpdatePayload struct for LiveStreamUpdatePayload
type LiveStreamUpdatePayload struct {
// The name you want to use for your live stream.
Name *string `json:"name,omitempty"`
// Whether your video can be viewed by everyone, or requires authentication to see it. A setting of false will require a unique token for each view. Learn more about the Private Video feature [here](https://docs.api.video/delivery/video-privacy-access-management).
Public *bool `json:"public,omitempty"`
// The unique ID for the player associated with a live stream that you want to update.
PlayerId *string `json:"playerId,omitempty"`
// Use this parameter to add, edit, or remove `RTMPS` or `RTMP` services where you want to restream a live stream. The list can only contain up to 5 destinations. This operation updates all restream destinations in the same request. If you do not want to modify an existing restream destination, you need to include it in your request, otherwise it is removed.
Restreams *[]RestreamsRequestObject `json:"restreams,omitempty"`
}
// NewLiveStreamUpdatePayload instantiates a new LiveStreamUpdatePayload 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
func NewLiveStreamUpdatePayload() *LiveStreamUpdatePayload {
this := LiveStreamUpdatePayload{}
return &this
}
// NewLiveStreamUpdatePayloadWithDefaults instantiates a new LiveStreamUpdatePayload 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
func NewLiveStreamUpdatePayloadWithDefaults() *LiveStreamUpdatePayload {
this := LiveStreamUpdatePayload{}
return &this
}
// GetName returns the Name field value if set, zero value otherwise.
func (o *LiveStreamUpdatePayload) GetName() string {
if o == nil || o.Name == nil {
var ret string
return ret
}
return *o.Name
}
// GetNameOk returns a tuple with the Name field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *LiveStreamUpdatePayload) GetNameOk() (*string, bool) {
if o == nil || o.Name == nil {
return nil, false
}
return o.Name, true
}
// HasName returns a boolean if a field has been set.
func (o *LiveStreamUpdatePayload) HasName() bool {
if o != nil && o.Name != nil {
return true
}
return false
}
// SetName gets a reference to the given string and assigns it to the Name field.
func (o *LiveStreamUpdatePayload) SetName(v string) {
o.Name = &v
}
// GetPublic returns the Public field value if set, zero value otherwise.
func (o *LiveStreamUpdatePayload) GetPublic() bool {
if o == nil || o.Public == nil {
var ret bool
return ret
}
return *o.Public
}
// GetPublicOk returns a tuple with the Public field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *LiveStreamUpdatePayload) GetPublicOk() (*bool, bool) {
if o == nil || o.Public == nil {
return nil, false
}
return o.Public, true
}
// HasPublic returns a boolean if a field has been set.
func (o *LiveStreamUpdatePayload) HasPublic() bool {
if o != nil && o.Public != nil {
return true
}
return false
}
// SetPublic gets a reference to the given bool and assigns it to the Public field.
func (o *LiveStreamUpdatePayload) SetPublic(v bool) {
o.Public = &v
}
// GetPlayerId returns the PlayerId field value if set, zero value otherwise.
func (o *LiveStreamUpdatePayload) GetPlayerId() string {
if o == nil || o.PlayerId == nil {
var ret string
return ret
}
return *o.PlayerId
}
// GetPlayerIdOk returns a tuple with the PlayerId field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *LiveStreamUpdatePayload) GetPlayerIdOk() (*string, bool) {
if o == nil || o.PlayerId == nil {
return nil, false
}
return o.PlayerId, true
}
// HasPlayerId returns a boolean if a field has been set.
func (o *LiveStreamUpdatePayload) HasPlayerId() bool {
if o != nil && o.PlayerId != nil {
return true
}
return false
}
// SetPlayerId gets a reference to the given string and assigns it to the PlayerId field.
func (o *LiveStreamUpdatePayload) SetPlayerId(v string) {
o.PlayerId = &v
}
// GetRestreams returns the Restreams field value if set, zero value otherwise.
func (o *LiveStreamUpdatePayload) GetRestreams() []RestreamsRequestObject {
if o == nil || o.Restreams == nil {
var ret []RestreamsRequestObject
return ret
}
return *o.Restreams
}
// GetRestreamsOk returns a tuple with the Restreams field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *LiveStreamUpdatePayload) GetRestreamsOk() (*[]RestreamsRequestObject, bool) {
if o == nil || o.Restreams == nil {
return nil, false
}
return o.Restreams, true
}
// HasRestreams returns a boolean if a field has been set.
func (o *LiveStreamUpdatePayload) HasRestreams() bool {
if o != nil && o.Restreams != nil {
return true
}
return false
}
// SetRestreams gets a reference to the given []RestreamsRequestObject and assigns it to the Restreams field.
func (o *LiveStreamUpdatePayload) SetRestreams(v []RestreamsRequestObject) {
o.Restreams = &v
}
type NullableLiveStreamUpdatePayload struct {
value *LiveStreamUpdatePayload
isSet bool
}
func (v NullableLiveStreamUpdatePayload) Get() *LiveStreamUpdatePayload {
return v.value
}
func (v *NullableLiveStreamUpdatePayload) Set(val *LiveStreamUpdatePayload) {
v.value = val
v.isSet = true
}
func (v NullableLiveStreamUpdatePayload) IsSet() bool {
return v.isSet
}
func (v *NullableLiveStreamUpdatePayload) Unset() {
v.value = nil
v.isSet = false
}
func NewNullableLiveStreamUpdatePayload(val *LiveStreamUpdatePayload) *NullableLiveStreamUpdatePayload {
return &NullableLiveStreamUpdatePayload{value: val, isSet: true}
}