DocumentDeleteResponseDto

data class DocumentDeleteResponseDto(val ids: List<String>, val errors: List<DocumentsDeleteErrorItemDto>? = null)

The list of document Ids which were deleted from the system

Parameters

ids
errors

Optional property used to indicate and describe errors encountered while handling the request

Constructors

Link copied to clipboard
constructor(ids: List<String>, errors: List<DocumentsDeleteErrorItemDto>? = null)

Properties

Link copied to clipboard
@SerializedName(value = "errors")
val errors: List<DocumentsDeleteErrorItemDto>? = null
Link copied to clipboard
@SerializedName(value = "ids")
val ids: List<String>