-
Notifications
You must be signed in to change notification settings - Fork 1
/
model_get_videos_video_id_200_response.go
999 lines (858 loc) · 29.8 KB
/
model_get_videos_video_id_200_response.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
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
/*
Holodex/HoloAPI V2
Holodex Public API. Successor to the HoloAPI v1
API version: 2.0
*/
// Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT.
package holodex
import (
"encoding/json"
"time"
)
// GetVideosVideoId200Response struct for GetVideosVideoId200Response
type GetVideosVideoId200Response struct {
Id *string `json:"id,omitempty"`
Title *string `json:"title,omitempty"`
Type *string `json:"type,omitempty"`
// corresponds to a Topic ID, Videos of type `clip` cannot not have topic. Streams may or may not have topic.
TopicId NullableString `json:"topic_id,omitempty"`
PublishedAt NullableTime `json:"published_at,omitempty"`
// Takes on the first non-null value of end_actual, start_actual, start_scheduled, or published_at
AvailableAt *time.Time `json:"available_at,omitempty"`
// Duration of the video in seconds
Duration *int32 `json:"duration,omitempty"`
Status *string `json:"status,omitempty"`
// Included when includes contains 'live_info'
StartScheduled NullableTime `json:"start_scheduled,omitempty"`
// Included when includes contains 'live_info'
StartActual NullableTime `json:"start_actual,omitempty"`
// Included when includes contains 'live_info'
EndActual NullableTime `json:"end_actual,omitempty"`
// Included when includes contains 'live_info'
LiveViewers NullableInt32 `json:"live_viewers,omitempty"`
// Included when includes contains 'description'
Description *string `json:"description,omitempty"`
// Number of tagged songs for this video
Songcount *float32 `json:"songcount,omitempty"`
ChannelId *string `json:"channel_id,omitempty"`
// Included when 'includes' contains 'clips'
Clips []VideoWithChannel `json:"clips,omitempty"`
// Included when 'includes' contains 'sources'
Sources []VideoWithChannel `json:"sources,omitempty"`
// Included when 'includes' contains 'refers'
Refers []VideoWithChannel `json:"refers,omitempty"`
// Included when 'includes' contains 'simulcasts'
Simulcasts []VideoWithChannel `json:"simulcasts,omitempty"`
// VTubers mentioned by this video, Included when 'includes' contains 'mentions'
Mentions []ChannelMin `json:"mentions,omitempty"`
// Number of songs
Songs NullableFloat32 `json:"songs,omitempty"`
// Comments are only returned if c === '1'
Comments []Comment `json:"comments,omitempty"`
Recommendations []Video `json:"recommendations,omitempty"`
}
// NewGetVideosVideoId200Response instantiates a new GetVideosVideoId200Response 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 NewGetVideosVideoId200Response() *GetVideosVideoId200Response {
this := GetVideosVideoId200Response{}
return &this
}
// NewGetVideosVideoId200ResponseWithDefaults instantiates a new GetVideosVideoId200Response 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 NewGetVideosVideoId200ResponseWithDefaults() *GetVideosVideoId200Response {
this := GetVideosVideoId200Response{}
return &this
}
// GetId returns the Id field value if set, zero value otherwise.
func (o *GetVideosVideoId200Response) GetId() string {
if o == nil || o.Id == nil {
var ret string
return ret
}
return *o.Id
}
// GetIdOk returns a tuple with the Id field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *GetVideosVideoId200Response) GetIdOk() (*string, bool) {
if o == nil || o.Id == nil {
return nil, false
}
return o.Id, true
}
// HasId returns a boolean if a field has been set.
func (o *GetVideosVideoId200Response) HasId() bool {
if o != nil && o.Id != nil {
return true
}
return false
}
// SetId gets a reference to the given string and assigns it to the Id field.
func (o *GetVideosVideoId200Response) SetId(v string) {
o.Id = &v
}
// GetTitle returns the Title field value if set, zero value otherwise.
func (o *GetVideosVideoId200Response) GetTitle() string {
if o == nil || o.Title == nil {
var ret string
return ret
}
return *o.Title
}
// GetTitleOk returns a tuple with the Title field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *GetVideosVideoId200Response) GetTitleOk() (*string, bool) {
if o == nil || o.Title == nil {
return nil, false
}
return o.Title, true
}
// HasTitle returns a boolean if a field has been set.
func (o *GetVideosVideoId200Response) HasTitle() bool {
if o != nil && o.Title != nil {
return true
}
return false
}
// SetTitle gets a reference to the given string and assigns it to the Title field.
func (o *GetVideosVideoId200Response) SetTitle(v string) {
o.Title = &v
}
// GetType returns the Type field value if set, zero value otherwise.
func (o *GetVideosVideoId200Response) GetType() string {
if o == nil || o.Type == nil {
var ret string
return ret
}
return *o.Type
}
// GetTypeOk returns a tuple with the Type field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *GetVideosVideoId200Response) GetTypeOk() (*string, bool) {
if o == nil || o.Type == nil {
return nil, false
}
return o.Type, true
}
// HasType returns a boolean if a field has been set.
func (o *GetVideosVideoId200Response) HasType() bool {
if o != nil && o.Type != nil {
return true
}
return false
}
// SetType gets a reference to the given string and assigns it to the Type field.
func (o *GetVideosVideoId200Response) SetType(v string) {
o.Type = &v
}
// GetTopicId returns the TopicId field value if set, zero value otherwise (both if not set or set to explicit null).
func (o *GetVideosVideoId200Response) GetTopicId() string {
if o == nil || o.TopicId.Get() == nil {
var ret string
return ret
}
return *o.TopicId.Get()
}
// GetTopicIdOk returns a tuple with the TopicId field value if set, nil otherwise
// and a boolean to check if the value has been set.
// NOTE: If the value is an explicit nil, `nil, true` will be returned
func (o *GetVideosVideoId200Response) GetTopicIdOk() (*string, bool) {
if o == nil {
return nil, false
}
return o.TopicId.Get(), o.TopicId.IsSet()
}
// HasTopicId returns a boolean if a field has been set.
func (o *GetVideosVideoId200Response) HasTopicId() bool {
if o != nil && o.TopicId.IsSet() {
return true
}
return false
}
// SetTopicId gets a reference to the given NullableString and assigns it to the TopicId field.
func (o *GetVideosVideoId200Response) SetTopicId(v string) {
o.TopicId.Set(&v)
}
// SetTopicIdNil sets the value for TopicId to be an explicit nil
func (o *GetVideosVideoId200Response) SetTopicIdNil() {
o.TopicId.Set(nil)
}
// UnsetTopicId ensures that no value is present for TopicId, not even an explicit nil
func (o *GetVideosVideoId200Response) UnsetTopicId() {
o.TopicId.Unset()
}
// GetPublishedAt returns the PublishedAt field value if set, zero value otherwise (both if not set or set to explicit null).
func (o *GetVideosVideoId200Response) GetPublishedAt() time.Time {
if o == nil || o.PublishedAt.Get() == nil {
var ret time.Time
return ret
}
return *o.PublishedAt.Get()
}
// GetPublishedAtOk returns a tuple with the PublishedAt field value if set, nil otherwise
// and a boolean to check if the value has been set.
// NOTE: If the value is an explicit nil, `nil, true` will be returned
func (o *GetVideosVideoId200Response) GetPublishedAtOk() (*time.Time, bool) {
if o == nil {
return nil, false
}
return o.PublishedAt.Get(), o.PublishedAt.IsSet()
}
// HasPublishedAt returns a boolean if a field has been set.
func (o *GetVideosVideoId200Response) HasPublishedAt() bool {
if o != nil && o.PublishedAt.IsSet() {
return true
}
return false
}
// SetPublishedAt gets a reference to the given NullableTime and assigns it to the PublishedAt field.
func (o *GetVideosVideoId200Response) SetPublishedAt(v time.Time) {
o.PublishedAt.Set(&v)
}
// SetPublishedAtNil sets the value for PublishedAt to be an explicit nil
func (o *GetVideosVideoId200Response) SetPublishedAtNil() {
o.PublishedAt.Set(nil)
}
// UnsetPublishedAt ensures that no value is present for PublishedAt, not even an explicit nil
func (o *GetVideosVideoId200Response) UnsetPublishedAt() {
o.PublishedAt.Unset()
}
// GetAvailableAt returns the AvailableAt field value if set, zero value otherwise.
func (o *GetVideosVideoId200Response) GetAvailableAt() time.Time {
if o == nil || o.AvailableAt == nil {
var ret time.Time
return ret
}
return *o.AvailableAt
}
// GetAvailableAtOk returns a tuple with the AvailableAt field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *GetVideosVideoId200Response) GetAvailableAtOk() (*time.Time, bool) {
if o == nil || o.AvailableAt == nil {
return nil, false
}
return o.AvailableAt, true
}
// HasAvailableAt returns a boolean if a field has been set.
func (o *GetVideosVideoId200Response) HasAvailableAt() bool {
if o != nil && o.AvailableAt != nil {
return true
}
return false
}
// SetAvailableAt gets a reference to the given time.Time and assigns it to the AvailableAt field.
func (o *GetVideosVideoId200Response) SetAvailableAt(v time.Time) {
o.AvailableAt = &v
}
// GetDuration returns the Duration field value if set, zero value otherwise.
func (o *GetVideosVideoId200Response) GetDuration() int32 {
if o == nil || o.Duration == nil {
var ret int32
return ret
}
return *o.Duration
}
// GetDurationOk returns a tuple with the Duration field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *GetVideosVideoId200Response) GetDurationOk() (*int32, bool) {
if o == nil || o.Duration == nil {
return nil, false
}
return o.Duration, true
}
// HasDuration returns a boolean if a field has been set.
func (o *GetVideosVideoId200Response) HasDuration() bool {
if o != nil && o.Duration != nil {
return true
}
return false
}
// SetDuration gets a reference to the given int32 and assigns it to the Duration field.
func (o *GetVideosVideoId200Response) SetDuration(v int32) {
o.Duration = &v
}
// GetStatus returns the Status field value if set, zero value otherwise.
func (o *GetVideosVideoId200Response) GetStatus() string {
if o == nil || o.Status == nil {
var ret string
return ret
}
return *o.Status
}
// GetStatusOk returns a tuple with the Status field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *GetVideosVideoId200Response) GetStatusOk() (*string, bool) {
if o == nil || o.Status == nil {
return nil, false
}
return o.Status, true
}
// HasStatus returns a boolean if a field has been set.
func (o *GetVideosVideoId200Response) HasStatus() bool {
if o != nil && o.Status != nil {
return true
}
return false
}
// SetStatus gets a reference to the given string and assigns it to the Status field.
func (o *GetVideosVideoId200Response) SetStatus(v string) {
o.Status = &v
}
// GetStartScheduled returns the StartScheduled field value if set, zero value otherwise (both if not set or set to explicit null).
func (o *GetVideosVideoId200Response) GetStartScheduled() time.Time {
if o == nil || o.StartScheduled.Get() == nil {
var ret time.Time
return ret
}
return *o.StartScheduled.Get()
}
// GetStartScheduledOk returns a tuple with the StartScheduled field value if set, nil otherwise
// and a boolean to check if the value has been set.
// NOTE: If the value is an explicit nil, `nil, true` will be returned
func (o *GetVideosVideoId200Response) GetStartScheduledOk() (*time.Time, bool) {
if o == nil {
return nil, false
}
return o.StartScheduled.Get(), o.StartScheduled.IsSet()
}
// HasStartScheduled returns a boolean if a field has been set.
func (o *GetVideosVideoId200Response) HasStartScheduled() bool {
if o != nil && o.StartScheduled.IsSet() {
return true
}
return false
}
// SetStartScheduled gets a reference to the given NullableTime and assigns it to the StartScheduled field.
func (o *GetVideosVideoId200Response) SetStartScheduled(v time.Time) {
o.StartScheduled.Set(&v)
}
// SetStartScheduledNil sets the value for StartScheduled to be an explicit nil
func (o *GetVideosVideoId200Response) SetStartScheduledNil() {
o.StartScheduled.Set(nil)
}
// UnsetStartScheduled ensures that no value is present for StartScheduled, not even an explicit nil
func (o *GetVideosVideoId200Response) UnsetStartScheduled() {
o.StartScheduled.Unset()
}
// GetStartActual returns the StartActual field value if set, zero value otherwise (both if not set or set to explicit null).
func (o *GetVideosVideoId200Response) GetStartActual() time.Time {
if o == nil || o.StartActual.Get() == nil {
var ret time.Time
return ret
}
return *o.StartActual.Get()
}
// GetStartActualOk returns a tuple with the StartActual field value if set, nil otherwise
// and a boolean to check if the value has been set.
// NOTE: If the value is an explicit nil, `nil, true` will be returned
func (o *GetVideosVideoId200Response) GetStartActualOk() (*time.Time, bool) {
if o == nil {
return nil, false
}
return o.StartActual.Get(), o.StartActual.IsSet()
}
// HasStartActual returns a boolean if a field has been set.
func (o *GetVideosVideoId200Response) HasStartActual() bool {
if o != nil && o.StartActual.IsSet() {
return true
}
return false
}
// SetStartActual gets a reference to the given NullableTime and assigns it to the StartActual field.
func (o *GetVideosVideoId200Response) SetStartActual(v time.Time) {
o.StartActual.Set(&v)
}
// SetStartActualNil sets the value for StartActual to be an explicit nil
func (o *GetVideosVideoId200Response) SetStartActualNil() {
o.StartActual.Set(nil)
}
// UnsetStartActual ensures that no value is present for StartActual, not even an explicit nil
func (o *GetVideosVideoId200Response) UnsetStartActual() {
o.StartActual.Unset()
}
// GetEndActual returns the EndActual field value if set, zero value otherwise (both if not set or set to explicit null).
func (o *GetVideosVideoId200Response) GetEndActual() time.Time {
if o == nil || o.EndActual.Get() == nil {
var ret time.Time
return ret
}
return *o.EndActual.Get()
}
// GetEndActualOk returns a tuple with the EndActual field value if set, nil otherwise
// and a boolean to check if the value has been set.
// NOTE: If the value is an explicit nil, `nil, true` will be returned
func (o *GetVideosVideoId200Response) GetEndActualOk() (*time.Time, bool) {
if o == nil {
return nil, false
}
return o.EndActual.Get(), o.EndActual.IsSet()
}
// HasEndActual returns a boolean if a field has been set.
func (o *GetVideosVideoId200Response) HasEndActual() bool {
if o != nil && o.EndActual.IsSet() {
return true
}
return false
}
// SetEndActual gets a reference to the given NullableTime and assigns it to the EndActual field.
func (o *GetVideosVideoId200Response) SetEndActual(v time.Time) {
o.EndActual.Set(&v)
}
// SetEndActualNil sets the value for EndActual to be an explicit nil
func (o *GetVideosVideoId200Response) SetEndActualNil() {
o.EndActual.Set(nil)
}
// UnsetEndActual ensures that no value is present for EndActual, not even an explicit nil
func (o *GetVideosVideoId200Response) UnsetEndActual() {
o.EndActual.Unset()
}
// GetLiveViewers returns the LiveViewers field value if set, zero value otherwise (both if not set or set to explicit null).
func (o *GetVideosVideoId200Response) GetLiveViewers() int32 {
if o == nil || o.LiveViewers.Get() == nil {
var ret int32
return ret
}
return *o.LiveViewers.Get()
}
// GetLiveViewersOk returns a tuple with the LiveViewers field value if set, nil otherwise
// and a boolean to check if the value has been set.
// NOTE: If the value is an explicit nil, `nil, true` will be returned
func (o *GetVideosVideoId200Response) GetLiveViewersOk() (*int32, bool) {
if o == nil {
return nil, false
}
return o.LiveViewers.Get(), o.LiveViewers.IsSet()
}
// HasLiveViewers returns a boolean if a field has been set.
func (o *GetVideosVideoId200Response) HasLiveViewers() bool {
if o != nil && o.LiveViewers.IsSet() {
return true
}
return false
}
// SetLiveViewers gets a reference to the given NullableInt32 and assigns it to the LiveViewers field.
func (o *GetVideosVideoId200Response) SetLiveViewers(v int32) {
o.LiveViewers.Set(&v)
}
// SetLiveViewersNil sets the value for LiveViewers to be an explicit nil
func (o *GetVideosVideoId200Response) SetLiveViewersNil() {
o.LiveViewers.Set(nil)
}
// UnsetLiveViewers ensures that no value is present for LiveViewers, not even an explicit nil
func (o *GetVideosVideoId200Response) UnsetLiveViewers() {
o.LiveViewers.Unset()
}
// GetDescription returns the Description field value if set, zero value otherwise.
func (o *GetVideosVideoId200Response) GetDescription() string {
if o == nil || o.Description == nil {
var ret string
return ret
}
return *o.Description
}
// GetDescriptionOk returns a tuple with the Description field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *GetVideosVideoId200Response) GetDescriptionOk() (*string, bool) {
if o == nil || o.Description == nil {
return nil, false
}
return o.Description, true
}
// HasDescription returns a boolean if a field has been set.
func (o *GetVideosVideoId200Response) HasDescription() bool {
if o != nil && o.Description != nil {
return true
}
return false
}
// SetDescription gets a reference to the given string and assigns it to the Description field.
func (o *GetVideosVideoId200Response) SetDescription(v string) {
o.Description = &v
}
// GetSongcount returns the Songcount field value if set, zero value otherwise.
func (o *GetVideosVideoId200Response) GetSongcount() float32 {
if o == nil || o.Songcount == nil {
var ret float32
return ret
}
return *o.Songcount
}
// GetSongcountOk returns a tuple with the Songcount field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *GetVideosVideoId200Response) GetSongcountOk() (*float32, bool) {
if o == nil || o.Songcount == nil {
return nil, false
}
return o.Songcount, true
}
// HasSongcount returns a boolean if a field has been set.
func (o *GetVideosVideoId200Response) HasSongcount() bool {
if o != nil && o.Songcount != nil {
return true
}
return false
}
// SetSongcount gets a reference to the given float32 and assigns it to the Songcount field.
func (o *GetVideosVideoId200Response) SetSongcount(v float32) {
o.Songcount = &v
}
// GetChannelId returns the ChannelId field value if set, zero value otherwise.
func (o *GetVideosVideoId200Response) GetChannelId() string {
if o == nil || o.ChannelId == nil {
var ret string
return ret
}
return *o.ChannelId
}
// GetChannelIdOk returns a tuple with the ChannelId field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *GetVideosVideoId200Response) GetChannelIdOk() (*string, bool) {
if o == nil || o.ChannelId == nil {
return nil, false
}
return o.ChannelId, true
}
// HasChannelId returns a boolean if a field has been set.
func (o *GetVideosVideoId200Response) HasChannelId() bool {
if o != nil && o.ChannelId != nil {
return true
}
return false
}
// SetChannelId gets a reference to the given string and assigns it to the ChannelId field.
func (o *GetVideosVideoId200Response) SetChannelId(v string) {
o.ChannelId = &v
}
// GetClips returns the Clips field value if set, zero value otherwise (both if not set or set to explicit null).
func (o *GetVideosVideoId200Response) GetClips() []VideoWithChannel {
if o == nil {
var ret []VideoWithChannel
return ret
}
return o.Clips
}
// GetClipsOk returns a tuple with the Clips field value if set, nil otherwise
// and a boolean to check if the value has been set.
// NOTE: If the value is an explicit nil, `nil, true` will be returned
func (o *GetVideosVideoId200Response) GetClipsOk() ([]VideoWithChannel, bool) {
if o == nil || o.Clips == nil {
return nil, false
}
return o.Clips, true
}
// HasClips returns a boolean if a field has been set.
func (o *GetVideosVideoId200Response) HasClips() bool {
if o != nil && o.Clips != nil {
return true
}
return false
}
// SetClips gets a reference to the given []VideoWithChannel and assigns it to the Clips field.
func (o *GetVideosVideoId200Response) SetClips(v []VideoWithChannel) {
o.Clips = v
}
// GetSources returns the Sources field value if set, zero value otherwise (both if not set or set to explicit null).
func (o *GetVideosVideoId200Response) GetSources() []VideoWithChannel {
if o == nil {
var ret []VideoWithChannel
return ret
}
return o.Sources
}
// GetSourcesOk returns a tuple with the Sources field value if set, nil otherwise
// and a boolean to check if the value has been set.
// NOTE: If the value is an explicit nil, `nil, true` will be returned
func (o *GetVideosVideoId200Response) GetSourcesOk() ([]VideoWithChannel, bool) {
if o == nil || o.Sources == nil {
return nil, false
}
return o.Sources, true
}
// HasSources returns a boolean if a field has been set.
func (o *GetVideosVideoId200Response) HasSources() bool {
if o != nil && o.Sources != nil {
return true
}
return false
}
// SetSources gets a reference to the given []VideoWithChannel and assigns it to the Sources field.
func (o *GetVideosVideoId200Response) SetSources(v []VideoWithChannel) {
o.Sources = v
}
// GetRefers returns the Refers field value if set, zero value otherwise (both if not set or set to explicit null).
func (o *GetVideosVideoId200Response) GetRefers() []VideoWithChannel {
if o == nil {
var ret []VideoWithChannel
return ret
}
return o.Refers
}
// GetRefersOk returns a tuple with the Refers field value if set, nil otherwise
// and a boolean to check if the value has been set.
// NOTE: If the value is an explicit nil, `nil, true` will be returned
func (o *GetVideosVideoId200Response) GetRefersOk() ([]VideoWithChannel, bool) {
if o == nil || o.Refers == nil {
return nil, false
}
return o.Refers, true
}
// HasRefers returns a boolean if a field has been set.
func (o *GetVideosVideoId200Response) HasRefers() bool {
if o != nil && o.Refers != nil {
return true
}
return false
}
// SetRefers gets a reference to the given []VideoWithChannel and assigns it to the Refers field.
func (o *GetVideosVideoId200Response) SetRefers(v []VideoWithChannel) {
o.Refers = v
}
// GetSimulcasts returns the Simulcasts field value if set, zero value otherwise (both if not set or set to explicit null).
func (o *GetVideosVideoId200Response) GetSimulcasts() []VideoWithChannel {
if o == nil {
var ret []VideoWithChannel
return ret
}
return o.Simulcasts
}
// GetSimulcastsOk returns a tuple with the Simulcasts field value if set, nil otherwise
// and a boolean to check if the value has been set.
// NOTE: If the value is an explicit nil, `nil, true` will be returned
func (o *GetVideosVideoId200Response) GetSimulcastsOk() ([]VideoWithChannel, bool) {
if o == nil || o.Simulcasts == nil {
return nil, false
}
return o.Simulcasts, true
}
// HasSimulcasts returns a boolean if a field has been set.
func (o *GetVideosVideoId200Response) HasSimulcasts() bool {
if o != nil && o.Simulcasts != nil {
return true
}
return false
}
// SetSimulcasts gets a reference to the given []VideoWithChannel and assigns it to the Simulcasts field.
func (o *GetVideosVideoId200Response) SetSimulcasts(v []VideoWithChannel) {
o.Simulcasts = v
}
// GetMentions returns the Mentions field value if set, zero value otherwise (both if not set or set to explicit null).
func (o *GetVideosVideoId200Response) GetMentions() []ChannelMin {
if o == nil {
var ret []ChannelMin
return ret
}
return o.Mentions
}
// GetMentionsOk returns a tuple with the Mentions field value if set, nil otherwise
// and a boolean to check if the value has been set.
// NOTE: If the value is an explicit nil, `nil, true` will be returned
func (o *GetVideosVideoId200Response) GetMentionsOk() ([]ChannelMin, bool) {
if o == nil || o.Mentions == nil {
return nil, false
}
return o.Mentions, true
}
// HasMentions returns a boolean if a field has been set.
func (o *GetVideosVideoId200Response) HasMentions() bool {
if o != nil && o.Mentions != nil {
return true
}
return false
}
// SetMentions gets a reference to the given []ChannelMin and assigns it to the Mentions field.
func (o *GetVideosVideoId200Response) SetMentions(v []ChannelMin) {
o.Mentions = v
}
// GetSongs returns the Songs field value if set, zero value otherwise (both if not set or set to explicit null).
func (o *GetVideosVideoId200Response) GetSongs() float32 {
if o == nil || o.Songs.Get() == nil {
var ret float32
return ret
}
return *o.Songs.Get()
}
// GetSongsOk returns a tuple with the Songs field value if set, nil otherwise
// and a boolean to check if the value has been set.
// NOTE: If the value is an explicit nil, `nil, true` will be returned
func (o *GetVideosVideoId200Response) GetSongsOk() (*float32, bool) {
if o == nil {
return nil, false
}
return o.Songs.Get(), o.Songs.IsSet()
}
// HasSongs returns a boolean if a field has been set.
func (o *GetVideosVideoId200Response) HasSongs() bool {
if o != nil && o.Songs.IsSet() {
return true
}
return false
}
// SetSongs gets a reference to the given NullableFloat32 and assigns it to the Songs field.
func (o *GetVideosVideoId200Response) SetSongs(v float32) {
o.Songs.Set(&v)
}
// SetSongsNil sets the value for Songs to be an explicit nil
func (o *GetVideosVideoId200Response) SetSongsNil() {
o.Songs.Set(nil)
}
// UnsetSongs ensures that no value is present for Songs, not even an explicit nil
func (o *GetVideosVideoId200Response) UnsetSongs() {
o.Songs.Unset()
}
// GetComments returns the Comments field value if set, zero value otherwise.
func (o *GetVideosVideoId200Response) GetComments() []Comment {
if o == nil || o.Comments == nil {
var ret []Comment
return ret
}
return o.Comments
}
// GetCommentsOk returns a tuple with the Comments field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *GetVideosVideoId200Response) GetCommentsOk() ([]Comment, bool) {
if o == nil || o.Comments == nil {
return nil, false
}
return o.Comments, true
}
// HasComments returns a boolean if a field has been set.
func (o *GetVideosVideoId200Response) HasComments() bool {
if o != nil && o.Comments != nil {
return true
}
return false
}
// SetComments gets a reference to the given []Comment and assigns it to the Comments field.
func (o *GetVideosVideoId200Response) SetComments(v []Comment) {
o.Comments = v
}
// GetRecommendations returns the Recommendations field value if set, zero value otherwise.
func (o *GetVideosVideoId200Response) GetRecommendations() []Video {
if o == nil || o.Recommendations == nil {
var ret []Video
return ret
}
return o.Recommendations
}
// GetRecommendationsOk returns a tuple with the Recommendations field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *GetVideosVideoId200Response) GetRecommendationsOk() ([]Video, bool) {
if o == nil || o.Recommendations == nil {
return nil, false
}
return o.Recommendations, true
}
// HasRecommendations returns a boolean if a field has been set.
func (o *GetVideosVideoId200Response) HasRecommendations() bool {
if o != nil && o.Recommendations != nil {
return true
}
return false
}
// SetRecommendations gets a reference to the given []Video and assigns it to the Recommendations field.
func (o *GetVideosVideoId200Response) SetRecommendations(v []Video) {
o.Recommendations = v
}
func (o GetVideosVideoId200Response) MarshalJSON() ([]byte, error) {
toSerialize := map[string]interface{}{}
if o.Id != nil {
toSerialize["id"] = o.Id
}
if o.Title != nil {
toSerialize["title"] = o.Title
}
if o.Type != nil {
toSerialize["type"] = o.Type
}
if o.TopicId.IsSet() {
toSerialize["topic_id"] = o.TopicId.Get()
}
if o.PublishedAt.IsSet() {
toSerialize["published_at"] = o.PublishedAt.Get()
}
if o.AvailableAt != nil {
toSerialize["available_at"] = o.AvailableAt
}
if o.Duration != nil {
toSerialize["duration"] = o.Duration
}
if o.Status != nil {
toSerialize["status"] = o.Status
}
if o.StartScheduled.IsSet() {
toSerialize["start_scheduled"] = o.StartScheduled.Get()
}
if o.StartActual.IsSet() {
toSerialize["start_actual"] = o.StartActual.Get()
}
if o.EndActual.IsSet() {
toSerialize["end_actual"] = o.EndActual.Get()
}
if o.LiveViewers.IsSet() {
toSerialize["live_viewers"] = o.LiveViewers.Get()
}
if o.Description != nil {
toSerialize["description"] = o.Description
}
if o.Songcount != nil {
toSerialize["songcount"] = o.Songcount
}
if o.ChannelId != nil {
toSerialize["channel_id"] = o.ChannelId
}
if o.Clips != nil {
toSerialize["clips"] = o.Clips
}
if o.Sources != nil {
toSerialize["sources"] = o.Sources
}
if o.Refers != nil {
toSerialize["refers"] = o.Refers
}
if o.Simulcasts != nil {
toSerialize["simulcasts"] = o.Simulcasts
}
if o.Mentions != nil {
toSerialize["mentions"] = o.Mentions
}
if o.Songs.IsSet() {
toSerialize["songs"] = o.Songs.Get()
}
if o.Comments != nil {
toSerialize["comments"] = o.Comments
}
if o.Recommendations != nil {
toSerialize["recommendations"] = o.Recommendations
}
return json.Marshal(toSerialize)
}
type NullableGetVideosVideoId200Response struct {
value *GetVideosVideoId200Response
isSet bool
}
func (v NullableGetVideosVideoId200Response) Get() *GetVideosVideoId200Response {
return v.value
}
func (v *NullableGetVideosVideoId200Response) Set(val *GetVideosVideoId200Response) {
v.value = val
v.isSet = true
}
func (v NullableGetVideosVideoId200Response) IsSet() bool {
return v.isSet
}
func (v *NullableGetVideosVideoId200Response) Unset() {
v.value = nil
v.isSet = false
}
func NewNullableGetVideosVideoId200Response(val *GetVideosVideoId200Response) *NullableGetVideosVideoId200Response {
return &NullableGetVideosVideoId200Response{value: val, isSet: true}
}
func (v NullableGetVideosVideoId200Response) MarshalJSON() ([]byte, error) {
return json.Marshal(v.value)
}
func (v *NullableGetVideosVideoId200Response) UnmarshalJSON(src []byte) error {
v.isSet = true
return json.Unmarshal(src, &v.value)
}