FileMetaDataResponseDto

data class FileMetaDataResponseDto(var fileContext: String, var identifier: String, var id: UUID)

Meta data of a file.

Parameters

fileContext

Context of the image. The context describes in the scope of which functionality the image is used. For example, a context can be \"PROFILE_PICTURE\" or \"SAVINGS_PLAN\".

identifier

Unique identifier of the image. The identifier can be, for example, the ID of the user or a savings plan ID.

id

Id of the file under which it was saved.

Constructors

Link copied to clipboard
constructor(fileContext: String, identifier: String, id: UUID)

Properties

Link copied to clipboard
@get:Size(max = 255)
var fileContext: String
Link copied to clipboard
var id: UUID
Link copied to clipboard
@get:Size(max = 255)
var identifier: String