DocumentSourceDto

data class DocumentSourceDto(format: DocumentSourceFormatsEnum, url: String, imagePreview: String)

Parameters

format
  • @param url The url to get or view the original document file (i.e.: image, pdf, pdf_email, etc)

imagePreview

The url of an image file to preview this document. In case of image documents, this content will be the same of the url field.

Constructors

DocumentSourceDto
Link copied to clipboard
fun DocumentSourceDto(format: DocumentSourceFormatsEnum, url: String, imagePreview: String)
  • @param url The url to get or view the original document file (i.e.: image, pdf, pdf_email, etc)

Properties

format
Link copied to clipboard
@SerializedName(value = format)
val format: DocumentSourceFormatsEnum
  • @param url The url to get or view the original document file (i.e.: image, pdf, pdf_email, etc)

imagePreview
Link copied to clipboard
@SerializedName(value = imagePreview)
val imagePreview: String
The url of an image file to preview this document.
url
Link copied to clipboard
@SerializedName(value = url)
val url: String