FilesystemChange

@Serializable
data class FilesystemChange(val path: String, val kind: ChangeType)

Change in the container's filesystem.

Parameters

path

Path to file or directory that has changed.

kind

Constructors

Link copied to clipboard
constructor(path: String, kind: ChangeType)

Properties

Link copied to clipboard
@SerialName(value = "Kind")
@Required
val kind: ChangeType
Link copied to clipboard
@SerialName(value = "Path")
@Required
val path: String