StatusEnum
public enum StatusEnum : BoxEnum
A string with one of the following values: ‘none’, ‘pending’, ‘viewable’, ‘error’ and ‘success’.
-
Generating the representation needs to be manually triggered (see info.url note).
Declaration
Swift
case none
-
Content is being generated but is not ready yet.
Declaration
Swift
case pending
-
Similar to pending, though indicates that enough content is available to be useful.
Declaration
Swift
case viewable
-
All of the content is available and complete.
Declaration
Swift
case success
-
An error happened and this content is not available.
Declaration
Swift
case error
-
A custom value not implemented in this version of SDK.
Declaration
Swift
case customValue(String)
-
Declaration
Swift
public init(_ value: String)
-
Declaration
Swift
public var description: String { get }