@citrineos/data
Version:
The OCPP data module which includes all persistence layer implementation.
22 lines (21 loc) • 735 B
TypeScript
import { OCPP2_0_1 } from '@citrineos/base';
export interface VariableAttributeQuerystring {
stationId: string;
tenantId: number;
type?: OCPP2_0_1.AttributeEnumType;
value?: string;
status?: OCPP2_0_1.SetVariableStatusEnumType;
component_evse_id?: number;
component_evse_connectorId?: number | null;
component_name?: string;
component_instance?: string | null;
variable_name?: string;
variable_instance?: string | null;
}
export declare const VariableAttributeQuerySchema: object;
export interface CreateOrUpdateVariableAttributeQuerystring {
tenantId: number;
stationId: string;
setOnCharger?: boolean;
}
export declare const CreateOrUpdateVariableAttributeQuerySchema: object;