RetentionPolicyType
public enum RetentionPolicyType : BoxEnum
The type of the retention policy.
-
A specific amount of time to retain the content is known upfront.
Declaration
Swift
case finite
-
The amount of time to retain the content is still unknown.
Declaration
Swift
case indefinite
-
Custom value not yet implemented in this SDK version.
Declaration
Swift
case customValue(String)
-
Creates a new value
Declaration
Swift
public init(_ value: String)
Parameters
value
String representation of a RetentionPolicyType rawValue
-
Returns string representation of RetentionPolicyType
Declaration
Swift
public var description: String { get }