scipaper/src/core/domain/interfaces/elastic/es-pit.interface.ts

14 lines
195 B
TypeScript

/**
* Structure of PIT (Point-In-Time) object
*/
export interface EsPit {
/**
* PIT ID
*/
id: string;
/**
* Time to live of the PIT
*/
keep_alive: string;
}