ExportCreateDto

data class ExportCreateDto(val outputFormats: List<ExportOutputFormatsEnum>, val criteria: ListDocumentsCriteriaDto, val locale: String? = null)

Parameters

outputFormats

Indicates which formats should be generated. Valid values are: * 'csv' - indicates a comma separated file should be produced summarizing the exported data * 'xlsx' - indicates an excel spreadsheet should be produced summarizing the exported data * 'pdf' - indicates individual documents should be exported to a PDF file

criteria
locale

Allows you to specify the locale in which the response should be returned. It must be a supported value from the list of locale-codes, which can be obtained by going to /lookups/locales. It defaults to the user's locale.

Constructors

Link copied to clipboard
constructor(outputFormats: List<ExportOutputFormatsEnum>, criteria: ListDocumentsCriteriaDto, locale: String? = null)

Properties

Link copied to clipboard
@SerializedName(value = "criteria")
val criteria: ListDocumentsCriteriaDto
Link copied to clipboard
@SerializedName(value = "locale")
val locale: String? = null
Link copied to clipboard
@SerializedName(value = "outputFormats")
val outputFormats: List<ExportOutputFormatsEnum>