UNPKG

ocpi-types

Version:

TypeScript DTOs and enums for OCPI 2.2.1 specification.

12 lines (11 loc) 425 B
import { TokenDto } from './token.dto'; import { LocationReferencesDto } from './location-references.dto'; import { DisplayTextDto } from '../../../dtos/display-text.dto'; import { AllowedType } from '../enums/allowed-type.enum'; export declare class AuthorizationInfoDto { allowed: AllowedType; token: TokenDto; location?: LocationReferencesDto; authorizationReference?: string; info?: DisplayTextDto; }