ListDocumentsResponseDto

Properties

NameType
entriesArray<ListDocumentsResponseDtoEntriesInner>
hasMoreboolean
startOffsetstring

Example

import type { ListDocumentsResponseDto } from '@pdf-generator/client'

// TODO: Update the object below with actual values
const example = {
  "entries": [{"id":1,"name":"invoice-001.pdf","size":10240,"lastModified":"2026-06-05T00:00:00Z","template":{"id":1,"name":"Invoice Template"}}],
  "hasMore": null,
  "startOffset": 100,
} satisfies ListDocumentsResponseDto

console.log(example)

// Convert the instance to a JSON string
const exampleJSON: string = JSON.stringify(example)
console.log(exampleJSON)

// Parse the JSON string back to an object
const exampleParsed = JSON.parse(exampleJSON) as ListDocumentsResponseDto
console.log(exampleParsed)

[Back to top] [Back to API list] [Back to Model list] [Back to README]