tibber-api
Version:
Node.js module for connecting to Tibber API and extract data from your connected homes, including realtime data from Tibber Pulse.
15 lines (14 loc) • 351 B
TypeScript
import { IAddress } from './IAddress';
import { IContactInfo } from './IContactInfo';
export interface ILegalEntity {
id: string;
firstName: string;
isCompany: boolean;
name: string;
middleName: string;
lastName: string;
organizationNo: string;
language: string;
contactInfo: IContactInfo;
address: IAddress;
}