src/core/domain/interfaces/es-pit.interface.ts
Structure of PIT (Point-In-Time) object
Properties |
id |
id:
|
Type : string
|
PIT ID |
keep_alive |
keep_alive:
|
Type : string
|
Time to live of the PIT |
export interface EsPit {
/**
* PIT ID
*/
id: string;
/**
* Time to live of the PIT
*/
keep_alive: string;
}