UssFile

data class UssFile(    val name: String = "",     val mode: String? = null,     val size: Long? = null,     val uid: Long? = null,     val user: String? = null,     val gid: Long? = null,     val groupId: String? = null,     val modificationTime: String? = null,     val target: String? = null)

Constructors

Link copied to clipboard
fun UssFile(    name: String = "",     mode: String? = null,     size: Long? = null,     uid: Long? = null,     user: String? = null,     gid: Long? = null,     groupId: String? = null,     modificationTime: String? = null,     target: String? = null)

Properties

Link copied to clipboard
Link copied to clipboard
@SerializedName(value = "gid")
@Expose
val gid: Long? = null
Link copied to clipboard
@SerializedName(value = "group")
@Expose
val groupId: String? = null
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
@SerializedName(value = "mode")
@Expose
val mode: String? = null
Link copied to clipboard
@SerializedName(value = "mtime")
@Expose
val modificationTime: String? = null
Link copied to clipboard
@SerializedName(value = "name")
@Expose
val name: String
Link copied to clipboard
@SerializedName(value = "size")
@Expose
val size: Long? = null
Link copied to clipboard
@SerializedName(value = "target")
@Expose
val target: String? = null
Link copied to clipboard
@SerializedName(value = "uid")
@Expose
val uid: Long? = null
Link copied to clipboard
@SerializedName(value = "user")
@Expose
val user: String? = null