@citrineos/data
Version:
The OCPP data module which includes all persistence layer implementation.
14 lines (13 loc) • 438 B
TypeScript
import type { TenantDto } from '@citrineos/base';
import { Model } from 'sequelize-typescript';
export declare class ChangeConfiguration extends Model {
static readonly MODEL_NAME: string;
stationId: string;
key: string;
value?: string | null;
readonly?: boolean | null;
tenantId: number;
tenant?: TenantDto;
static setDefaultTenant(instance: ChangeConfiguration): void;
constructor(...args: any[]);
}