GetDocumentListResponseDto

data class GetDocumentListResponseDto(val documents: List<DocumentListItemDto>, val count: Int)

Structure of the response on the document list endpoint

Parameters

documents
count

This field counts the total number of documents for the user existing in the system.
If filter conditions are informed, this would only count the records matching those.

Constructors

Link copied to clipboard
constructor(documents: List<DocumentListItemDto>, count: Int)

Properties

Link copied to clipboard
@SerializedName(value = "count")
val count: Int
Link copied to clipboard
@SerializedName(value = "documents")
val documents: List<DocumentListItemDto>