Packdata

@Serializable
data class Packdata(val filePath: String, val eTag: String, val version: String, val fileName: String)

A struct representing the metadata of a packdata file, which is used for offline map data management.

It includes the file path, eTag for caching, version information, and the file name.

Constructors

Link copied to clipboard
constructor(filePath: String, eTag: String, version: String, fileName: String)

Properties

Link copied to clipboard

The eTag is a unique identifier for the version of the file, used for caching and validation purposes.

Link copied to clipboard

The name of the packdata file.

Link copied to clipboard

The path of the packdata file, which can be used to access the file locally after downloading.

Link copied to clipboard

The version of the packdata file.