interface UniFiRoute {
    _id: string;
    name: string;
    enabled: boolean;
    static_route_distance?: number;
    static_route_interface?: string;
    static_route_nexthop?: string;
    static_route_network?: string;
    static_route_type?: "nexthop-route" | "interface-route" | "blackhole";
    pfx_len?: number;
    site_id?: string;
    attr_hidden_id?: string;
    attr_no_delete?: boolean;
    attr_no_edit?: boolean;
}

Properties

_id: string
name: string
enabled: boolean
static_route_distance?: number
static_route_interface?: string
static_route_nexthop?: string
static_route_network?: string
static_route_type?: "nexthop-route" | "interface-route" | "blackhole"
pfx_len?: number
site_id?: string
attr_hidden_id?: string
attr_no_delete?: boolean
attr_no_edit?: boolean