Skip to content

Latest commit

 

History

History
34 lines (28 loc) · 1.14 KB

File metadata and controls

34 lines (28 loc) · 1.14 KB

WhatpulseSdk::ComputerResource

Properties

Name Type Description Notes
id Integer The unique identifier for the computer.
name String How the computer is named on the user's account.
client_version String The version of the WhatPulse client running on this computer.
os String The operating system of the computer, represented as code.
is_archived Boolean Whether or not this computer is archived.
totals ComputerResourceTotals
pulses Integer The total number of pulses recorded for this computer.
last_pulse_date String The date and time of the last pulse recorded for this computer.
hardware ComputerResourceHardware

Example

require 'whatpulse-sdk'

instance = WhatpulseSdk::ComputerResource.new(
  id: null,
  name: null,
  client_version: null,
  os: null,
  is_archived: null,
  totals: null,
  pulses: null,
  last_pulse_date: null,
  hardware: null
)