PlatformType
public enum PlatformType : CustomStringConvertible, JSONRepresentable
Possible platforms on which a user may view content.
-
The content was viewed on the web.
Declaration
Swift
case web -
The content was viewed on a desktop client.
Declaration
Swift
case desktop -
The content was viewed on a mobile iOS client.
Declaration
Swift
case mobileIos -
The content was viewed on a mobile android client.
Declaration
Swift
case mobileAndroid -
The content was viewed from an API client.
Declaration
Swift
case api -
The content was viewed on an unknown platform.
Declaration
Swift
case unknown -
The content was viewed on a mobile client. DEPRECATED: Use mobile_ios or mobile_android instead.
Declaration
Swift
case mobile -
An unspecified error.
Declaration
Swift
case other -
Declaration
Swift
public var description: String { get }
View on GitHub
PlatformType Enumeration Reference