github.com/optim-corp/cios-golang-sdk@v0.5.1/cios/model_updated_by.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  // UpdatedBy struct for UpdatedBy
    18  type UpdatedBy struct {
    19  	User *CreatedByUser `json:"user,omitempty"`
    20  	Client *CreatedByClient `json:"client,omitempty"`
    21  }
    22  
    23  // NewUpdatedBy instantiates a new UpdatedBy object
    24  // This constructor will assign default values to properties that have it defined,
    25  // and makes sure properties required by API are set, but the set of arguments
    26  // will change when the set of required properties is changed
    27  func NewUpdatedBy() *UpdatedBy {
    28  	this := UpdatedBy{}
    29  	return &this
    30  }
    31  
    32  // NewUpdatedByWithDefaults instantiates a new UpdatedBy 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 NewUpdatedByWithDefaults() *UpdatedBy {
    36  	this := UpdatedBy{}
    37  	return &this
    38  }
    39  
    40  // GetUser returns the User field value if set, zero value otherwise.
    41  func (o *UpdatedBy) GetUser() CreatedByUser {
    42  	if o == nil || o.User == nil {
    43  		var ret CreatedByUser
    44  		return ret
    45  	}
    46  	return *o.User
    47  }
    48  
    49  // GetUserOk returns a tuple with the User field value if set, nil otherwise
    50  // and a boolean to check if the value has been set.
    51  func (o *UpdatedBy) GetUserOk() (*CreatedByUser, bool) {
    52  	if o == nil || o.User == nil {
    53  		return nil, false
    54  	}
    55  	return o.User, true
    56  }
    57  
    58  // HasUser returns a boolean if a field has been set.
    59  func (o *UpdatedBy) HasUser() bool {
    60  	if o != nil && o.User != nil {
    61  		return true
    62  	}
    63  
    64  	return false
    65  }
    66  
    67  // SetUser gets a reference to the given CreatedByUser and assigns it to the User field.
    68  func (o *UpdatedBy) SetUser(v CreatedByUser) {
    69  	o.User = &v
    70  }
    71  
    72  // GetClient returns the Client field value if set, zero value otherwise.
    73  func (o *UpdatedBy) GetClient() CreatedByClient {
    74  	if o == nil || o.Client == nil {
    75  		var ret CreatedByClient
    76  		return ret
    77  	}
    78  	return *o.Client
    79  }
    80  
    81  // GetClientOk returns a tuple with the Client field value if set, nil otherwise
    82  // and a boolean to check if the value has been set.
    83  func (o *UpdatedBy) GetClientOk() (*CreatedByClient, bool) {
    84  	if o == nil || o.Client == nil {
    85  		return nil, false
    86  	}
    87  	return o.Client, true
    88  }
    89  
    90  // HasClient returns a boolean if a field has been set.
    91  func (o *UpdatedBy) HasClient() bool {
    92  	if o != nil && o.Client != nil {
    93  		return true
    94  	}
    95  
    96  	return false
    97  }
    98  
    99  // SetClient gets a reference to the given CreatedByClient and assigns it to the Client field.
   100  func (o *UpdatedBy) SetClient(v CreatedByClient) {
   101  	o.Client = &v
   102  }
   103  
   104  func (o UpdatedBy) MarshalJSON() ([]byte, error) {
   105  	toSerialize := map[string]interface{}{}
   106  	if o.User != nil {
   107  		toSerialize["user"] = o.User
   108  	}
   109  	if o.Client != nil {
   110  		toSerialize["client"] = o.Client
   111  	}
   112  	return json.Marshal(toSerialize)
   113  }
   114  
   115  type NullableUpdatedBy struct {
   116  	value *UpdatedBy
   117  	isSet bool
   118  }
   119  
   120  func (v NullableUpdatedBy) Get() *UpdatedBy {
   121  	return v.value
   122  }
   123  
   124  func (v *NullableUpdatedBy) Set(val *UpdatedBy) {
   125  	v.value = val
   126  	v.isSet = true
   127  }
   128  
   129  func (v NullableUpdatedBy) IsSet() bool {
   130  	return v.isSet
   131  }
   132  
   133  func (v *NullableUpdatedBy) Unset() {
   134  	v.value = nil
   135  	v.isSet = false
   136  }
   137  
   138  func NewNullableUpdatedBy(val *UpdatedBy) *NullableUpdatedBy {
   139  	return &NullableUpdatedBy{value: val, isSet: true}
   140  }
   141  
   142  func (v NullableUpdatedBy) MarshalJSON() ([]byte, error) {
   143  	return json.Marshal(v.value)
   144  }
   145  
   146  func (v *NullableUpdatedBy) UnmarshalJSON(src []byte) error {
   147  	v.isSet = true
   148  	return json.Unmarshal(src, &v.value)
   149  }
   150  
   151