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

     1  # Client
     2  
     3  ## Properties
     4  
     5  Name | Type | Description | Notes
     6  ------------ | ------------- | ------------- | -------------
     7  **ApplicationClient** | Pointer to [**ApplicationClient**](ApplicationClient.md) |  | [optional] 
     8  **DeviceClient** | Pointer to [**DeviceClient**](DeviceClient.md) |  | [optional] 
     9  
    10  ## Methods
    11  
    12  ### NewClient
    13  
    14  `func NewClient() *Client`
    15  
    16  NewClient instantiates a new Client object
    17  This constructor will assign default values to properties that have it defined,
    18  and makes sure properties required by API are set, but the set of arguments
    19  will change when the set of required properties is changed
    20  
    21  ### NewClientWithDefaults
    22  
    23  `func NewClientWithDefaults() *Client`
    24  
    25  NewClientWithDefaults instantiates a new Client object
    26  This constructor will only assign default values to properties that have it defined,
    27  but it doesn't guarantee that properties required by API are set
    28  
    29  ### GetApplicationClient
    30  
    31  `func (o *Client) GetApplicationClient() ApplicationClient`
    32  
    33  GetApplicationClient returns the ApplicationClient field if non-nil, zero value otherwise.
    34  
    35  ### GetApplicationClientOk
    36  
    37  `func (o *Client) GetApplicationClientOk() (*ApplicationClient, bool)`
    38  
    39  GetApplicationClientOk returns a tuple with the ApplicationClient field if it's non-nil, zero value otherwise
    40  and a boolean to check if the value has been set.
    41  
    42  ### SetApplicationClient
    43  
    44  `func (o *Client) SetApplicationClient(v ApplicationClient)`
    45  
    46  SetApplicationClient sets ApplicationClient field to given value.
    47  
    48  ### HasApplicationClient
    49  
    50  `func (o *Client) HasApplicationClient() bool`
    51  
    52  HasApplicationClient returns a boolean if a field has been set.
    53  
    54  ### GetDeviceClient
    55  
    56  `func (o *Client) GetDeviceClient() DeviceClient`
    57  
    58  GetDeviceClient returns the DeviceClient field if non-nil, zero value otherwise.
    59  
    60  ### GetDeviceClientOk
    61  
    62  `func (o *Client) GetDeviceClientOk() (*DeviceClient, bool)`
    63  
    64  GetDeviceClientOk returns a tuple with the DeviceClient field if it's non-nil, zero value otherwise
    65  and a boolean to check if the value has been set.
    66  
    67  ### SetDeviceClient
    68  
    69  `func (o *Client) SetDeviceClient(v DeviceClient)`
    70  
    71  SetDeviceClient sets DeviceClient field to given value.
    72  
    73  ### HasDeviceClient
    74  
    75  `func (o *Client) HasDeviceClient() bool`
    76  
    77  HasDeviceClient returns a boolean if a field has been set.
    78  
    79  
    80  [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
    81  
    82