Skip to content

Latest commit

 

History

History
39 lines (26 loc) · 1.51 KB

File metadata and controls

39 lines (26 loc) · 1.51 KB

BlobEntityInfo

org.thingsboard.client.model.BlobEntityInfo

Properties

Name Type Description Notes
id BlobEntityId JSON object with the blob entity Id. Referencing non-existing blob entity Id will cause error [optional]
createdTime Long Timestamp of the blob entity creation, in milliseconds [optional] [readonly]
additionalInfo com.fasterxml.jackson.databind.JsonNode Additional parameters of the blob entity [optional]
tenantId TenantId JSON object with Tenant Id [optional] [readonly]
customerId CustomerId JSON object with Customer Id [optional] [readonly]
name String blob entity name [optional] [readonly]
type String blob entity type [optional] [readonly]
contentType ContentTypeEnum blob content type [optional] [readonly]
ownerId EntityId JSON object with Customer or Tenant Id [optional] [readonly]

Enum: ContentTypeEnum

Name Value
APPLICATION_PDF "application/pdf"
IMAGE_JPEG "image/jpeg"
IMAGE_PNG "image/png"

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