FileMetaDataDto

data class FileMetaDataDto(var fileContext: String, var identifier: String)

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.

Constructors

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

Properties

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