-
Notifications
You must be signed in to change notification settings - Fork 4
/
model_summary.go
267 lines (225 loc) · 7.58 KB
/
model_summary.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
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
/*
* 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"
)
// Summary struct for Summary
type Summary struct {
// The unique identifier of the summary object.
SummaryId *string `json:"summaryId,omitempty"`
// Returns the date and time when the summary was created in ATOM date-time format.
CreatedAt *string `json:"createdAt,omitempty"`
// Returns the date and time when the summary was last updated in ATOM date-time format.
UpdatedAt *string `json:"updatedAt,omitempty"`
// The unique identifier of the video object.
VideoId *string `json:"videoId,omitempty"`
// Returns the origin of how the summary was created. - `api` means that no summary was generated automatically. You can add summary manually using the `PATCH /summaries/{summaryId}/source` endpoint operation. Until this happens, `sourceStatus` returns `missing`. - `auto` means that the API generated the summary automatically.
Origin *string `json:"origin,omitempty"`
// Returns the current status of summary generation. `missing`: the input for a summary is not present. `waiting` : the input video is being processed and a summary will be generated. `failed`: a technical issue prevented summary generation. `completed`: the summary is generated. `unprocessable`: the API rules the source video to be unsuitable for summary generation. An example for this is an input video that has no audio.
SourceStatus *string `json:"sourceStatus,omitempty"`
}
// NewSummary instantiates a new Summary 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 NewSummary() *Summary {
this := Summary{}
return &this
}
// NewSummaryWithDefaults instantiates a new Summary 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 NewSummaryWithDefaults() *Summary {
this := Summary{}
return &this
}
// GetSummaryId returns the SummaryId field value if set, zero value otherwise.
func (o *Summary) GetSummaryId() string {
if o == nil || o.SummaryId == nil {
var ret string
return ret
}
return *o.SummaryId
}
// GetSummaryIdOk returns a tuple with the SummaryId field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *Summary) GetSummaryIdOk() (*string, bool) {
if o == nil || o.SummaryId == nil {
return nil, false
}
return o.SummaryId, true
}
// HasSummaryId returns a boolean if a field has been set.
func (o *Summary) HasSummaryId() bool {
if o != nil && o.SummaryId != nil {
return true
}
return false
}
// SetSummaryId gets a reference to the given string and assigns it to the SummaryId field.
func (o *Summary) SetSummaryId(v string) {
o.SummaryId = &v
}
// GetCreatedAt returns the CreatedAt field value if set, zero value otherwise.
func (o *Summary) GetCreatedAt() string {
if o == nil || o.CreatedAt == nil {
var ret string
return ret
}
return *o.CreatedAt
}
// GetCreatedAtOk returns a tuple with the CreatedAt field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *Summary) GetCreatedAtOk() (*string, bool) {
if o == nil || o.CreatedAt == nil {
return nil, false
}
return o.CreatedAt, true
}
// HasCreatedAt returns a boolean if a field has been set.
func (o *Summary) HasCreatedAt() bool {
if o != nil && o.CreatedAt != nil {
return true
}
return false
}
// SetCreatedAt gets a reference to the given string and assigns it to the CreatedAt field.
func (o *Summary) SetCreatedAt(v string) {
o.CreatedAt = &v
}
// GetUpdatedAt returns the UpdatedAt field value if set, zero value otherwise.
func (o *Summary) GetUpdatedAt() string {
if o == nil || o.UpdatedAt == nil {
var ret string
return ret
}
return *o.UpdatedAt
}
// GetUpdatedAtOk returns a tuple with the UpdatedAt field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *Summary) GetUpdatedAtOk() (*string, bool) {
if o == nil || o.UpdatedAt == nil {
return nil, false
}
return o.UpdatedAt, true
}
// HasUpdatedAt returns a boolean if a field has been set.
func (o *Summary) HasUpdatedAt() bool {
if o != nil && o.UpdatedAt != nil {
return true
}
return false
}
// SetUpdatedAt gets a reference to the given string and assigns it to the UpdatedAt field.
func (o *Summary) SetUpdatedAt(v string) {
o.UpdatedAt = &v
}
// GetVideoId returns the VideoId field value if set, zero value otherwise.
func (o *Summary) GetVideoId() string {
if o == nil || o.VideoId == nil {
var ret string
return ret
}
return *o.VideoId
}
// GetVideoIdOk returns a tuple with the VideoId field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *Summary) GetVideoIdOk() (*string, bool) {
if o == nil || o.VideoId == nil {
return nil, false
}
return o.VideoId, true
}
// HasVideoId returns a boolean if a field has been set.
func (o *Summary) HasVideoId() bool {
if o != nil && o.VideoId != nil {
return true
}
return false
}
// SetVideoId gets a reference to the given string and assigns it to the VideoId field.
func (o *Summary) SetVideoId(v string) {
o.VideoId = &v
}
// GetOrigin returns the Origin field value if set, zero value otherwise.
func (o *Summary) GetOrigin() string {
if o == nil || o.Origin == nil {
var ret string
return ret
}
return *o.Origin
}
// GetOriginOk returns a tuple with the Origin field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *Summary) GetOriginOk() (*string, bool) {
if o == nil || o.Origin == nil {
return nil, false
}
return o.Origin, true
}
// HasOrigin returns a boolean if a field has been set.
func (o *Summary) HasOrigin() bool {
if o != nil && o.Origin != nil {
return true
}
return false
}
// SetOrigin gets a reference to the given string and assigns it to the Origin field.
func (o *Summary) SetOrigin(v string) {
o.Origin = &v
}
// GetSourceStatus returns the SourceStatus field value if set, zero value otherwise.
func (o *Summary) GetSourceStatus() string {
if o == nil || o.SourceStatus == nil {
var ret string
return ret
}
return *o.SourceStatus
}
// GetSourceStatusOk returns a tuple with the SourceStatus field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *Summary) GetSourceStatusOk() (*string, bool) {
if o == nil || o.SourceStatus == nil {
return nil, false
}
return o.SourceStatus, true
}
// HasSourceStatus returns a boolean if a field has been set.
func (o *Summary) HasSourceStatus() bool {
if o != nil && o.SourceStatus != nil {
return true
}
return false
}
// SetSourceStatus gets a reference to the given string and assigns it to the SourceStatus field.
func (o *Summary) SetSourceStatus(v string) {
o.SourceStatus = &v
}
type NullableSummary struct {
value *Summary
isSet bool
}
func (v NullableSummary) Get() *Summary {
return v.value
}
func (v *NullableSummary) Set(val *Summary) {
v.value = val
v.isSet = true
}
func (v NullableSummary) IsSet() bool {
return v.isSet
}
func (v *NullableSummary) Unset() {
v.value = nil
v.isSet = false
}
func NewNullableSummary(val *Summary) *NullableSummary {
return &NullableSummary{value: val, isSet: true}
}