/** * 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 CipherKeyValueRequestAllOf1AnyOf */ export interface CipherKeyValueRequestAllOf1AnyOf { /** * * @type {boolean} * @memberof CipherKeyValueRequestAllOf1AnyOf */ decrypt?: CipherKeyValueRequestAllOf1AnyOfDecryptEnum; /** * * @type {string} * @memberof CipherKeyValueRequestAllOf1AnyOf */ value: string; } /** * @export */ export declare const CipherKeyValueRequestAllOf1AnyOfDecryptEnum: { readonly false: false; }; export type CipherKeyValueRequestAllOf1AnyOfDecryptEnum = typeof CipherKeyValueRequestAllOf1AnyOfDecryptEnum[keyof typeof CipherKeyValueRequestAllOf1AnyOfDecryptEnum]; /** * Check if a given object implements the CipherKeyValueRequestAllOf1AnyOf interface. */ export declare function instanceOfCipherKeyValueRequestAllOf1AnyOf(value: object): boolean; export declare function CipherKeyValueRequestAllOf1AnyOfFromJSON(json: any): CipherKeyValueRequestAllOf1AnyOf; export declare function CipherKeyValueRequestAllOf1AnyOfFromJSONTyped(json: any, ignoreDiscriminator: boolean): CipherKeyValueRequestAllOf1AnyOf; export declare function CipherKeyValueRequestAllOf1AnyOfToJSON(value?: CipherKeyValueRequestAllOf1AnyOf | null): any;