/** * @type CipherSuitesResponse: Cipher suites information. * * @property ciphers: List of zone level ciphers in the suite. * * @property cipherSuiteType: Classification of the ciphers in the suite. * */ export type CipherSuitesResponse = { ciphers: Array; cipherSuiteType: CipherSuitesResponseCipherSuiteTypeEnum; } & { [key: string]: any; }; export type CipherSuitesResponseCipherSuiteTypeEnum = 'Compatible' | 'Modern' | 'Custom' | 'Legacy';