PartialUFile
¶
A partial UFile returned by providers and made complete by UCloud/Core
data class PartialUFile(
val id: String,
val status: UFileStatus,
val createdAt: Long,
val owner: ResourceOwner?,
val permissions: ResourcePermissions?,
val legacySensitivity: String?,
)
Properties
id
: String
The id of the file. Corresponds to UFile.id
String
status
: UFileStatus
The status of the file. Corresponds to UFile.status
UFileStatus
createdAt
: Long
The creation timestamp. Corresponds to UFile.createdAt
Long
owner
: ResourceOwner?
The owner of the file. Corresponds to UFile.owner. This will default to the collection's owner.
ResourceOwner?
permissions
: ResourcePermissions?
The permissions of the file. Corresponds to UFile.permissions.This will default to the collection's permissions.
ResourcePermissions?
legacySensitivity
: String?
Legacy for reading old sensitivity values stored on in extended attributes
String?