A data transfer object that stores the metadata associated with the temporary data.

interface TemporaryDataDTO {
    expirationSeconds?: number;
    origin?: string;
    value?: any;
}

Hierarchy (View Summary)

Properties

expirationSeconds?: number

Temporary data expire in seconds

origin?: string

Temporary data origin

value?: any

Temporary data.