interface Version {
    createdAt?: Date;
    id: string;
    name: string;
    publishedAt?: Date;
    updatedAt?: Date;
}

Properties

createdAt?: Date

Creation date of this image version.

id: string

UUID of this version.

name: string

Name of this version.

publishedAt?: Date

Date this version was officially published.

updatedAt?: Date

Date of the last modification of this version.