@datatr-ux/ovhcloud-types
Version:
TypeScript types for OVHCloud projects
12 lines • 402 B
TypeScript
import { Ipv4Block } from '../Ipv4Block';
import { ProtocolEnum } from './ProtocolEnum';
/** Default IP restriction of a VoIP line */
export interface DefaultIpRestriction {
/** */
id: number;
/** The IPv4 subnet you want to allow */
subnet: Ipv4Block;
/** The protocol you want to restrict (sip/mgcp) */
type: ProtocolEnum;
}
//# sourceMappingURL=DefaultIpRestriction.d.ts.map