github.com/optim-corp/cios-golang-sdk@v0.5.1/cios/model_single_video.go (about)

     1  /*
     2   * Cios Openapi
     3   *
     4   * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
     5   *
     6   * API version: 1.0.1
     7   */
     8  
     9  // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT.
    10  
    11  package cios
    12  
    13  import (
    14  	"encoding/json"
    15  )
    16  
    17  // SingleVideo struct for SingleVideo
    18  type SingleVideo struct {
    19  	Video Video `json:"video"`
    20  }
    21  
    22  // NewSingleVideo instantiates a new SingleVideo object
    23  // This constructor will assign default values to properties that have it defined,
    24  // and makes sure properties required by API are set, but the set of arguments
    25  // will change when the set of required properties is changed
    26  func NewSingleVideo(video Video, ) *SingleVideo {
    27  	this := SingleVideo{}
    28  	this.Video = video
    29  	return &this
    30  }
    31  
    32  // NewSingleVideoWithDefaults instantiates a new SingleVideo object
    33  // This constructor will only assign default values to properties that have it defined,
    34  // but it doesn't guarantee that properties required by API are set
    35  func NewSingleVideoWithDefaults() *SingleVideo {
    36  	this := SingleVideo{}
    37  	return &this
    38  }
    39  
    40  // GetVideo returns the Video field value
    41  func (o *SingleVideo) GetVideo() Video {
    42  	if o == nil  {
    43  		var ret Video
    44  		return ret
    45  	}
    46  
    47  	return o.Video
    48  }
    49  
    50  // GetVideoOk returns a tuple with the Video field value
    51  // and a boolean to check if the value has been set.
    52  func (o *SingleVideo) GetVideoOk() (*Video, bool) {
    53  	if o == nil  {
    54  		return nil, false
    55  	}
    56  	return &o.Video, true
    57  }
    58  
    59  // SetVideo sets field value
    60  func (o *SingleVideo) SetVideo(v Video) {
    61  	o.Video = v
    62  }
    63  
    64  func (o SingleVideo) MarshalJSON() ([]byte, error) {
    65  	toSerialize := map[string]interface{}{}
    66  	if true {
    67  		toSerialize["video"] = o.Video
    68  	}
    69  	return json.Marshal(toSerialize)
    70  }
    71  
    72  type NullableSingleVideo struct {
    73  	value *SingleVideo
    74  	isSet bool
    75  }
    76  
    77  func (v NullableSingleVideo) Get() *SingleVideo {
    78  	return v.value
    79  }
    80  
    81  func (v *NullableSingleVideo) Set(val *SingleVideo) {
    82  	v.value = val
    83  	v.isSet = true
    84  }
    85  
    86  func (v NullableSingleVideo) IsSet() bool {
    87  	return v.isSet
    88  }
    89  
    90  func (v *NullableSingleVideo) Unset() {
    91  	v.value = nil
    92  	v.isSet = false
    93  }
    94  
    95  func NewNullableSingleVideo(val *SingleVideo) *NullableSingleVideo {
    96  	return &NullableSingleVideo{value: val, isSet: true}
    97  }
    98  
    99  func (v NullableSingleVideo) MarshalJSON() ([]byte, error) {
   100  	return json.Marshal(v.value)
   101  }
   102  
   103  func (v *NullableSingleVideo) UnmarshalJSON(src []byte) error {
   104  	v.isSet = true
   105  	return json.Unmarshal(src, &v.value)
   106  }
   107  
   108