Skip to content

Overview

//trimblecloud-fileservice/trimblecloud.fileservice.models/SoftDeleteRetentionPeriod

SoftDeleteRetentionPeriod

[JVM]
enum SoftDeleteRetentionPeriod

Represents the retention period for soft deleted resources in a filespace.\ Supported values are: - 30d: 30 days - 180d: 6 months - 1y: 1 year - never-delete: never delete

Entries

THIRTY_DAYS[JVM]
THIRTY_DAYS
SIX_MONTHS[JVM]
SIX_MONTHS
ONE_YEAR[JVM]
ONE_YEAR
NEVER_DELETE[JVM]
NEVER_DELETE
UNKNOWN[JVM]
UNKNOWN

Properties

NameSummary
value[JVM]
val value: String

Functions

NameSummary
fromValue[JVM]
open fun fromValue(value: String): SoftDeleteRetentionPeriod
isKnown[JVM]
open fun isKnown(): Boolean
Checks if this retention period is a recognized/known retention period.
valueOf[JVM]
open fun valueOf(name: String): SoftDeleteRetentionPeriod
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)
values[JVM]
open fun values(): Array<SoftDeleteRetentionPeriod>
Returns an array containing the constants of this enum type, in the order they’re declared. This method may be used to iterate over the constants.