lws 6.2.0 → 6.2.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 2d578f48839e82886fbae900676021fa42ed4b6ba6027545e274c1873df0048d
4
- data.tar.gz: 1fb84987148c6e8783b87c1401553fec78081d09efbfc502d77307f08321bfa5
3
+ metadata.gz: 02ddf61260b1288e6e201f1c80aa065963e9beec247b133b6a4fb78a2b78cdca
4
+ data.tar.gz: 6526aa14baee05dd3e6e1618a87e21c2ca274afba7d360bf5585420f8c8221ce
5
5
  SHA512:
6
- metadata.gz: f70e8d929cfb091b04c2239f290fb668007db26e581ad2cf633946171472199e33cf7d0d5278341a7e64d75e50d6deca229f056cfcd99a54b0f92f5edcb49762
7
- data.tar.gz: fd7405242f6ba25d772b699f995b0fff4447cf3ea10cafdcf4a3d2748278b4913155f6925568b23358b65c01ee724166b65b8ec4748977aec3352613144f1de7
6
+ metadata.gz: f9e1a3341fd4b28dea74abfe121b8352b8fa22d0aea35b239f48f9d7ba45bd91382c636385f83a08c3f3b9f4efadf72dccca35119e62d423cd12b1d877c032ed
7
+ data.tar.gz: dbfd3e1334c6790712e60e931eed86c94f98d478b9ea54e5c2fca855cfe5f57967d394b32d2777a8f4e480d9a1b419f8eede43f7b9b9df57d4e922ace9f972b3
data/CHANGELOG.md CHANGED
@@ -4,6 +4,11 @@ Up until v6.1.0, we used the standard Gem version numbering starting at v0.0.1.
4
4
  From v6.1.0 on the version will follow the API version of LWS in the major/minor
5
5
  part of te version.
6
6
 
7
+ ## v6.2.1
8
+
9
+ * Add new models and attributes to the Presence app (#12098, #12099)
10
+ * Replace Fixnum by Integer in the documentation (for Ruby ≥ 2.3)
11
+
7
12
  ## v6.2.0
8
13
 
9
14
  * Add the Resource app implementation (#12097)
data/Rakefile CHANGED
@@ -19,6 +19,7 @@ end
19
19
  Rake::TestTask.new do |t|
20
20
  t.libs << "test" << "lib"
21
21
  t.pattern = "test/*_test.rb"
22
+ t.warning = false
22
23
  end
23
24
 
24
25
  YARD::Rake::YardocTask.new
data/lib/lws/apps/auth.rb CHANGED
@@ -41,7 +41,7 @@ module LWS::Auth
41
41
  use_api LWS::Auth.api
42
42
 
43
43
  # @!attribute id [r]
44
- # @return [Fixnum] the (unique) ID of the account
44
+ # @return [Integer] the (unique) ID of the account
45
45
  attribute :id
46
46
 
47
47
  # @!attribute avatar_url
@@ -57,7 +57,7 @@ module LWS::Auth
57
57
  belongs_to :company
58
58
 
59
59
  # @!attribute company_id
60
- # @return [Fixnum] the ID of the company that the account belongs to
60
+ # @return [Integer] the ID of the company that the account belongs to
61
61
  attribute :company_id
62
62
 
63
63
  # @!attribute devices
@@ -81,7 +81,7 @@ module LWS::Auth
81
81
  uri: "apps/:id"
82
82
 
83
83
  # @!attribute start_app_id
84
- # @return [Fixnum, nil] the ID of the app to start with/open when logging in
84
+ # @return [Integer, nil] the ID of the app to start with/open when logging in
85
85
  attribute :start_app_id
86
86
 
87
87
  # @!attribute users
@@ -102,7 +102,7 @@ module LWS::Auth
102
102
  use_api LWS::Auth.api
103
103
 
104
104
  # @!attribute id [r]
105
- # @return [Fixnum] the (unique) ID of the account
105
+ # @return [Integer] the (unique) ID of the account
106
106
  attribute :id
107
107
 
108
108
  # @!attribute accounts
@@ -131,7 +131,7 @@ module LWS::Auth
131
131
  has_many :licenses
132
132
 
133
133
  # @!attribute order_priority
134
- # @return [Fixnum, nil] the order priority of the app with respect to the
134
+ # @return [Integer, nil] the order priority of the app with respect to the
135
135
  # other apps
136
136
  attribute :order_priority
137
137
 
@@ -161,7 +161,7 @@ module LWS::Auth
161
161
  use_api LWS::Auth.api
162
162
 
163
163
  # @!attribute id [r]
164
- # @return [Fixnum] the (unique) ID of the company
164
+ # @return [Integer] the (unique) ID of the company
165
165
  attribute :id
166
166
 
167
167
  # @!attribute accounts
@@ -193,7 +193,7 @@ module LWS::Auth
193
193
  uri: "accounts/:id"
194
194
 
195
195
  # @!attribute contact_person_id
196
- # @return [Fixnum] the ID of the contact person of the company
196
+ # @return [Integer] the ID of the contact person of the company
197
197
  attribute :contact_person_id
198
198
 
199
199
  # @!attribute contracts
@@ -231,7 +231,7 @@ module LWS::Auth
231
231
  uri: "companies/:id"
232
232
 
233
233
  # @!attribute parent_id
234
- # @return [Fixnum, nil] the ID of the parenty company
234
+ # @return [Integer, nil] the ID of the parenty company
235
235
  attribute :parent_id
236
236
 
237
237
  # @!attribute telephone_number
@@ -268,7 +268,7 @@ module LWS::Auth
268
268
  uri "companies/:company_id/contracts(/:id)"
269
269
 
270
270
  # @!attribute id [r]
271
- # @return [Fixnum] the (unique) ID of the contract
271
+ # @return [Integer] the (unique) ID of the contract
272
272
  attribute :id
273
273
 
274
274
  # @!attribute company
@@ -276,7 +276,7 @@ module LWS::Auth
276
276
  belongs_to :company
277
277
 
278
278
  # @!attribute company_id
279
- # @return [Fixnum] the ID of the company that has the contract
279
+ # @return [Integer] the ID of the company that has the contract
280
280
  attribute :company_id
281
281
 
282
282
  # @!attribute end_date
@@ -305,7 +305,7 @@ module LWS::Auth
305
305
  uri "accounts/:account_id/devices(/:id)"
306
306
 
307
307
  # @!attribute id [r]
308
- # @return [Fixnum] the (unique) ID of the device
308
+ # @return [Integer] the (unique) ID of the device
309
309
  attribute :id
310
310
 
311
311
  # @!attribute account
@@ -313,7 +313,7 @@ module LWS::Auth
313
313
  belongs_to :account
314
314
 
315
315
  # @!attribute account_id
316
- # @return [Fixnum] the ID of the account that the device belongs to
316
+ # @return [Integer] the ID of the account that the device belongs to
317
317
  attribute :account_id
318
318
 
319
319
  # @!attribute name
@@ -339,7 +339,7 @@ module LWS::Auth
339
339
  uri "companies/:company_id/licenses(/:id)"
340
340
 
341
341
  # @!attribute id [r]
342
- # @return [Fixnum] the (unique) ID of the license
342
+ # @return [Integer] the (unique) ID of the license
343
343
  attribute :id
344
344
 
345
345
  # @!attribute app
@@ -347,7 +347,7 @@ module LWS::Auth
347
347
  belongs_to :app
348
348
 
349
349
  # @!attribute app_id
350
- # @return [Fixnum] the ID of the app the license is for
350
+ # @return [Integer] the ID of the app the license is for
351
351
  attribute :app_id
352
352
 
353
353
  # @!attribute company
@@ -355,11 +355,11 @@ module LWS::Auth
355
355
  belongs_to :company
356
356
 
357
357
  # @!attribute company_id
358
- # @return [Fixnum] the ID of the company that has the license
358
+ # @return [Integer] the ID of the company that has the license
359
359
  attribute :company_id
360
360
 
361
361
  # @!attribute count
362
- # @return [Fixnum] the number of items the license provides
362
+ # @return [Integer] the number of items the license provides
363
363
  attribute :count
364
364
 
365
365
  # @!attribute desc
@@ -397,7 +397,7 @@ module LWS::Auth
397
397
  use_api LWS::Auth.api
398
398
 
399
399
  # @!attribute id [r]
400
- # @return [Fixnum] the (unique) ID of the token
400
+ # @return [Integer] the (unique) ID of the token
401
401
  attribute :id
402
402
 
403
403
  # @!attribute account
@@ -406,7 +406,7 @@ module LWS::Auth
406
406
  belongs_to :account, uri: nil
407
407
 
408
408
  # @!attribute account_id
409
- # @return [Fixnum] the ID of the account the token belongs to
409
+ # @return [Integer] the ID of the account the token belongs to
410
410
  attribute :account_id
411
411
 
412
412
  # @!attribute device
@@ -415,7 +415,7 @@ module LWS::Auth
415
415
  belongs_to :device, uri: nil
416
416
 
417
417
  # @!attribute device_id
418
- # @return [Fixnum, nil] the ID of the device the token belongs to
418
+ # @return [Integer, nil] the ID of the device the token belongs to
419
419
  attribute :device_id
420
420
 
421
421
  # @!attribute created_on [r]
@@ -454,7 +454,7 @@ module LWS::Auth
454
454
  belongs_to :user, uri: nil
455
455
 
456
456
  # @!attribute user_id
457
- # @return [Fixnum, nil] the ID of the user the token belongs to
457
+ # @return [Integer, nil] the ID of the user the token belongs to
458
458
  attribute :user_id
459
459
 
460
460
  # @!attribute created_at [r]
@@ -472,7 +472,7 @@ module LWS::Auth
472
472
  uri "companies/:company_id/reports(/:id)"
473
473
 
474
474
  # @!attribute id [r]
475
- # @return [Fixnum] the (unique) ID of the usage report
475
+ # @return [Integer] the (unique) ID of the usage report
476
476
  attribute :id
477
477
 
478
478
  # @!attribute company
@@ -480,7 +480,7 @@ module LWS::Auth
480
480
  belongs_to :company
481
481
 
482
482
  # @!attribute company_id
483
- # @return [Fixnum] the ID of the company that the usage report is for
483
+ # @return [Integer] the ID of the company that the usage report is for
484
484
  attribute :company_id
485
485
 
486
486
  # @!attribute object
@@ -506,7 +506,7 @@ module LWS::Auth
506
506
  uri "accounts/:account_id/users(/:id)"
507
507
 
508
508
  # @!attribute id [r]
509
- # @return [Fixnum] the (unique) ID of the user
509
+ # @return [Integer] the (unique) ID of the user
510
510
  attribute :id
511
511
 
512
512
  # @!attribute account
@@ -514,7 +514,7 @@ module LWS::Auth
514
514
  belongs_to :account
515
515
 
516
516
  # @!attribute account_id
517
- # @return [Fixnum] the ID of the account that the user belongs to
517
+ # @return [Integer] the ID of the account that the user belongs to
518
518
  attribute :account_id
519
519
 
520
520
  # @!attribute auth_provider
@@ -41,7 +41,7 @@ module LWS::CorporateWebsite
41
41
  uri "pages/:page_id/articles(/:id)"
42
42
 
43
43
  # @!attribute id [r]
44
- # @return [Fixnum] the (unique) ID of the article
44
+ # @return [Integer] the (unique) ID of the article
45
45
  attribute :id
46
46
 
47
47
  # @!attribute body
@@ -54,7 +54,7 @@ module LWS::CorporateWebsite
54
54
  attribute :layout
55
55
 
56
56
  # @!attribute order
57
- # @return [Fixnum, nil] the order (number) of the article withing the page
57
+ # @return [Integer, nil] the order (number) of the article withing the page
58
58
  attribute :order
59
59
 
60
60
  # @!attribute page
@@ -62,7 +62,7 @@ module LWS::CorporateWebsite
62
62
  belongs_to :page
63
63
 
64
64
  # @!attribute page_id
65
- # @return [Fixnum] the ID of the page the article belongs to
65
+ # @return [Integer] the ID of the page the article belongs to
66
66
  attribute :page_id
67
67
 
68
68
  # @!attribute picture
@@ -115,7 +115,7 @@ module LWS::CorporateWebsite
115
115
  use_api LWS::CorporateWebsite.api
116
116
 
117
117
  # @!attribute id [r]
118
- # @return [Fixnum] the (unique) ID of the office time
118
+ # @return [Integer] the (unique) ID of the office time
119
119
  attribute :id
120
120
 
121
121
  # @!attribute announce
@@ -157,7 +157,7 @@ module LWS::CorporateWebsite
157
157
  use_api LWS::CorporateWebsite.api
158
158
 
159
159
  # @!attribute id [r]
160
- # @return [Fixnum] the (unique) ID of the page
160
+ # @return [Integer] the (unique) ID of the page
161
161
  attribute :id
162
162
 
163
163
  # @!attribute articles
@@ -182,7 +182,7 @@ module LWS::CorporateWebsite
182
182
  attribute :news
183
183
 
184
184
  # @!attribute order
185
- # @return [Fixnum] the order (number) of the page withing the menu
185
+ # @return [Integer] the order (number) of the page withing the menu
186
186
  attribute :order
187
187
 
188
188
  # @!attribute sitemap
@@ -211,7 +211,7 @@ module LWS::CorporateWebsite
211
211
  use_api LWS::CorporateWebsite.api
212
212
 
213
213
  # @!attribute id [r]
214
- # @return [Fixnum] the (unique) ID of the social page
214
+ # @return [Integer] the (unique) ID of the social page
215
215
  attribute :id
216
216
 
217
217
  # @!attribute account
@@ -219,7 +219,7 @@ module LWS::CorporateWebsite
219
219
  belongs_to :account, class_name: "LWS::Auth::Account"
220
220
 
221
221
  # @!attribute account_id
222
- # @return [Fixnum] the ID of the account used for posting the social page
222
+ # @return [Integer] the ID of the account used for posting the social page
223
223
  attribute :account_id
224
224
 
225
225
  # @!attribute company
@@ -227,7 +227,7 @@ module LWS::CorporateWebsite
227
227
  belongs_to :company, class_name: "LWS::Auth::Company"
228
228
 
229
229
  # @!attribute company_id
230
- # @return [Fixnum] the ID of the account used for posting the social page
230
+ # @return [Integer] the ID of the account used for posting the social page
231
231
  attribute :company_id
232
232
 
233
233
  # @!attribute provider
@@ -256,7 +256,7 @@ module LWS::CorporateWebsite
256
256
  use_api LWS::CorporateWebsite.api
257
257
 
258
258
  # @!attribute id [r]
259
- # @return [Fixnum] the (unique) ID of the social post
259
+ # @return [Integer] the (unique) ID of the social post
260
260
  attribute :id
261
261
 
262
262
  # @!attribute article
@@ -264,7 +264,7 @@ module LWS::CorporateWebsite
264
264
  belongs_to :article
265
265
 
266
266
  # @!attribute article_id
267
- # @return [Fixnum] the ID of the article associated with the social post
267
+ # @return [Integer] the ID of the article associated with the social post
268
268
  attribute :article_id
269
269
 
270
270
  # @!attribute description
@@ -40,11 +40,11 @@ module LWS::DigitalSignage
40
40
  use_api LWS::DigitalSignage.api
41
41
 
42
42
  # @!attribute id [r]
43
- # @return [Fixnum] the (unique) ID of the channel
43
+ # @return [Integer] the (unique) ID of the channel
44
44
  attribute :id
45
45
 
46
46
  # @!attribute bandwidth
47
- # @return [Fixnum] the bandwidth limit for the channel (bytes per second)
47
+ # @return [Integer] the bandwidth limit for the channel (bytes per second)
48
48
  attribute :bandwidth
49
49
 
50
50
  # @!attribute company
@@ -52,7 +52,7 @@ module LWS::DigitalSignage
52
52
  belongs_to :company, class_name: "LWS::Auth::Company"
53
53
 
54
54
  # @!attribute company_id
55
- # @return [Fixnum] the ID of the company the channel belongs to
55
+ # @return [Integer] the ID of the company the channel belongs to
56
56
  attribute :company_id
57
57
 
58
58
  # @!attribute daily_reboot_time
@@ -70,7 +70,7 @@ module LWS::DigitalSignage
70
70
  # :nocov:
71
71
 
72
72
  # @!attribute display_id
73
- # @return [Fixnum] the ID of the display of the channel
73
+ # @return [Integer] the ID of the display of the channel
74
74
  attribute :display_id
75
75
 
76
76
  # @!attribute groups
@@ -109,7 +109,7 @@ module LWS::DigitalSignage
109
109
  uri: "channel/time_schedules/:id"
110
110
 
111
111
  # @!attribute time_schedule_id
112
- # @return [Fixnum] the ID of the time schedule of the channel
112
+ # @return [Integer] the ID of the time schedule of the channel
113
113
  attribute :time_schedule_id
114
114
 
115
115
  # @!attribute time_schedule_overrides
@@ -122,7 +122,7 @@ module LWS::DigitalSignage
122
122
  attribute :time_zone
123
123
 
124
124
  # @!attribute volume
125
- # @return [Fixnum] the audio volume setting of the channel (percentage)
125
+ # @return [Integer] the audio volume setting of the channel (percentage)
126
126
  attribute :volume
127
127
 
128
128
  # @!attribute created_at [r]
@@ -140,7 +140,7 @@ module LWS::DigitalSignage
140
140
  uri "channel/groups(/:id)"
141
141
 
142
142
  # @!attribute id [r]
143
- # @return [Fixnum] the (unique) ID of the channel group
143
+ # @return [Integer] the (unique) ID of the channel group
144
144
  attribute :id
145
145
 
146
146
  # @!attribute channels
@@ -153,7 +153,7 @@ module LWS::DigitalSignage
153
153
  belongs_to :company, class_name: "LWS::Auth::Company"
154
154
 
155
155
  # @!attribute company_id
156
- # @return [Fixnum] the ID of the company the channel group belongs to
156
+ # @return [Integer] the ID of the company the channel group belongs to
157
157
  attribute :company_id
158
158
 
159
159
  # @!attribute name
@@ -167,7 +167,7 @@ module LWS::DigitalSignage
167
167
  uri: "channel/groups/:id"
168
168
 
169
169
  # @!attribute parent_id
170
- # @return [Fixnum, nil] the ID of the parent group of the channel group
170
+ # @return [Integer, nil] the ID of the parent group of the channel group
171
171
  attribute :parent_id
172
172
 
173
173
  #@!attribute tags
@@ -198,7 +198,7 @@ module LWS::DigitalSignage
198
198
  use_api LWS::DigitalSignage.api
199
199
 
200
200
  # @!attribute id [r]
201
- # @return [Fixnum] the (unique) ID of the display
201
+ # @return [Integer] the (unique) ID of the display
202
202
  attribute :id
203
203
 
204
204
  # @!attribute group
@@ -207,7 +207,7 @@ module LWS::DigitalSignage
207
207
  uri: "channel/groups/:id"
208
208
 
209
209
  # @!attribute group_id
210
- # @return [Fixnum] the ID of the channel group associated with the tag
210
+ # @return [Integer] the ID of the channel group associated with the tag
211
211
  attribute :group_id
212
212
 
213
213
  # @!attribute key
@@ -240,7 +240,7 @@ module LWS::DigitalSignage
240
240
  use_api LWS::DigitalSignage.api
241
241
 
242
242
  # @!attribute id [r]
243
- # @return [Fixnum] the (unique) ID of the channel tag
243
+ # @return [Integer] the (unique) ID of the channel tag
244
244
  attribute :id
245
245
 
246
246
  # @!attribute channel
@@ -248,7 +248,7 @@ module LWS::DigitalSignage
248
248
  belongs_to :channel, class_name: "LWS::DigitalSignage::Channel"
249
249
 
250
250
  # @!attribute channel_id
251
- # @return [Fixnum] the ID of the channel associated with the tag
251
+ # @return [Integer] the ID of the channel associated with the tag
252
252
  attribute :channel_id
253
253
 
254
254
  # @!attribute key
@@ -279,7 +279,7 @@ module LWS::DigitalSignage
279
279
  uri "channel/time_schedules(/:id)"
280
280
 
281
281
  # @!attribute id [r]
282
- # @return [Fixnum] the (unique) ID of the channel time schedule
282
+ # @return [Integer] the (unique) ID of the channel time schedule
283
283
  attribute :id
284
284
 
285
285
  # @!attribute company
@@ -287,7 +287,7 @@ module LWS::DigitalSignage
287
287
  belongs_to :company, class_name: "LWS::Auth::Company"
288
288
 
289
289
  # @!attribute company_id
290
- # @return [Fixnum] the ID of the company the channel time schedule belongs to
290
+ # @return [Integer] the ID of the company the channel time schedule belongs to
291
291
  attribute :company_id
292
292
 
293
293
  # @!attribute channels
@@ -324,11 +324,11 @@ module LWS::DigitalSignage
324
324
  uri "channel/time_schedules/:time_schedule_id/days(/:id)"
325
325
 
326
326
  # @!attribute id [r]
327
- # @return [Fixnum] the (unique) ID of the channel time schedule day
327
+ # @return [Integer] the (unique) ID of the channel time schedule day
328
328
  attribute :id
329
329
 
330
330
  # @!attribute day
331
- # @return [Fixnum] the ID of the day of the channel time schedule
331
+ # @return [Integer] the ID of the day of the channel time schedule
332
332
  # (0 = Sunday, 1 = Monday, ..., 6 = Saturday)
333
333
  attribute :day
334
334
 
@@ -342,7 +342,7 @@ module LWS::DigitalSignage
342
342
  uri: "channel/time_schedules/:id"
343
343
 
344
344
  # @!attribute time_schedule_id
345
- # @return [Fixnum] the ID of the time schedule the day belongs to
345
+ # @return [Integer] the ID of the time schedule the day belongs to
346
346
  attribute :time_schedule_id
347
347
 
348
348
  # @!attribute wakeup
@@ -364,7 +364,7 @@ module LWS::DigitalSignage
364
364
  uri "channel/time_schedule_overrides(/:id)"
365
365
 
366
366
  # @!attribute id [r]
367
- # @return [Fixnum] the (unique) ID of the channel time schedule override
367
+ # @return [Integer] the (unique) ID of the channel time schedule override
368
368
  attribute :id
369
369
 
370
370
  # @!attribute channels
@@ -377,7 +377,7 @@ module LWS::DigitalSignage
377
377
  belongs_to :company, class_name: "LWS::Auth::Company"
378
378
 
379
379
  # @!attribute company_id
380
- # @return [Fixnum] the ID of the company the channel time schedule override belongs to
380
+ # @return [Integer] the ID of the company the channel time schedule override belongs to
381
381
  attribute :company_id
382
382
 
383
383
  # @!attribute end
@@ -419,7 +419,7 @@ module LWS::DigitalSignage
419
419
  use_api LWS::DigitalSignage.api
420
420
 
421
421
  # @!attribute id [r]
422
- # @return [Fixnum] the (unique) ID of the display
422
+ # @return [Integer] the (unique) ID of the display
423
423
  attribute :id
424
424
 
425
425
  # @!attribute aspect_ratio
@@ -505,7 +505,7 @@ module LWS::DigitalSignage
505
505
  uri "displays/:display_id/inputs(/:id)"
506
506
 
507
507
  # @!attribute id [r]
508
- # @return [Fixnum] the (unique) ID of the display input
508
+ # @return [Integer] the (unique) ID of the display input
509
509
  attribute :id
510
510
 
511
511
  # @!attribute command
@@ -523,7 +523,7 @@ module LWS::DigitalSignage
523
523
  # :nocov:
524
524
 
525
525
  # @!attribute display_id
526
- # @return [Fixnum] the ID of the display associated with the input
526
+ # @return [Integer] the ID of the display associated with the input
527
527
  attribute :display_id
528
528
 
529
529
  # @!attribute feedback_command
@@ -553,7 +553,7 @@ module LWS::DigitalSignage
553
553
  uri "display/resolutions(/:id)"
554
554
 
555
555
  # @!attribute id [r]
556
- # @return [Fixnum] the (unique) ID of the display resolution
556
+ # @return [Integer] the (unique) ID of the display resolution
557
557
  attribute :id
558
558
 
559
559
  # @!attribute aspect_ratio [r]
@@ -569,7 +569,7 @@ module LWS::DigitalSignage
569
569
  uri: "display/resolutions/:resolution_id/displays(/:id)"
570
570
 
571
571
  # @!attribute height
572
- # @return [Fixnum] the height of the resolution
572
+ # @return [Integer] the height of the resolution
573
573
  attribute :height
574
574
 
575
575
  # @!attribute models
@@ -584,7 +584,7 @@ module LWS::DigitalSignage
584
584
  attribute :scanning_mode
585
585
 
586
586
  # @!attribute width
587
- # @return [Fixnum] the width of the resolution
587
+ # @return [Integer] the width of the resolution
588
588
  attribute :width
589
589
 
590
590
  # @!attribute created_at [r]
@@ -601,7 +601,7 @@ module LWS::DigitalSignage
601
601
  use_api LWS::DigitalSignage.api
602
602
 
603
603
  # @!attribute id [r]
604
- # @return [Fixnum] the (unique) ID of the player
604
+ # @return [Integer] the (unique) ID of the player
605
605
  attribute :id
606
606
 
607
607
  # @!attribute channel
@@ -609,7 +609,7 @@ module LWS::DigitalSignage
609
609
  belongs_to :channel, class_name: "LWS::DigitalSignage::Channel"
610
610
 
611
611
  # @!attribute channel_id
612
- # @return [Fixnum] the ID of the channel of the player
612
+ # @return [Integer] the ID of the channel of the player
613
613
  attribute :channel_id
614
614
 
615
615
  # @!attribute company
@@ -617,7 +617,7 @@ module LWS::DigitalSignage
617
617
  belongs_to :company, class_name: "LWS::Auth::Company"
618
618
 
619
619
  # @!attribute company_id
620
- # @return [Fixnum] the ID of the company the player belongs to
620
+ # @return [Integer] the ID of the company the player belongs to
621
621
  attribute :company_id
622
622
 
623
623
  # @!attribute components
@@ -630,7 +630,7 @@ module LWS::DigitalSignage
630
630
  uri: "player/configurations/:id"
631
631
 
632
632
  # @!attribute configuration_id
633
- # @return [Fixnum] the ID of the configuration of the player
633
+ # @return [Integer] the ID of the configuration of the player
634
634
  attribute :configuration_id
635
635
 
636
636
  # @!attribute feedbacks
@@ -655,7 +655,7 @@ module LWS::DigitalSignage
655
655
  uri: "player/models/:id"
656
656
 
657
657
  # @!attribute model_id
658
- # @return [Fixnum] the ID of the model of the player
658
+ # @return [Integer] the ID of the model of the player
659
659
  attribute :model_id
660
660
 
661
661
  # @!attribute notifications
@@ -678,7 +678,7 @@ module LWS::DigitalSignage
678
678
  uri: "player/os/release_channels/:id"
679
679
 
680
680
  # @!attribute release_channel_id
681
- # @return [Fixnum] the ID of the player OS release channel used by the
681
+ # @return [Integer] the ID of the player OS release channel used by the
682
682
  # player
683
683
  attribute :releasee_channel_id
684
684
 
@@ -721,7 +721,7 @@ module LWS::DigitalSignage
721
721
  uri "player/components(/:id)"
722
722
 
723
723
  # @!attribute id [r]
724
- # @return [Fixnum] the (unique) ID of the player component
724
+ # @return [Integer] the (unique) ID of the player component
725
725
  attribute :id
726
726
 
727
727
  # @!attribute description
@@ -753,7 +753,7 @@ module LWS::DigitalSignage
753
753
  uri: "companies/:id"
754
754
 
755
755
  # @!attribute supplier_id
756
- # @return [Fixnum] the ID of the supplier of the component part
756
+ # @return [Integer] the ID of the supplier of the component part
757
757
  attribute :supplier_id
758
758
 
759
759
  # @!attribute created_at [r]
@@ -775,7 +775,7 @@ module LWS::DigitalSignage
775
775
  uri "players/components/:component_id/parts(/:id)"
776
776
 
777
777
  # @!attribute id [r]
778
- # @return [Fixnum] the (unique) ID of the player component part
778
+ # @return [Integer] the (unique) ID of the player component part
779
779
  attribute :id
780
780
 
781
781
  # @!attribute component
@@ -784,7 +784,7 @@ module LWS::DigitalSignage
784
784
  uri: "player/components/:id"
785
785
 
786
786
  # @!attribute component_id
787
- # @return [Fixnum] the ID of the player component that uses the part
787
+ # @return [Integer] the ID of the player component that uses the part
788
788
  attribute :component_id
789
789
 
790
790
  # @!attribute player
@@ -792,7 +792,7 @@ module LWS::DigitalSignage
792
792
  belongs_to :player, class_name: "LWS::DigitalSignage::Player"
793
793
 
794
794
  # @!attribute player_id
795
- # @return [Fixnum, nil] the ID of the player the component part is used in
795
+ # @return [Integer, nil] the ID of the player the component part is used in
796
796
  attribute :player_id
797
797
 
798
798
  # @!attribute serial_number
@@ -814,7 +814,7 @@ module LWS::DigitalSignage
814
814
  uri "player/configurations(/:id)"
815
815
 
816
816
  # @!attribute id [r]
817
- # @return [Fixnum] the (unique) ID of the player configuration
817
+ # @return [Integer] the (unique) ID of the player configuration
818
818
  attribute :id
819
819
 
820
820
  # @!attribute company
@@ -822,7 +822,7 @@ module LWS::DigitalSignage
822
822
  belongs_to :company, class_name: "LWS::Auth::Company"
823
823
 
824
824
  # @!attribute company_id
825
- # @return [Fixnum] the ID of the company the player configuration belongs to
825
+ # @return [Integer] the ID of the company the player configuration belongs to
826
826
  attribute :company_id
827
827
 
828
828
  # @!attribute description
@@ -845,7 +845,7 @@ module LWS::DigitalSignage
845
845
  uri: "player/predefined_configurations/:id"
846
846
 
847
847
  # @!attribute predefined_configuration_id
848
- # @return [Fixnum, nil] the ID of the predefined configuration that is used
848
+ # @return [Integer, nil] the ID of the predefined configuration that is used
849
849
  # as a basis for the player configuration
850
850
  attribute :predefined_configuration_id
851
851
 
@@ -873,7 +873,7 @@ module LWS::DigitalSignage
873
873
  uri "player/configurations/:configuration_id/settings(/:id)"
874
874
 
875
875
  # @!attribute id [r]
876
- # @return [Fixnum] the (unique) ID of the player configuration setting
876
+ # @return [Integer] the (unique) ID of the player configuration setting
877
877
  attribute :id
878
878
 
879
879
  # @!attribute configuration
@@ -883,7 +883,7 @@ module LWS::DigitalSignage
883
883
  uri: "player/configurations/:id"
884
884
 
885
885
  # @!attribute configuration_id
886
- # @return [Fixnum] the ID of the player configuration the setting is defined in
886
+ # @return [Integer] the ID of the player configuration the setting is defined in
887
887
  attribute :configuration_id
888
888
 
889
889
  # @!attribute key
@@ -917,7 +917,7 @@ module LWS::DigitalSignage
917
917
  uri "players/:player_id/feedbacks(/:id)"
918
918
 
919
919
  # @!attribute id [r]
920
- # @return [Fixnum] the (unique) ID of the player feedback
920
+ # @return [Integer] the (unique) ID of the player feedback
921
921
  attribute :id
922
922
 
923
923
  # @!attribute player
@@ -925,7 +925,7 @@ module LWS::DigitalSignage
925
925
  belongs_to :player, class_name: "LWS::DigitalSignage::Player"
926
926
 
927
927
  # @!attribute player_id
928
- # @return [Fixnum] the ID of the player the feedback is originating from
928
+ # @return [Integer] the ID of the player the feedback is originating from
929
929
  attribute :player_id
930
930
 
931
931
  # @!attribute release
@@ -936,7 +936,7 @@ module LWS::DigitalSignage
936
936
  uri: "player/os/branches/:branch_id/releases/:id"
937
937
 
938
938
  # @!attribute release_id
939
- # @return [Fixnum] the ID of the player OS branch release the feedback
939
+ # @return [Integer] the ID of the player OS branch release the feedback
940
940
  # is related to
941
941
 
942
942
  # @!attribute results
@@ -964,7 +964,7 @@ module LWS::DigitalSignage
964
964
  uri "players/:player_id/feedbacks/:feedback_id/results(/:id)"
965
965
 
966
966
  # @!attribute id [r]
967
- # @return [Fixnum] the (unique) ID of the player feedback result
967
+ # @return [Integer] the (unique) ID of the player feedback result
968
968
  attribute :id
969
969
 
970
970
  # @!attribute feedback
@@ -985,7 +985,7 @@ module LWS::DigitalSignage
985
985
  belongs_to :player, class_name: "LWS::DigitalSignage::Player"
986
986
 
987
987
  # @!attribute player_id
988
- # @return [Fixnum] the ID of the player the feedback result is for
988
+ # @return [Integer] the ID of the player the feedback result is for
989
989
  attribute :player_id
990
990
 
991
991
  # @!attribute value
@@ -1010,7 +1010,7 @@ module LWS::DigitalSignage
1010
1010
  uri "players/:player_id/logs(/:id)"
1011
1011
 
1012
1012
  # @!attribute id [r]
1013
- # @return [Fixnum] the (unique) ID of the player log
1013
+ # @return [Integer] the (unique) ID of the player log
1014
1014
  attribute :id
1015
1015
 
1016
1016
  # @!attribute log_object
@@ -1022,7 +1022,7 @@ module LWS::DigitalSignage
1022
1022
  belongs_to :player, class_name: "LWS::DigitalSignage::Player"
1023
1023
 
1024
1024
  # @!attribute player_id
1025
- # @return [Fixnum] the ID of the player the log is produced by
1025
+ # @return [Integer] the ID of the player the log is produced by
1026
1026
  attribute :player_id
1027
1027
 
1028
1028
  # @!attribute processed
@@ -1044,7 +1044,7 @@ module LWS::DigitalSignage
1044
1044
  uri "player/models(/:id)"
1045
1045
 
1046
1046
  # @!attribute id [r]
1047
- # @return [Fixnum] the (unique) ID of the player model
1047
+ # @return [Integer] the (unique) ID of the player model
1048
1048
  attribute :id
1049
1049
 
1050
1050
  # @!attribute branches
@@ -1066,7 +1066,7 @@ module LWS::DigitalSignage
1066
1066
  uri: "player/models/:model_id/components(/:id)"
1067
1067
 
1068
1068
  # @!attribute mbf_hours
1069
- # @return [Fixnum] the MBF (mean time between failures) in hours of
1069
+ # @return [Integer] the MBF (mean time between failures) in hours of
1070
1070
  # the player mode
1071
1071
  attribute :mbf_hours
1072
1072
 
@@ -1109,12 +1109,12 @@ module LWS::DigitalSignage
1109
1109
  attribute :support_starts
1110
1110
 
1111
1111
  # @!attribute temperature_critical
1112
- # @return [Fixnum, nil] the critical temperature threshold (°C) for the
1112
+ # @return [Integer, nil] the critical temperature threshold (°C) for the
1113
1113
  # player model
1114
1114
  attribute :temperature_critical
1115
1115
 
1116
1116
  # @!attribute temperature_warning
1117
- # @return [Fixnum, nil] the warning temperature threshold (°C) for the
1117
+ # @return [Integer, nil] the warning temperature threshold (°C) for the
1118
1118
  # player model
1119
1119
  attribute :temperature_warning
1120
1120
 
@@ -1137,7 +1137,7 @@ module LWS::DigitalSignage
1137
1137
  uri "player/models/:model_id/capabilities(/:id)"
1138
1138
 
1139
1139
  # @!attribute id [r]
1140
- # @return [Fixnum] the (unique) ID of the player model capability
1140
+ # @return [Integer] the (unique) ID of the player model capability
1141
1141
  attribute :id
1142
1142
 
1143
1143
  # @!attribute key
@@ -1150,7 +1150,7 @@ module LWS::DigitalSignage
1150
1150
  uri: "player/models/:id"
1151
1151
 
1152
1152
  # @!attribute model_id
1153
- # @return [Fixnum] the ID of the player model that has the capability
1153
+ # @return [Integer] the ID of the player model that has the capability
1154
1154
  attribute :model_id
1155
1155
 
1156
1156
  # @!attribute value
@@ -1175,7 +1175,7 @@ module LWS::DigitalSignage
1175
1175
  uri "players/:player_id/notifications(/:id)"
1176
1176
 
1177
1177
  # @!attribute id [r]
1178
- # @return [Fixnum] the (unique) ID of the player notification
1178
+ # @return [Integer] the (unique) ID of the player notification
1179
1179
  attribute :id
1180
1180
 
1181
1181
  # @!attribute key
@@ -1187,7 +1187,7 @@ module LWS::DigitalSignage
1187
1187
  belongs_to :player, class_name: "LWS::DigitalSignage::Player"
1188
1188
 
1189
1189
  # @!attribute player_id
1190
- # @return [Fixnum] the ID of the player the notification is sent by
1190
+ # @return [Integer] the ID of the player the notification is sent by
1191
1191
  attribute :player_id
1192
1192
 
1193
1193
  # @!attribute protected_value
@@ -1196,7 +1196,7 @@ module LWS::DigitalSignage
1196
1196
  attribute :protected_value
1197
1197
 
1198
1198
  # @!attribute repeated
1199
- # @return [Fixnum, nil] the number of times the notification was repeated
1199
+ # @return [Integer, nil] the number of times the notification was repeated
1200
1200
  attribute :repeated
1201
1201
 
1202
1202
  # @!attribute value
@@ -1221,7 +1221,7 @@ module LWS::DigitalSignage
1221
1221
  uri "player/os/branches(/:id)"
1222
1222
 
1223
1223
  # @!attribute id [r]
1224
- # @return [Fixnum] the (unique) ID of the player OS branch
1224
+ # @return [Integer] the (unique) ID of the player OS branch
1225
1225
  attribute :id
1226
1226
 
1227
1227
  # @!attribute models
@@ -1240,7 +1240,7 @@ module LWS::DigitalSignage
1240
1240
  uri: "player/os/release_channels/:id"
1241
1241
 
1242
1242
  # @!attribute release_channel_id
1243
- # @return [Fixnum] the ID of the player OS release channel the branch
1243
+ # @return [Integer] the ID of the player OS release channel the branch
1244
1244
  # is for
1245
1245
  attribute :release_channel_id
1246
1246
 
@@ -1273,7 +1273,7 @@ module LWS::DigitalSignage
1273
1273
  uri "player/os/branches/:branch_id/releases(/:id)"
1274
1274
 
1275
1275
  # @!attribute id [r]
1276
- # @return [Fixnum] the (unique) ID of the player OS branch release
1276
+ # @return [Integer] the (unique) ID of the player OS branch release
1277
1277
  attribute :id
1278
1278
 
1279
1279
  # @!attribute branch
@@ -1282,7 +1282,7 @@ module LWS::DigitalSignage
1282
1282
  uri: "player/os/branches/:id"
1283
1283
 
1284
1284
  # @!attribute branch_id
1285
- # @return [Fixnum] the ID of the player OS branch the release is for
1285
+ # @return [Integer] the ID of the player OS branch the release is for
1286
1286
  attribute :branch_id
1287
1287
 
1288
1288
  # @!attribute commit_date
@@ -1319,7 +1319,7 @@ module LWS::DigitalSignage
1319
1319
  uri: "player/os/branches/:branch_id/releases/:id"
1320
1320
 
1321
1321
  # @!attribute parent_id
1322
- # @return [Fixnum, nil] the ID of the parent of the player OS branch release
1322
+ # @return [Integer, nil] the ID of the parent of the player OS branch release
1323
1323
  attribute :parent_id
1324
1324
 
1325
1325
  # @!attribute promoted_release
@@ -1330,7 +1330,7 @@ module LWS::DigitalSignage
1330
1330
  uri: "player/os/branches/:branch_id/releases/:id"
1331
1331
 
1332
1332
  # @!attribute promoted_release_id
1333
- # @return [Fixnum, nil] the ID of the player OS branch release that the
1333
+ # @return [Integer, nil] the ID of the player OS branch release that the
1334
1334
  # release is a promotion of
1335
1335
  attribute :promoted_release_id
1336
1336
 
@@ -1358,7 +1358,7 @@ module LWS::DigitalSignage
1358
1358
  uri "player/os/packages(/:id)"
1359
1359
 
1360
1360
  # @!attribute id [r]
1361
- # @return [Fixnum] the (unique) ID of the player OS package
1361
+ # @return [Integer] the (unique) ID of the player OS package
1362
1362
  attribute :id
1363
1363
 
1364
1364
  # @!attribute name
@@ -1396,7 +1396,7 @@ module LWS::DigitalSignage
1396
1396
  uri "player/os/packages/:package_id/versions(/:id)"
1397
1397
 
1398
1398
  # @!attribute id [r]
1399
- # @return [Fixnum] the (unique) ID of the player OS package version
1399
+ # @return [Integer] the (unique) ID of the player OS package version
1400
1400
  attribute :id
1401
1401
 
1402
1402
  # @!attribute number
@@ -1409,7 +1409,7 @@ module LWS::DigitalSignage
1409
1409
  uri: "player/os/packages/:id"
1410
1410
 
1411
1411
  # @!attribute package_id
1412
- # @return [Fixnum] the ID the player OS package the version is of
1412
+ # @return [Integer] the ID the player OS package the version is of
1413
1413
  attribute :package_id
1414
1414
 
1415
1415
  # @!attribute branch_releases
@@ -1439,7 +1439,7 @@ module LWS::DigitalSignage
1439
1439
  uri "player/os/packages/:package_id/version_changes(/:id)"
1440
1440
 
1441
1441
  # @!attribute id [r]
1442
- # @return [Fixnum] the (unique) ID of the player OS package version change
1442
+ # @return [Integer] the (unique) ID of the player OS package version change
1443
1443
  attribute :id
1444
1444
 
1445
1445
  # @!attribute branch_release
@@ -1451,7 +1451,7 @@ module LWS::DigitalSignage
1451
1451
  uri: "player/os/branches/:branch_id/releases/:id"
1452
1452
 
1453
1453
  # @!attribute branch_release_id
1454
- # @return [Fixnum] the ID of the branch release the player OS package
1454
+ # @return [Integer] the ID of the branch release the player OS package
1455
1455
  # version change is included in
1456
1456
  attribute :branch_release_id
1457
1457
 
@@ -1470,7 +1470,7 @@ module LWS::DigitalSignage
1470
1470
  uri: "player/os/packages/:package_id/versions/:id"
1471
1471
 
1472
1472
  # @!attribute from_version_id
1473
- # @return [Fixnum, nil] the ID of the number the player OS package
1473
+ # @return [Integer, nil] the ID of the number the player OS package
1474
1474
  # version was before the change
1475
1475
  attribute :from_version_id
1476
1476
 
@@ -1485,7 +1485,7 @@ module LWS::DigitalSignage
1485
1485
  uri: "player/os/packages/:id"
1486
1486
 
1487
1487
  # @!attribute package_id
1488
- # @return [Fixnum] the ID the player OS package the version change is of
1488
+ # @return [Integer] the ID the player OS package the version change is of
1489
1489
  attribute :package_id
1490
1490
 
1491
1491
  # @!attribute state
@@ -1508,7 +1508,7 @@ module LWS::DigitalSignage
1508
1508
  uri: "player/os/packages/:package_id/versions/:id"
1509
1509
 
1510
1510
  # @!attribute to_version_id
1511
- # @return [Fixnum, nil] the ID of the version the player OS package was
1511
+ # @return [Integer, nil] the ID of the version the player OS package was
1512
1512
  # after the change
1513
1513
  attribute :to_version_id
1514
1514
 
@@ -1527,7 +1527,7 @@ module LWS::DigitalSignage
1527
1527
  uri "player/os/release_channels(/:id)"
1528
1528
 
1529
1529
  # @!attribute id [r]
1530
- # @return [Fixnum] the (unique) ID of the player OS release channel
1530
+ # @return [Integer] the (unique) ID of the player OS release channel
1531
1531
  attribute :id
1532
1532
 
1533
1533
  # @!attribute branches
@@ -1564,7 +1564,7 @@ module LWS::DigitalSignage
1564
1564
  uri "player/predefined_configurations(/:id)"
1565
1565
 
1566
1566
  # @!attribute id [r]
1567
- # @return [Fixnum] the (unique) ID of the predefined player configuration
1567
+ # @return [Integer] the (unique) ID of the predefined player configuration
1568
1568
  attribute :id
1569
1569
 
1570
1570
  # @!attribute company
@@ -1572,7 +1572,7 @@ module LWS::DigitalSignage
1572
1572
  belongs_to :company, class_name: "LWS::Auth::Company"
1573
1573
 
1574
1574
  # @!attribute company_id
1575
- # @return [Fixnum] the ID of the company the predefined player configuration belongs to
1575
+ # @return [Integer] the ID of the company the predefined player configuration belongs to
1576
1576
  attribute :compandy_id
1577
1577
 
1578
1578
  # @!attribute configurations
@@ -1614,7 +1614,7 @@ module LWS::DigitalSignage
1614
1614
  uri "player/predefined_configurations/:configuration_id/settings(/:id)"
1615
1615
 
1616
1616
  # @!attribute id [r]
1617
- # @return [Fixnum] the (unique) ID of the predefined player configuration setting
1617
+ # @return [Integer] the (unique) ID of the predefined player configuration setting
1618
1618
  attribute :id
1619
1619
 
1620
1620
  # @!attribute key
@@ -1628,7 +1628,7 @@ module LWS::DigitalSignage
1628
1628
  uri: "player/predefined_configurations/:id"
1629
1629
 
1630
1630
  # @!attribute predefined_configuration_id
1631
- # @return [Fixnum] the ID of the predefined player configuration the setting is defined in
1631
+ # @return [Integer] the ID of the predefined player configuration the setting is defined in
1632
1632
  attribute :predefined_configuration_id
1633
1633
 
1634
1634
  # @!attribute protected_value
@@ -1658,7 +1658,7 @@ module LWS::DigitalSignage
1658
1658
  uri "players/:player_id/requests(/:id)"
1659
1659
 
1660
1660
  # @!attribute id [r]
1661
- # @return [Fixnum] the (unique) ID of the player request
1661
+ # @return [Integer] the (unique) ID of the player request
1662
1662
  attribute :id
1663
1663
 
1664
1664
  # @!attribute action
@@ -1682,7 +1682,7 @@ module LWS::DigitalSignage
1682
1682
  uri: "players/:player_id/feedbacks/:id"
1683
1683
 
1684
1684
  # @!attribute feedback_id
1685
- # @return [Fixnum, nil] the ID of the player feedback as a response to the
1685
+ # @return [Integer, nil] the ID of the player feedback as a response to the
1686
1686
  # action request +"send_status"+
1687
1687
  attribute :feedback_id
1688
1688
 
@@ -1696,7 +1696,7 @@ module LWS::DigitalSignage
1696
1696
  uri: "players/:player_id/logs/:id"
1697
1697
 
1698
1698
  # @!attribute log_id
1699
- # @return [Fixnum, nil] the ID of the player log as a response to the action
1699
+ # @return [Integer, nil] the ID of the player log as a response to the action
1700
1700
  # request +"send_logs"+
1701
1701
  attribute :log_id
1702
1702
 
@@ -1705,7 +1705,7 @@ module LWS::DigitalSignage
1705
1705
  belongs_to :player, class_name: "LWS::DigitalSignage::Player"
1706
1706
 
1707
1707
  # @!attribute player_id
1708
- # @return [Fixnum] the ID of the player the request is sent to
1708
+ # @return [Integer] the ID of the player the request is sent to
1709
1709
  attribute :player_id
1710
1710
 
1711
1711
  # @!attribute processed
@@ -1727,7 +1727,7 @@ module LWS::DigitalSignage
1727
1727
  uri: "players/:player_id/screenshots/:id"
1728
1728
 
1729
1729
  # @!attribute screenshot_id
1730
- # @return [Fixnum, nil] the ID of the player screenshot as a response to
1730
+ # @return [Integer, nil] the ID of the player screenshot as a response to
1731
1731
  # the action request +"send_screenshot"+
1732
1732
  attribute :screenshot_id
1733
1733
 
@@ -1749,7 +1749,7 @@ module LWS::DigitalSignage
1749
1749
  uri "players/:player_id/screenshots(/:id)"
1750
1750
 
1751
1751
  # @!attribute id [r]
1752
- # @return [Fixnum] the (unique) ID of the player screenshot
1752
+ # @return [Integer] the (unique) ID of the player screenshot
1753
1753
  attribute :id
1754
1754
 
1755
1755
  # @!attribute player
@@ -1757,7 +1757,7 @@ module LWS::DigitalSignage
1757
1757
  belongs_to :player, class_name: "LWS::DigitalSignage::Player"
1758
1758
 
1759
1759
  # @!attribute player_id
1760
- # @return [Fixnum] the ID of the player the screenshot is made by
1760
+ # @return [Integer] the ID of the player the screenshot is made by
1761
1761
  attribute :player_id
1762
1762
 
1763
1763
  # @!attribute screenshot_object
@@ -1782,7 +1782,7 @@ module LWS::DigitalSignage
1782
1782
  uri "players/:player_id/tags(/:id)"
1783
1783
 
1784
1784
  # @!attribute id [r]
1785
- # @return [Fixnum] the (unique) ID of the player tag
1785
+ # @return [Integer] the (unique) ID of the player tag
1786
1786
  attribute :id
1787
1787
 
1788
1788
  # @!attribute key
@@ -1794,7 +1794,7 @@ module LWS::DigitalSignage
1794
1794
  belongs_to :player, class_name: "LWS::DigitalSignage::Player"
1795
1795
 
1796
1796
  # @!attribute player_id
1797
- # @return [Fixnum] the ID of the player associated with the tag
1797
+ # @return [Integer] the ID of the player associated with the tag
1798
1798
  attribute :player_id
1799
1799
 
1800
1800
  # @!attribute protected_value