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

     1  # DeviceUpdateRequest
     2  
     3  ## Properties
     4  
     5  Name | Type | Description | Notes
     6  ------------ | ------------- | ------------- | -------------
     7  **Name** | Pointer to **string** |  | [optional] 
     8  **IdNumber** | Pointer to **string** |  | [optional] 
     9  **Description** | Pointer to **string** |  | [optional] 
    10  **DisplayInfo** | Pointer to [**DisplayInfo**](DisplayInfo.md) |  | [optional] 
    11  **ClientIdList** | Pointer to **[]string** |  | [optional] 
    12  **IsManaged** | Pointer to **string** | 該当デバイスの管理方法についての区分。8  管理外:unmanaged ・・・該当デバイス情報に情報を持たせるのみの場合、こちらを選択。 一部管理:managed ・・・該当デバイス情報に情報を持たせ、かつ当サービス以外システム(アプリ)にて管理される場合、こちらを選択。 完全管理:full_managed ・・・該当デバイス情報に情報を持たせ、かつ当サービス以外システム(アプリ)およびデバイスエージェント(キッティング、ファームウェアアップデート等行う機構)にて管理される場合、こちらを選択。 | [optional] 
    13  **RsaPublickey** | Pointer to **string** |  | [optional] 
    14  **CustomInventory** | Pointer to **[]interface{}** |  | [optional] 
    15  
    16  ## Methods
    17  
    18  ### NewDeviceUpdateRequest
    19  
    20  `func NewDeviceUpdateRequest() *DeviceUpdateRequest`
    21  
    22  NewDeviceUpdateRequest instantiates a new DeviceUpdateRequest 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  
    27  ### NewDeviceUpdateRequestWithDefaults
    28  
    29  `func NewDeviceUpdateRequestWithDefaults() *DeviceUpdateRequest`
    30  
    31  NewDeviceUpdateRequestWithDefaults instantiates a new DeviceUpdateRequest 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  
    35  ### GetName
    36  
    37  `func (o *DeviceUpdateRequest) GetName() string`
    38  
    39  GetName returns the Name field if non-nil, zero value otherwise.
    40  
    41  ### GetNameOk
    42  
    43  `func (o *DeviceUpdateRequest) GetNameOk() (*string, bool)`
    44  
    45  GetNameOk returns a tuple with the Name field if it's non-nil, zero value otherwise
    46  and a boolean to check if the value has been set.
    47  
    48  ### SetName
    49  
    50  `func (o *DeviceUpdateRequest) SetName(v string)`
    51  
    52  SetName sets Name field to given value.
    53  
    54  ### HasName
    55  
    56  `func (o *DeviceUpdateRequest) HasName() bool`
    57  
    58  HasName returns a boolean if a field has been set.
    59  
    60  ### GetIdNumber
    61  
    62  `func (o *DeviceUpdateRequest) GetIdNumber() string`
    63  
    64  GetIdNumber returns the IdNumber field if non-nil, zero value otherwise.
    65  
    66  ### GetIdNumberOk
    67  
    68  `func (o *DeviceUpdateRequest) GetIdNumberOk() (*string, bool)`
    69  
    70  GetIdNumberOk returns a tuple with the IdNumber field if it's non-nil, zero value otherwise
    71  and a boolean to check if the value has been set.
    72  
    73  ### SetIdNumber
    74  
    75  `func (o *DeviceUpdateRequest) SetIdNumber(v string)`
    76  
    77  SetIdNumber sets IdNumber field to given value.
    78  
    79  ### HasIdNumber
    80  
    81  `func (o *DeviceUpdateRequest) HasIdNumber() bool`
    82  
    83  HasIdNumber returns a boolean if a field has been set.
    84  
    85  ### GetDescription
    86  
    87  `func (o *DeviceUpdateRequest) GetDescription() string`
    88  
    89  GetDescription returns the Description field if non-nil, zero value otherwise.
    90  
    91  ### GetDescriptionOk
    92  
    93  `func (o *DeviceUpdateRequest) GetDescriptionOk() (*string, bool)`
    94  
    95  GetDescriptionOk returns a tuple with the Description field if it's non-nil, zero value otherwise
    96  and a boolean to check if the value has been set.
    97  
    98  ### SetDescription
    99  
   100  `func (o *DeviceUpdateRequest) SetDescription(v string)`
   101  
   102  SetDescription sets Description field to given value.
   103  
   104  ### HasDescription
   105  
   106  `func (o *DeviceUpdateRequest) HasDescription() bool`
   107  
   108  HasDescription returns a boolean if a field has been set.
   109  
   110  ### GetDisplayInfo
   111  
   112  `func (o *DeviceUpdateRequest) GetDisplayInfo() DisplayInfo`
   113  
   114  GetDisplayInfo returns the DisplayInfo field if non-nil, zero value otherwise.
   115  
   116  ### GetDisplayInfoOk
   117  
   118  `func (o *DeviceUpdateRequest) GetDisplayInfoOk() (*DisplayInfo, bool)`
   119  
   120  GetDisplayInfoOk returns a tuple with the DisplayInfo field if it's non-nil, zero value otherwise
   121  and a boolean to check if the value has been set.
   122  
   123  ### SetDisplayInfo
   124  
   125  `func (o *DeviceUpdateRequest) SetDisplayInfo(v DisplayInfo)`
   126  
   127  SetDisplayInfo sets DisplayInfo field to given value.
   128  
   129  ### HasDisplayInfo
   130  
   131  `func (o *DeviceUpdateRequest) HasDisplayInfo() bool`
   132  
   133  HasDisplayInfo returns a boolean if a field has been set.
   134  
   135  ### GetClientIdList
   136  
   137  `func (o *DeviceUpdateRequest) GetClientIdList() []string`
   138  
   139  GetClientIdList returns the ClientIdList field if non-nil, zero value otherwise.
   140  
   141  ### GetClientIdListOk
   142  
   143  `func (o *DeviceUpdateRequest) GetClientIdListOk() (*[]string, bool)`
   144  
   145  GetClientIdListOk returns a tuple with the ClientIdList field if it's non-nil, zero value otherwise
   146  and a boolean to check if the value has been set.
   147  
   148  ### SetClientIdList
   149  
   150  `func (o *DeviceUpdateRequest) SetClientIdList(v []string)`
   151  
   152  SetClientIdList sets ClientIdList field to given value.
   153  
   154  ### HasClientIdList
   155  
   156  `func (o *DeviceUpdateRequest) HasClientIdList() bool`
   157  
   158  HasClientIdList returns a boolean if a field has been set.
   159  
   160  ### GetIsManaged
   161  
   162  `func (o *DeviceUpdateRequest) GetIsManaged() string`
   163  
   164  GetIsManaged returns the IsManaged field if non-nil, zero value otherwise.
   165  
   166  ### GetIsManagedOk
   167  
   168  `func (o *DeviceUpdateRequest) GetIsManagedOk() (*string, bool)`
   169  
   170  GetIsManagedOk returns a tuple with the IsManaged field if it's non-nil, zero value otherwise
   171  and a boolean to check if the value has been set.
   172  
   173  ### SetIsManaged
   174  
   175  `func (o *DeviceUpdateRequest) SetIsManaged(v string)`
   176  
   177  SetIsManaged sets IsManaged field to given value.
   178  
   179  ### HasIsManaged
   180  
   181  `func (o *DeviceUpdateRequest) HasIsManaged() bool`
   182  
   183  HasIsManaged returns a boolean if a field has been set.
   184  
   185  ### GetRsaPublickey
   186  
   187  `func (o *DeviceUpdateRequest) GetRsaPublickey() string`
   188  
   189  GetRsaPublickey returns the RsaPublickey field if non-nil, zero value otherwise.
   190  
   191  ### GetRsaPublickeyOk
   192  
   193  `func (o *DeviceUpdateRequest) GetRsaPublickeyOk() (*string, bool)`
   194  
   195  GetRsaPublickeyOk returns a tuple with the RsaPublickey field if it's non-nil, zero value otherwise
   196  and a boolean to check if the value has been set.
   197  
   198  ### SetRsaPublickey
   199  
   200  `func (o *DeviceUpdateRequest) SetRsaPublickey(v string)`
   201  
   202  SetRsaPublickey sets RsaPublickey field to given value.
   203  
   204  ### HasRsaPublickey
   205  
   206  `func (o *DeviceUpdateRequest) HasRsaPublickey() bool`
   207  
   208  HasRsaPublickey returns a boolean if a field has been set.
   209  
   210  ### GetCustomInventory
   211  
   212  `func (o *DeviceUpdateRequest) GetCustomInventory() []interface{}`
   213  
   214  GetCustomInventory returns the CustomInventory field if non-nil, zero value otherwise.
   215  
   216  ### GetCustomInventoryOk
   217  
   218  `func (o *DeviceUpdateRequest) GetCustomInventoryOk() (*[]interface{}, bool)`
   219  
   220  GetCustomInventoryOk returns a tuple with the CustomInventory field if it's non-nil, zero value otherwise
   221  and a boolean to check if the value has been set.
   222  
   223  ### SetCustomInventory
   224  
   225  `func (o *DeviceUpdateRequest) SetCustomInventory(v []interface{})`
   226  
   227  SetCustomInventory sets CustomInventory field to given value.
   228  
   229  ### HasCustomInventory
   230  
   231  `func (o *DeviceUpdateRequest) HasCustomInventory() bool`
   232  
   233  HasCustomInventory returns a boolean if a field has been set.
   234  
   235  
   236  [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
   237  
   238