All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.blazebit.query.connector.kandji.model.GetDeviceDetails200ResponseGeneral Maven / Gradle / Ivy

The newest version!
/*
 * Kandji API
 * # Welcome to the Kandji API Documentation  You can find your API URL in Settings > Access. The API URL will follow the below formats.  - US - `https://SubDomain.api.kandji.io` - EU - `https://SubDomain.api.eu.kandji.io`  For information on how to obtain an API token, please refer to the following support article.  [https://support.kandji.io/api](https://support.kandji.io/api)  #### Rate Limit  The Kandji API currently has an API rate limit of 10,000 requests per hour per customer.  #### Request Methods  HTTP request methods supported by the Kandji API.  | Method | Definition | | --- | --- | | GET | The `GET` method requests a representation of the specified resource. | | POST | The `POST` method submits an entity to the specified resource. | | PATCH | The `PATCH` method applies partial modifications to a resource. | | DELETE | The `DELETE` method deletes the specified resource. |  #### Response codes  Not all response codes apply to every endpoint.  | Code | Response | | --- | --- | | 200 | OK | | 201 | Created | | 204 | No content | |  | Typical response when sending the DELETE method. | | 400 | Bad Request | |  | \"Command already running\" - The command may already be running in a _Pending_ state waiting on the device. | |  | \"Command is not allowed for current device\" - The command may not be compatible with the target device. | |  | \"JSON parse error - Expecting ',' delimiter: line 3 column 2 (char 65)\" | | 401 | Unauthorized | |  | This error can occur if the token is incorrect, was revoked, or the token has expired. | | 403 | Forbidden | |  | The request was understood but cannot be authorized. | | 404 | Not found | |  | Unable to locate the resource in the Kandji tenant. | | 415 | Unsupported Media Type | |  | The request contains a media type which the server or resource does not support. | | 500 | Internal server error | | 503 | Service unavailable | |  | This error can occur if a file upload is still being processed via the custom apps API. |  #### Data structure  The API returns all structured responses in JSON schema format.  #### Examples  Code examples using the API can be found in the Kandji support [GitHub](https://github.com/kandji-inc/support/tree/main/api-tools).
 *
 * The version of the OpenAPI document: 1.0.0
 * 
 *
 * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
 * https://openapi-generator.tech
 * Do not edit the class manually.
 */


package com.blazebit.query.connector.kandji.model;

import java.util.Objects;
import java.util.Map;
import java.util.HashMap;
import com.blazebit.query.connector.kandji.model.GetDeviceDetails200ResponseGeneralAssignedUser;
import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonTypeName;
import com.fasterxml.jackson.annotation.JsonValue;
import java.time.OffsetDateTime;
import java.util.Arrays;
import java.util.UUID;
import com.fasterxml.jackson.annotation.JsonPropertyOrder;
import com.blazebit.query.connector.kandji.invoker.JSON;


/**
 * GetDeviceDetails200ResponseGeneral
 */
@JsonPropertyOrder({
  GetDeviceDetails200ResponseGeneral.JSON_PROPERTY_DEVICE_ID,
  GetDeviceDetails200ResponseGeneral.JSON_PROPERTY_DEVICE_NAME,
  GetDeviceDetails200ResponseGeneral.JSON_PROPERTY_LAST_ENROLLMENT,
  GetDeviceDetails200ResponseGeneral.JSON_PROPERTY_FIRST_ENROLLMENT,
  GetDeviceDetails200ResponseGeneral.JSON_PROPERTY_MODEL,
  GetDeviceDetails200ResponseGeneral.JSON_PROPERTY_PLATFORM,
  GetDeviceDetails200ResponseGeneral.JSON_PROPERTY_OS_VERSION,
  GetDeviceDetails200ResponseGeneral.JSON_PROPERTY_SUPPLEMENTAL_BUILD_VERSION,
  GetDeviceDetails200ResponseGeneral.JSON_PROPERTY_SUPPLEMENTAL_OS_VERSION_EXTRA,
  GetDeviceDetails200ResponseGeneral.JSON_PROPERTY_SYSTEM_VERSION,
  GetDeviceDetails200ResponseGeneral.JSON_PROPERTY_BOOT_VOLUME,
  GetDeviceDetails200ResponseGeneral.JSON_PROPERTY_TIME_SINCE_BOOT,
  GetDeviceDetails200ResponseGeneral.JSON_PROPERTY_LAST_USER,
  GetDeviceDetails200ResponseGeneral.JSON_PROPERTY_ASSET_TAG,
  GetDeviceDetails200ResponseGeneral.JSON_PROPERTY_ASSIGNED_USER,
  GetDeviceDetails200ResponseGeneral.JSON_PROPERTY_BLUEPRINT_NAME,
  GetDeviceDetails200ResponseGeneral.JSON_PROPERTY_BLUEPRINT_UUID
})
@JsonTypeName("getDeviceDetails_200_response_general")
@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-04-30T07:19:31.168100307Z[Etc/UTC]", comments = "Generator version: 7.10.0")
public class GetDeviceDetails200ResponseGeneral {
  public static final String JSON_PROPERTY_DEVICE_ID = "device_id";
  @jakarta.annotation.Nullable
  private UUID deviceId;

  public static final String JSON_PROPERTY_DEVICE_NAME = "device_name";
  @jakarta.annotation.Nullable
  private String deviceName;

  public static final String JSON_PROPERTY_LAST_ENROLLMENT = "last_enrollment";
  @jakarta.annotation.Nullable
  private OffsetDateTime lastEnrollment;

  public static final String JSON_PROPERTY_FIRST_ENROLLMENT = "first_enrollment";
  @jakarta.annotation.Nullable
  private OffsetDateTime firstEnrollment;

  public static final String JSON_PROPERTY_MODEL = "model";
  @jakarta.annotation.Nullable
  private String model;

  public static final String JSON_PROPERTY_PLATFORM = "platform";
  @jakarta.annotation.Nullable
  private String platform;

  public static final String JSON_PROPERTY_OS_VERSION = "os_version";
  @jakarta.annotation.Nullable
  private String osVersion;

  public static final String JSON_PROPERTY_SUPPLEMENTAL_BUILD_VERSION = "supplemental_build_version";
  @jakarta.annotation.Nullable
  private String supplementalBuildVersion;

  public static final String JSON_PROPERTY_SUPPLEMENTAL_OS_VERSION_EXTRA = "supplemental_os_version_extra";
  @jakarta.annotation.Nullable
  private String supplementalOsVersionExtra;

  public static final String JSON_PROPERTY_SYSTEM_VERSION = "system_version";
  @jakarta.annotation.Nullable
  private String systemVersion;

  public static final String JSON_PROPERTY_BOOT_VOLUME = "boot_volume";
  @jakarta.annotation.Nullable
  private String bootVolume;

  public static final String JSON_PROPERTY_TIME_SINCE_BOOT = "time_since_boot";
  @jakarta.annotation.Nullable
  private String timeSinceBoot;

  public static final String JSON_PROPERTY_LAST_USER = "last_user";
  @jakarta.annotation.Nullable
  private String lastUser;

  public static final String JSON_PROPERTY_ASSET_TAG = "asset_tag";
  @jakarta.annotation.Nullable
  private String assetTag;

  public static final String JSON_PROPERTY_ASSIGNED_USER = "assigned_user";
  @jakarta.annotation.Nullable
  private GetDeviceDetails200ResponseGeneralAssignedUser assignedUser;

  public static final String JSON_PROPERTY_BLUEPRINT_NAME = "blueprint_name";
  @jakarta.annotation.Nullable
  private String blueprintName;

  public static final String JSON_PROPERTY_BLUEPRINT_UUID = "blueprint_uuid";
  @jakarta.annotation.Nullable
  private UUID blueprintUuid;

  public GetDeviceDetails200ResponseGeneral() { 
  }

  public GetDeviceDetails200ResponseGeneral deviceId(@jakarta.annotation.Nullable UUID deviceId) {
    this.deviceId = deviceId;
    return this;
  }

  /**
   * Get deviceId
   * @return deviceId
   */
  @jakarta.annotation.Nullable
  @JsonProperty(JSON_PROPERTY_DEVICE_ID)
  @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)

  public UUID getDeviceId() {
    return deviceId;
  }


  @JsonProperty(JSON_PROPERTY_DEVICE_ID)
  @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
  public void setDeviceId(@jakarta.annotation.Nullable UUID deviceId) {
    this.deviceId = deviceId;
  }


  public GetDeviceDetails200ResponseGeneral deviceName(@jakarta.annotation.Nullable String deviceName) {
    this.deviceName = deviceName;
    return this;
  }

  /**
   * Get deviceName
   * @return deviceName
   */
  @jakarta.annotation.Nullable
  @JsonProperty(JSON_PROPERTY_DEVICE_NAME)
  @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)

  public String getDeviceName() {
    return deviceName;
  }


  @JsonProperty(JSON_PROPERTY_DEVICE_NAME)
  @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
  public void setDeviceName(@jakarta.annotation.Nullable String deviceName) {
    this.deviceName = deviceName;
  }


  public GetDeviceDetails200ResponseGeneral lastEnrollment(@jakarta.annotation.Nullable OffsetDateTime lastEnrollment) {
    this.lastEnrollment = lastEnrollment;
    return this;
  }

  /**
   * Get lastEnrollment
   * @return lastEnrollment
   */
  @jakarta.annotation.Nullable
  @JsonProperty(JSON_PROPERTY_LAST_ENROLLMENT)
  @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)

  public OffsetDateTime getLastEnrollment() {
    return lastEnrollment;
  }


  @JsonProperty(JSON_PROPERTY_LAST_ENROLLMENT)
  @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
  public void setLastEnrollment(@jakarta.annotation.Nullable OffsetDateTime lastEnrollment) {
    this.lastEnrollment = lastEnrollment;
  }


  public GetDeviceDetails200ResponseGeneral firstEnrollment(@jakarta.annotation.Nullable OffsetDateTime firstEnrollment) {
    this.firstEnrollment = firstEnrollment;
    return this;
  }

  /**
   * Get firstEnrollment
   * @return firstEnrollment
   */
  @jakarta.annotation.Nullable
  @JsonProperty(JSON_PROPERTY_FIRST_ENROLLMENT)
  @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)

  public OffsetDateTime getFirstEnrollment() {
    return firstEnrollment;
  }


  @JsonProperty(JSON_PROPERTY_FIRST_ENROLLMENT)
  @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
  public void setFirstEnrollment(@jakarta.annotation.Nullable OffsetDateTime firstEnrollment) {
    this.firstEnrollment = firstEnrollment;
  }


  public GetDeviceDetails200ResponseGeneral model(@jakarta.annotation.Nullable String model) {
    this.model = model;
    return this;
  }

  /**
   * Get model
   * @return model
   */
  @jakarta.annotation.Nullable
  @JsonProperty(JSON_PROPERTY_MODEL)
  @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)

  public String getModel() {
    return model;
  }


  @JsonProperty(JSON_PROPERTY_MODEL)
  @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
  public void setModel(@jakarta.annotation.Nullable String model) {
    this.model = model;
  }


  public GetDeviceDetails200ResponseGeneral platform(@jakarta.annotation.Nullable String platform) {
    this.platform = platform;
    return this;
  }

  /**
   * Get platform
   * @return platform
   */
  @jakarta.annotation.Nullable
  @JsonProperty(JSON_PROPERTY_PLATFORM)
  @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)

  public String getPlatform() {
    return platform;
  }


  @JsonProperty(JSON_PROPERTY_PLATFORM)
  @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
  public void setPlatform(@jakarta.annotation.Nullable String platform) {
    this.platform = platform;
  }


  public GetDeviceDetails200ResponseGeneral osVersion(@jakarta.annotation.Nullable String osVersion) {
    this.osVersion = osVersion;
    return this;
  }

  /**
   * Get osVersion
   * @return osVersion
   */
  @jakarta.annotation.Nullable
  @JsonProperty(JSON_PROPERTY_OS_VERSION)
  @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)

  public String getOsVersion() {
    return osVersion;
  }


  @JsonProperty(JSON_PROPERTY_OS_VERSION)
  @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
  public void setOsVersion(@jakarta.annotation.Nullable String osVersion) {
    this.osVersion = osVersion;
  }


  public GetDeviceDetails200ResponseGeneral supplementalBuildVersion(@jakarta.annotation.Nullable String supplementalBuildVersion) {
    this.supplementalBuildVersion = supplementalBuildVersion;
    return this;
  }

  /**
   * Get supplementalBuildVersion
   * @return supplementalBuildVersion
   */
  @jakarta.annotation.Nullable
  @JsonProperty(JSON_PROPERTY_SUPPLEMENTAL_BUILD_VERSION)
  @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)

  public String getSupplementalBuildVersion() {
    return supplementalBuildVersion;
  }


  @JsonProperty(JSON_PROPERTY_SUPPLEMENTAL_BUILD_VERSION)
  @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
  public void setSupplementalBuildVersion(@jakarta.annotation.Nullable String supplementalBuildVersion) {
    this.supplementalBuildVersion = supplementalBuildVersion;
  }


  public GetDeviceDetails200ResponseGeneral supplementalOsVersionExtra(@jakarta.annotation.Nullable String supplementalOsVersionExtra) {
    this.supplementalOsVersionExtra = supplementalOsVersionExtra;
    return this;
  }

  /**
   * Get supplementalOsVersionExtra
   * @return supplementalOsVersionExtra
   */
  @jakarta.annotation.Nullable
  @JsonProperty(JSON_PROPERTY_SUPPLEMENTAL_OS_VERSION_EXTRA)
  @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)

  public String getSupplementalOsVersionExtra() {
    return supplementalOsVersionExtra;
  }


  @JsonProperty(JSON_PROPERTY_SUPPLEMENTAL_OS_VERSION_EXTRA)
  @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
  public void setSupplementalOsVersionExtra(@jakarta.annotation.Nullable String supplementalOsVersionExtra) {
    this.supplementalOsVersionExtra = supplementalOsVersionExtra;
  }


  public GetDeviceDetails200ResponseGeneral systemVersion(@jakarta.annotation.Nullable String systemVersion) {
    this.systemVersion = systemVersion;
    return this;
  }

  /**
   * Get systemVersion
   * @return systemVersion
   */
  @jakarta.annotation.Nullable
  @JsonProperty(JSON_PROPERTY_SYSTEM_VERSION)
  @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)

  public String getSystemVersion() {
    return systemVersion;
  }


  @JsonProperty(JSON_PROPERTY_SYSTEM_VERSION)
  @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
  public void setSystemVersion(@jakarta.annotation.Nullable String systemVersion) {
    this.systemVersion = systemVersion;
  }


  public GetDeviceDetails200ResponseGeneral bootVolume(@jakarta.annotation.Nullable String bootVolume) {
    this.bootVolume = bootVolume;
    return this;
  }

  /**
   * Get bootVolume
   * @return bootVolume
   */
  @jakarta.annotation.Nullable
  @JsonProperty(JSON_PROPERTY_BOOT_VOLUME)
  @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)

  public String getBootVolume() {
    return bootVolume;
  }


  @JsonProperty(JSON_PROPERTY_BOOT_VOLUME)
  @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
  public void setBootVolume(@jakarta.annotation.Nullable String bootVolume) {
    this.bootVolume = bootVolume;
  }


  public GetDeviceDetails200ResponseGeneral timeSinceBoot(@jakarta.annotation.Nullable String timeSinceBoot) {
    this.timeSinceBoot = timeSinceBoot;
    return this;
  }

  /**
   * Get timeSinceBoot
   * @return timeSinceBoot
   */
  @jakarta.annotation.Nullable
  @JsonProperty(JSON_PROPERTY_TIME_SINCE_BOOT)
  @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)

  public String getTimeSinceBoot() {
    return timeSinceBoot;
  }


  @JsonProperty(JSON_PROPERTY_TIME_SINCE_BOOT)
  @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
  public void setTimeSinceBoot(@jakarta.annotation.Nullable String timeSinceBoot) {
    this.timeSinceBoot = timeSinceBoot;
  }


  public GetDeviceDetails200ResponseGeneral lastUser(@jakarta.annotation.Nullable String lastUser) {
    this.lastUser = lastUser;
    return this;
  }

  /**
   * Get lastUser
   * @return lastUser
   */
  @jakarta.annotation.Nullable
  @JsonProperty(JSON_PROPERTY_LAST_USER)
  @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)

  public String getLastUser() {
    return lastUser;
  }


  @JsonProperty(JSON_PROPERTY_LAST_USER)
  @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
  public void setLastUser(@jakarta.annotation.Nullable String lastUser) {
    this.lastUser = lastUser;
  }


  public GetDeviceDetails200ResponseGeneral assetTag(@jakarta.annotation.Nullable String assetTag) {
    this.assetTag = assetTag;
    return this;
  }

  /**
   * Get assetTag
   * @return assetTag
   */
  @jakarta.annotation.Nullable
  @JsonProperty(JSON_PROPERTY_ASSET_TAG)
  @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)

  public String getAssetTag() {
    return assetTag;
  }


  @JsonProperty(JSON_PROPERTY_ASSET_TAG)
  @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
  public void setAssetTag(@jakarta.annotation.Nullable String assetTag) {
    this.assetTag = assetTag;
  }


  public GetDeviceDetails200ResponseGeneral assignedUser(@jakarta.annotation.Nullable GetDeviceDetails200ResponseGeneralAssignedUser assignedUser) {
    this.assignedUser = assignedUser;
    return this;
  }

  /**
   * Get assignedUser
   * @return assignedUser
   */
  @jakarta.annotation.Nullable
  @JsonProperty(JSON_PROPERTY_ASSIGNED_USER)
  @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)

  public GetDeviceDetails200ResponseGeneralAssignedUser getAssignedUser() {
    return assignedUser;
  }


  @JsonProperty(JSON_PROPERTY_ASSIGNED_USER)
  @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
  public void setAssignedUser(@jakarta.annotation.Nullable GetDeviceDetails200ResponseGeneralAssignedUser assignedUser) {
    this.assignedUser = assignedUser;
  }


  public GetDeviceDetails200ResponseGeneral blueprintName(@jakarta.annotation.Nullable String blueprintName) {
    this.blueprintName = blueprintName;
    return this;
  }

  /**
   * Get blueprintName
   * @return blueprintName
   */
  @jakarta.annotation.Nullable
  @JsonProperty(JSON_PROPERTY_BLUEPRINT_NAME)
  @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)

  public String getBlueprintName() {
    return blueprintName;
  }


  @JsonProperty(JSON_PROPERTY_BLUEPRINT_NAME)
  @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
  public void setBlueprintName(@jakarta.annotation.Nullable String blueprintName) {
    this.blueprintName = blueprintName;
  }


  public GetDeviceDetails200ResponseGeneral blueprintUuid(@jakarta.annotation.Nullable UUID blueprintUuid) {
    this.blueprintUuid = blueprintUuid;
    return this;
  }

  /**
   * Get blueprintUuid
   * @return blueprintUuid
   */
  @jakarta.annotation.Nullable
  @JsonProperty(JSON_PROPERTY_BLUEPRINT_UUID)
  @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)

  public UUID getBlueprintUuid() {
    return blueprintUuid;
  }


  @JsonProperty(JSON_PROPERTY_BLUEPRINT_UUID)
  @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
  public void setBlueprintUuid(@jakarta.annotation.Nullable UUID blueprintUuid) {
    this.blueprintUuid = blueprintUuid;
  }


  /**
   * Return true if this getDeviceDetails_200_response_general object is equal to o.
   */
  @Override
  public boolean equals(Object o) {
    if (this == o) {
      return true;
    }
    if (o == null || getClass() != o.getClass()) {
      return false;
    }
    GetDeviceDetails200ResponseGeneral getDeviceDetails200ResponseGeneral = (GetDeviceDetails200ResponseGeneral) o;
    return Objects.equals(this.deviceId, getDeviceDetails200ResponseGeneral.deviceId) &&
        Objects.equals(this.deviceName, getDeviceDetails200ResponseGeneral.deviceName) &&
        Objects.equals(this.lastEnrollment, getDeviceDetails200ResponseGeneral.lastEnrollment) &&
        Objects.equals(this.firstEnrollment, getDeviceDetails200ResponseGeneral.firstEnrollment) &&
        Objects.equals(this.model, getDeviceDetails200ResponseGeneral.model) &&
        Objects.equals(this.platform, getDeviceDetails200ResponseGeneral.platform) &&
        Objects.equals(this.osVersion, getDeviceDetails200ResponseGeneral.osVersion) &&
        Objects.equals(this.supplementalBuildVersion, getDeviceDetails200ResponseGeneral.supplementalBuildVersion) &&
        Objects.equals(this.supplementalOsVersionExtra, getDeviceDetails200ResponseGeneral.supplementalOsVersionExtra) &&
        Objects.equals(this.systemVersion, getDeviceDetails200ResponseGeneral.systemVersion) &&
        Objects.equals(this.bootVolume, getDeviceDetails200ResponseGeneral.bootVolume) &&
        Objects.equals(this.timeSinceBoot, getDeviceDetails200ResponseGeneral.timeSinceBoot) &&
        Objects.equals(this.lastUser, getDeviceDetails200ResponseGeneral.lastUser) &&
        Objects.equals(this.assetTag, getDeviceDetails200ResponseGeneral.assetTag) &&
        Objects.equals(this.assignedUser, getDeviceDetails200ResponseGeneral.assignedUser) &&
        Objects.equals(this.blueprintName, getDeviceDetails200ResponseGeneral.blueprintName) &&
        Objects.equals(this.blueprintUuid, getDeviceDetails200ResponseGeneral.blueprintUuid);
  }

  @Override
  public int hashCode() {
    return Objects.hash(deviceId, deviceName, lastEnrollment, firstEnrollment, model, platform, osVersion, supplementalBuildVersion, supplementalOsVersionExtra, systemVersion, bootVolume, timeSinceBoot, lastUser, assetTag, assignedUser, blueprintName, blueprintUuid);
  }

  @Override
  public String toString() {
    StringBuilder sb = new StringBuilder();
    sb.append("class GetDeviceDetails200ResponseGeneral {\n");
    sb.append("    deviceId: ").append(toIndentedString(deviceId)).append("\n");
    sb.append("    deviceName: ").append(toIndentedString(deviceName)).append("\n");
    sb.append("    lastEnrollment: ").append(toIndentedString(lastEnrollment)).append("\n");
    sb.append("    firstEnrollment: ").append(toIndentedString(firstEnrollment)).append("\n");
    sb.append("    model: ").append(toIndentedString(model)).append("\n");
    sb.append("    platform: ").append(toIndentedString(platform)).append("\n");
    sb.append("    osVersion: ").append(toIndentedString(osVersion)).append("\n");
    sb.append("    supplementalBuildVersion: ").append(toIndentedString(supplementalBuildVersion)).append("\n");
    sb.append("    supplementalOsVersionExtra: ").append(toIndentedString(supplementalOsVersionExtra)).append("\n");
    sb.append("    systemVersion: ").append(toIndentedString(systemVersion)).append("\n");
    sb.append("    bootVolume: ").append(toIndentedString(bootVolume)).append("\n");
    sb.append("    timeSinceBoot: ").append(toIndentedString(timeSinceBoot)).append("\n");
    sb.append("    lastUser: ").append(toIndentedString(lastUser)).append("\n");
    sb.append("    assetTag: ").append(toIndentedString(assetTag)).append("\n");
    sb.append("    assignedUser: ").append(toIndentedString(assignedUser)).append("\n");
    sb.append("    blueprintName: ").append(toIndentedString(blueprintName)).append("\n");
    sb.append("    blueprintUuid: ").append(toIndentedString(blueprintUuid)).append("\n");
    sb.append("}");
    return sb.toString();
  }

  /**
   * Convert the given object to string with each line indented by 4 spaces
   * (except the first line).
   */
  private String toIndentedString(Object o) {
    if (o == null) {
      return "null";
    }
    return o.toString().replace("\n", "\n    ");
  }

}





© 2015 - 2025 Weber Informatics LLC | Privacy Policy