github.com/optim-corp/cios-golang-sdk@v0.5.1/cios/docs/Session.md (about)

     1  # Session
     2  
     3  ## Properties
     4  
     5  Name | Type | Description | Notes
     6  ------------ | ------------- | ------------- | -------------
     7  **Id** | Pointer to **string** |  | [optional] 
     8  **First** | Pointer to **string** |  | [optional] 
     9  **Last** | Pointer to **string** |  | [optional] 
    10  **Count** | Pointer to **string** |  | [optional] 
    11  
    12  ## Methods
    13  
    14  ### NewSession
    15  
    16  `func NewSession() *Session`
    17  
    18  NewSession instantiates a new Session object
    19  This constructor will assign default values to properties that have it defined,
    20  and makes sure properties required by API are set, but the set of arguments
    21  will change when the set of required properties is changed
    22  
    23  ### NewSessionWithDefaults
    24  
    25  `func NewSessionWithDefaults() *Session`
    26  
    27  NewSessionWithDefaults instantiates a new Session object
    28  This constructor will only assign default values to properties that have it defined,
    29  but it doesn't guarantee that properties required by API are set
    30  
    31  ### GetId
    32  
    33  `func (o *Session) GetId() string`
    34  
    35  GetId returns the Id field if non-nil, zero value otherwise.
    36  
    37  ### GetIdOk
    38  
    39  `func (o *Session) GetIdOk() (*string, bool)`
    40  
    41  GetIdOk returns a tuple with the Id field if it's non-nil, zero value otherwise
    42  and a boolean to check if the value has been set.
    43  
    44  ### SetId
    45  
    46  `func (o *Session) SetId(v string)`
    47  
    48  SetId sets Id field to given value.
    49  
    50  ### HasId
    51  
    52  `func (o *Session) HasId() bool`
    53  
    54  HasId returns a boolean if a field has been set.
    55  
    56  ### GetFirst
    57  
    58  `func (o *Session) GetFirst() string`
    59  
    60  GetFirst returns the First field if non-nil, zero value otherwise.
    61  
    62  ### GetFirstOk
    63  
    64  `func (o *Session) GetFirstOk() (*string, bool)`
    65  
    66  GetFirstOk returns a tuple with the First field if it's non-nil, zero value otherwise
    67  and a boolean to check if the value has been set.
    68  
    69  ### SetFirst
    70  
    71  `func (o *Session) SetFirst(v string)`
    72  
    73  SetFirst sets First field to given value.
    74  
    75  ### HasFirst
    76  
    77  `func (o *Session) HasFirst() bool`
    78  
    79  HasFirst returns a boolean if a field has been set.
    80  
    81  ### GetLast
    82  
    83  `func (o *Session) GetLast() string`
    84  
    85  GetLast returns the Last field if non-nil, zero value otherwise.
    86  
    87  ### GetLastOk
    88  
    89  `func (o *Session) GetLastOk() (*string, bool)`
    90  
    91  GetLastOk returns a tuple with the Last field if it's non-nil, zero value otherwise
    92  and a boolean to check if the value has been set.
    93  
    94  ### SetLast
    95  
    96  `func (o *Session) SetLast(v string)`
    97  
    98  SetLast sets Last field to given value.
    99  
   100  ### HasLast
   101  
   102  `func (o *Session) HasLast() bool`
   103  
   104  HasLast returns a boolean if a field has been set.
   105  
   106  ### GetCount
   107  
   108  `func (o *Session) GetCount() string`
   109  
   110  GetCount returns the Count field if non-nil, zero value otherwise.
   111  
   112  ### GetCountOk
   113  
   114  `func (o *Session) GetCountOk() (*string, bool)`
   115  
   116  GetCountOk returns a tuple with the Count field if it's non-nil, zero value otherwise
   117  and a boolean to check if the value has been set.
   118  
   119  ### SetCount
   120  
   121  `func (o *Session) SetCount(v string)`
   122  
   123  SetCount sets Count field to given value.
   124  
   125  ### HasCount
   126  
   127  `func (o *Session) HasCount() bool`
   128  
   129  HasCount returns a boolean if a field has been set.
   130  
   131  
   132  [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
   133  
   134