github.com/optim-corp/cios-golang-sdk@v0.5.1/cios/model_single_session.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  // SingleSession struct for SingleSession
    18  type SingleSession struct {
    19  	Session *Session `json:"session,omitempty"`
    20  }
    21  
    22  // NewSingleSession instantiates a new SingleSession 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 NewSingleSession() *SingleSession {
    27  	this := SingleSession{}
    28  	return &this
    29  }
    30  
    31  // NewSingleSessionWithDefaults instantiates a new SingleSession object
    32  // This constructor will only assign default values to properties that have it defined,
    33  // but it doesn't guarantee that properties required by API are set
    34  func NewSingleSessionWithDefaults() *SingleSession {
    35  	this := SingleSession{}
    36  	return &this
    37  }
    38  
    39  // GetSession returns the Session field value if set, zero value otherwise.
    40  func (o *SingleSession) GetSession() Session {
    41  	if o == nil || o.Session == nil {
    42  		var ret Session
    43  		return ret
    44  	}
    45  	return *o.Session
    46  }
    47  
    48  // GetSessionOk returns a tuple with the Session field value if set, nil otherwise
    49  // and a boolean to check if the value has been set.
    50  func (o *SingleSession) GetSessionOk() (*Session, bool) {
    51  	if o == nil || o.Session == nil {
    52  		return nil, false
    53  	}
    54  	return o.Session, true
    55  }
    56  
    57  // HasSession returns a boolean if a field has been set.
    58  func (o *SingleSession) HasSession() bool {
    59  	if o != nil && o.Session != nil {
    60  		return true
    61  	}
    62  
    63  	return false
    64  }
    65  
    66  // SetSession gets a reference to the given Session and assigns it to the Session field.
    67  func (o *SingleSession) SetSession(v Session) {
    68  	o.Session = &v
    69  }
    70  
    71  func (o SingleSession) MarshalJSON() ([]byte, error) {
    72  	toSerialize := map[string]interface{}{}
    73  	if o.Session != nil {
    74  		toSerialize["session"] = o.Session
    75  	}
    76  	return json.Marshal(toSerialize)
    77  }
    78  
    79  type NullableSingleSession struct {
    80  	value *SingleSession
    81  	isSet bool
    82  }
    83  
    84  func (v NullableSingleSession) Get() *SingleSession {
    85  	return v.value
    86  }
    87  
    88  func (v *NullableSingleSession) Set(val *SingleSession) {
    89  	v.value = val
    90  	v.isSet = true
    91  }
    92  
    93  func (v NullableSingleSession) IsSet() bool {
    94  	return v.isSet
    95  }
    96  
    97  func (v *NullableSingleSession) Unset() {
    98  	v.value = nil
    99  	v.isSet = false
   100  }
   101  
   102  func NewNullableSingleSession(val *SingleSession) *NullableSingleSession {
   103  	return &NullableSingleSession{value: val, isSet: true}
   104  }
   105  
   106  func (v NullableSingleSession) MarshalJSON() ([]byte, error) {
   107  	return json.Marshal(v.value)
   108  }
   109  
   110  func (v *NullableSingleSession) UnmarshalJSON(src []byte) error {
   111  	v.isSet = true
   112  	return json.Unmarshal(src, &v.value)
   113  }
   114  
   115