Event
open class Event: NSObject
Represents an event on Put.io
-
The file or transfer name. This will be the main text that should be displayed.
Declaration
Swift
open var name: String?
-
The type of event
Declaration
Swift
open var type: EventType = .unknown
-
The ID of the file this event relates to
Declaration
Swift
open var fileId: Int?
-
The size of the file this event relates to
Declaration
Swift
open var fileSize: Int?
-
The size of the transfer this event relates to
Declaration
Swift
open var transferSize: Int?
-
The username of the person sharing the file this event relates to
Declaration
Swift
open var sharingUsername: String?
-
The date the event was created
Declaration
Swift
open var createdAt: Date?