UNPKG

unifi-client

Version:

NodeJs client for Unifi products (https://www.ui.com/)

15 lines (14 loc) 389 B
import { timestampDate } from '../commons/types'; export type AuthorizedBy = 'api' | string; export interface IGuestAuthorization { _id: string; mac: string; start: timestampDate; site_id: string; authorized_by: AuthorizedBy; end: timestampDate; qos_usage_quota: number; qos_rate_max_up: number; qos_rate_max_down: number; qos_overwrite: boolean; }