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