@citrineos/data
Version:
The OCPP data module which includes all persistence layer implementation.
16 lines (15 loc) • 505 B
TypeScript
import { Model } from 'sequelize-typescript';
import { IdToken } from './IdToken';
export declare class IdTokenInfo extends Model {
static readonly MODEL_NAME: string;
status: string;
cacheExpiryDateTime?: string | null;
chargingPriority?: number | null;
language1?: string | null;
evseId?: [number, ...number[]] | null;
groupIdTokenId?: number | null;
groupIdToken?: IdToken;
language2?: string | null;
personalMessage?: any | null;
customData?: any | null;
}