UnlockCommandResponse

@Serializable
data class UnlockCommandResponse(val status: Int? = null, val operationId: String? = null, val data: UnlockInvokeResult? = null)(source)

Response for unlock command invocation with additional unlock-specific fields.

The unlock command returns additional information about the unlock state that is not present in standard command responses.

See also

for standard command responses.

Constructors

Link copied to clipboard
constructor(status: Int? = null, operationId: String? = null, data: UnlockInvokeResult? = null)

Properties

Link copied to clipboard
@SerialName(value = "data")
val data: UnlockInvokeResult?

The unlock command invocation result with additional fields.

Link copied to clipboard
@SerialName(value = "operationId")
val operationId: String?

Unique identifier for tracking this operation.

Link copied to clipboard
@SerialName(value = "status")
val status: Int?

HTTP status code from the operation.