UNPKG

@citrineos/data

Version:

The OCPP data module which includes all persistence layer implementation.

14 lines (13 loc) 496 B
import type { ChangeConfigurationDto, TenantDto } from '@citrineos/base'; import { Model } from 'sequelize-typescript'; export declare class ChangeConfiguration extends Model implements ChangeConfigurationDto { 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[]); }