@citrineos/data
Version:
The OCPP data module which includes all persistence layer implementation.
17 lines (16 loc) • 552 B
TypeScript
import { Transaction } from './Transaction';
import { IdToken } from '../Authorization';
import { MeterValue } from './MeterValue';
import { BaseModelWithTenant } from '../BaseModelWithTenant';
export declare class StopTransaction extends BaseModelWithTenant {
static readonly MODEL_NAME: string;
stationId: string;
transactionDatabaseId: string;
transaction: Transaction;
meterStop: number;
timestamp: string;
idTokenDatabaseId?: number | null;
idToken?: IdToken;
reason?: string;
meterValues?: MeterValue[];
}