RemoteFile

public struct RemoteFile

A data struct represents a remote file on Cisco Webex. The content of the remote file can be downloaded via MessageClient.downloadFile(...).

Since

1.4.0
  • A data type represents a thumbnail for this remote file. The thumbnail typically is an image file which provides preview of the remote file without downloading. The content of the thumbnail can be downloaded via MessageClient.downloadThumbnail(...).

    Since

    1.4.0
    See more

    Declaration

    Swift

    public struct Thumbnail
  • The display name of the remote file.

    Declaration

    Swift

    public var displayName: String? { get }
  • The MIME type of the remote file.

    Declaration

    Swift

    public var mimeType: String? { get }
  • The size in bytes of the remote file.

    Declaration

    Swift

    public var size: UInt64? { get }
  • The thumbnail of the remote file. Nil if no thumbnail availabe.

    Declaration

    Swift

    public var thumbnail: Thumbnail? { get }