import type { IpAllowlistConfig } from '../schemas/IpAllowlistConfig'; export interface IpAllowlistConfigResponse { /** * Creation timestamp for the IP Allowlist config. * @format int64 */ created: number; ip_allowlist_config: IpAllowlistConfig; /** * Last modification timestamp for IP Allowlist config. * @format int64 */ updated: number; }