DispositionAction

public enum DispositionAction : BoxEnum

The disposition action of the retention policy specifying what will happen once the retention policy time period has passed.

  • Content retained by the policy to be permanently deleted once the retention policy time period has passed.

    Declaration

    Swift

    case permanentlyDelete
  • Will lift the retention policy from the content, allowing it to be deleted by users, once the retention policy time period has passed.

    Declaration

    Swift

    case removeRetention
  • Custom value not yet implemented in the SDK.

    Declaration

    Swift

    case customValue(String)
  • Declaration

    Swift

    public init(_ value: String)
  • Declaration

    Swift

    public var description: String { get }