StatusEnum

public enum StatusEnum : BoxEnum, Codable

A string with one of the following values: ‘none’, ‘pending’, ‘viewable’, ‘error’ and ‘success’. none - generating the representation needs to be manually triggered (see info.url note). pending - content is being generated but is not ready yet. viewable - like pending, though indicates that enough content is available to be useful. error - an error happened and this content is not available. success - all of the content is available and complete.

  • Undocumented

    Declaration

    Swift

    case none
  • Undocumented

    Declaration

    Swift

    case pending
  • Undocumented

    Declaration

    Swift

    case viewable
  • Undocumented

    Declaration

    Swift

    case success
  • Undocumented

    Declaration

    Swift

    case error
  • Undocumented

    Declaration

    Swift

    case customValue(String)
  • Declaration

    Swift

    public init(_ value: String)
  • Declaration

    Swift

    public var description: String { get }
  • Declaration

    Swift

    public init(from decoder: Decoder) throws