@citrineos/data
Version:
The OCPP data module which includes all persistence layer implementation.
16 lines (15 loc) • 535 B
TypeScript
import { IdToken } from './IdToken';
import { BaseModelWithTenant } from '../BaseModelWithTenant';
export declare class IdTokenInfo extends BaseModelWithTenant {
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;
}