Skip to content

Overview

//trimblecloud-fileservice/trimblecloud.fileservice.models/Status

Status

[JVM]
enum Status

The status query parameter is used to filter the resources based on their status. Possible values are ‘ACTIVE’, ‘DELETED’, or ‘ACTIVE_DELETED’. If ‘ACTIVE’ is specified, only active resources will be returned. If ‘DELETED’ is specified, only deleted resources will be returned. If ACTIVE_DELETED is specified (as ‘active,deleted’), the API will return both active and deleted files.

Entries

ACTIVE[JVM]
ACTIVE
DELETED[JVM]
DELETED
ACTIVE_DELETED[JVM]
ACTIVE_DELETED

Properties

NameSummary
value[JVM]
val value: String

Functions

NameSummary
fromString[JVM]
open fun fromString(status: String): Status
valueOf[JVM]
open fun valueOf(name: String): Status
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<Status>
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.