github.com/optim-corp/cios-golang-sdk@v0.5.1/cios/model_single_room.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  // SingleRoom struct for SingleRoom
    18  type SingleRoom struct {
    19  	Room Room `json:"room"`
    20  }
    21  
    22  // NewSingleRoom instantiates a new SingleRoom 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 NewSingleRoom(room Room, ) *SingleRoom {
    27  	this := SingleRoom{}
    28  	this.Room = room
    29  	return &this
    30  }
    31  
    32  // NewSingleRoomWithDefaults instantiates a new SingleRoom 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 NewSingleRoomWithDefaults() *SingleRoom {
    36  	this := SingleRoom{}
    37  	return &this
    38  }
    39  
    40  // GetRoom returns the Room field value
    41  func (o *SingleRoom) GetRoom() Room {
    42  	if o == nil  {
    43  		var ret Room
    44  		return ret
    45  	}
    46  
    47  	return o.Room
    48  }
    49  
    50  // GetRoomOk returns a tuple with the Room field value
    51  // and a boolean to check if the value has been set.
    52  func (o *SingleRoom) GetRoomOk() (*Room, bool) {
    53  	if o == nil  {
    54  		return nil, false
    55  	}
    56  	return &o.Room, true
    57  }
    58  
    59  // SetRoom sets field value
    60  func (o *SingleRoom) SetRoom(v Room) {
    61  	o.Room = v
    62  }
    63  
    64  func (o SingleRoom) MarshalJSON() ([]byte, error) {
    65  	toSerialize := map[string]interface{}{}
    66  	if true {
    67  		toSerialize["room"] = o.Room
    68  	}
    69  	return json.Marshal(toSerialize)
    70  }
    71  
    72  type NullableSingleRoom struct {
    73  	value *SingleRoom
    74  	isSet bool
    75  }
    76  
    77  func (v NullableSingleRoom) Get() *SingleRoom {
    78  	return v.value
    79  }
    80  
    81  func (v *NullableSingleRoom) Set(val *SingleRoom) {
    82  	v.value = val
    83  	v.isSet = true
    84  }
    85  
    86  func (v NullableSingleRoom) IsSet() bool {
    87  	return v.isSet
    88  }
    89  
    90  func (v *NullableSingleRoom) Unset() {
    91  	v.value = nil
    92  	v.isSet = false
    93  }
    94  
    95  func NewNullableSingleRoom(val *SingleRoom) *NullableSingleRoom {
    96  	return &NullableSingleRoom{value: val, isSet: true}
    97  }
    98  
    99  func (v NullableSingleRoom) MarshalJSON() ([]byte, error) {
   100  	return json.Marshal(v.value)
   101  }
   102  
   103  func (v *NullableSingleRoom) UnmarshalJSON(src []byte) error {
   104  	v.isSet = true
   105  	return json.Unmarshal(src, &v.value)
   106  }
   107  
   108