Skip to content

PtouchDeviceDependedDataHeader

A data class representing the header information for device-dependent data.

Overview

You use this object to store and retrieve metadata related to device-dependent data such as templates, databases, and firmware.

Properties

Name Type Description
dataKind DataKind See DataKind.
version String The version of the data.
name String The name of the data.
modifiedDate Date The date when the data was last modified.
dataSize Int The size of the data in bytes.
destinationCode String The destination code for the data.

Enums

DataKind(Enums)

An enum representing the possible types of data.

Declaration

enum class DataKind(val id: Int) {
    Template(0),
    Database(1),
    Media(2),
    Font(3),
    MainFirm(4),
    BootFirm(5),
    BluetoothFirm(6),
    AnyFirm(7),
    UserData(8),
    Other(9);
}