MutateSuccess

data class MutateSuccess<T>(val data: T, val dataUpdatedAt: Long) : MutationAction<T>

Indicates that the mutation is successful.

Parameters

data

The data to be updated.

dataUpdatedAt

The timestamp when the data was updated.

Constructors

Link copied to clipboard
constructor(data: T, dataUpdatedAt: Long)

Properties

Link copied to clipboard
val data: T
Link copied to clipboard