StorageTaskOperationResponse

data class StorageTaskOperationResponse(val name: String, val onFailure: String? = null, val onSuccess: String? = null, val parameters: Map<String, String>? = null)

Represents an operation to be performed on the object

Constructors

Link copied to clipboard
constructor(name: String, onFailure: String? = null, onSuccess: String? = null, parameters: Map<String, String>? = null)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard

The operation to be performed on the object.

Link copied to clipboard
val onFailure: String? = null

Action to be taken when the operation fails for a object.

Link copied to clipboard
val onSuccess: String? = null

Action to be taken when the operation is successful for a object.

Link copied to clipboard
val parameters: Map<String, String>? = null

Key-value parameters for the operation.