unifi-client
Version:
NodeJs client for Unifi products (https://www.ui.com/)
13 lines (12 loc) • 432 B
TypeScript
import { IFWRuleBaseRaw } from './IFWRuleBaseRaw';
import { icmpTypeV4, networkConfType, protocolV4 } from './types';
export interface IFWV4RuleRaw extends IFWRuleBaseRaw {
dst_address: string;
src_address: string;
protocol: protocolV4;
icmp_typename: icmpTypeV4;
src_networkconf_id: string;
src_networkconf_type: networkConfType;
dst_networkconf_id: string;
dst_networkconf_type: networkConfType;
}