Skip to content

Latest commit

 

History

History
28 lines (22 loc) · 876 Bytes

File metadata and controls

28 lines (22 loc) · 876 Bytes

WhatpulseSdk::ComputerResourceHardwareAnyOfSystem

Properties

Name Type Description Notes
model String The model of the computer.
platform String The platform of the computer. I.e., x86, x64, ARM, etc.
os String The operating system of the computer. Long version name, e.g., "Windows 10 Pro", "macOS Monterey".
cpu String The CPU information of the computer.
memory_mb Integer The amount of memory in megabytes.
video String The video processor information of the computer.

Example

require 'whatpulse-sdk'

instance = WhatpulseSdk::ComputerResourceHardwareAnyOfSystem.new(
  model: null,
  platform: null,
  os: null,
  cpu: null,
  memory_mb: null,
  video: null
)