Skip to content

Latest commit

 

History

History
26 lines (15 loc) · 1012 Bytes

File metadata and controls

26 lines (15 loc) · 1012 Bytes

SolutionImportResult

org.thingsboard.client.model.SolutionImportResult

Result of a solution import operation.

Properties

Name Type Description Notes
success Boolean 'true' if all entities were imported successfully. [optional]
created Map<String, Integer> Number of newly created entities per entity type. Entity types with zero created entities are omitted. [optional]
idMapping Map<String, UUID> Mapping from external entity IDs (as they appear in the solution file) to the internal entity IDs assigned during import. [optional]

Conventions

  • Package: org.thingsboard.client.model
  • Getter pattern: get<PropertyName>() — e.g., getId(), getName()
  • Setter pattern: set<PropertyName>(value) — e.g., setId(value), setName(value)
  • Null fields: Getters return null for unset optional fields; they do not throw exceptions