GetDocumentListResponseDto

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

Structure of the response on the document list endpoint

Parameters

documents
  • @param 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

GetDocumentListResponseDto
Link copied to clipboard
fun GetDocumentListResponseDto(documents: List<DocumentListItemDto>, count: Int)
  • @param 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.

Properties

count
Link copied to clipboard
@SerializedName(value = count)
val count: Int
documents
Link copied to clipboard
@SerializedName(value = documents)
val documents: List<DocumentListItemDto>
  • @param 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.