UNPKG

@citrineos/data

Version:

The OCPP data module which includes all persistence layer implementation.

12 lines (11 loc) 421 B
import type { TenantDto } from '@citrineos/base'; import { Model } from 'sequelize-typescript'; export declare class LocalListVersionAuthorization extends Model { static readonly MODEL_NAME: string; localListVersionId: number; authorizationId: number; tenantId: number; tenant?: TenantDto; static setDefaultTenant(instance: LocalListVersionAuthorization): void; constructor(...args: any[]); }