/** * keepkey-sdk-server * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.1 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ /** * * @export * @interface CipherKeyValueRequestAllOf1AnyOf1 */ export interface CipherKeyValueRequestAllOf1AnyOf1 { /** * * @type {boolean} * @memberof CipherKeyValueRequestAllOf1AnyOf1 */ decrypt: CipherKeyValueRequestAllOf1AnyOf1DecryptEnum; /** * * @type {string} * @memberof CipherKeyValueRequestAllOf1AnyOf1 */ value: string; } /** * @export */ export declare const CipherKeyValueRequestAllOf1AnyOf1DecryptEnum: { readonly true: true; }; export type CipherKeyValueRequestAllOf1AnyOf1DecryptEnum = typeof CipherKeyValueRequestAllOf1AnyOf1DecryptEnum[keyof typeof CipherKeyValueRequestAllOf1AnyOf1DecryptEnum]; /** * Check if a given object implements the CipherKeyValueRequestAllOf1AnyOf1 interface. */ export declare function instanceOfCipherKeyValueRequestAllOf1AnyOf1(value: object): boolean; export declare function CipherKeyValueRequestAllOf1AnyOf1FromJSON(json: any): CipherKeyValueRequestAllOf1AnyOf1; export declare function CipherKeyValueRequestAllOf1AnyOf1FromJSONTyped(json: any, ignoreDiscriminator: boolean): CipherKeyValueRequestAllOf1AnyOf1; export declare function CipherKeyValueRequestAllOf1AnyOf1ToJSON(value?: CipherKeyValueRequestAllOf1AnyOf1 | null): any;