ItemStatus

public enum ItemStatus : BoxEnum

Box item status indicating whether this item is deleted or not.

  • Item was not deleted or moved to trash.

    Declaration

    Swift

    case active
  • Item has been moved to the trash

    Declaration

    Swift

    case trashed
  • Item has been permanently deleted

    Declaration

    Swift

    case deleted
  • Custom value for enum values not yet implemented in the SDK

    Declaration

    Swift

    case customValue(String)
  • Declaration

    Swift

    public init(_ value: String)
  • Declaration

    Swift

    public var description: String { get }