/** * 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. */ import type { CipherKeyValueRequestAllOfIv } from './CipherKeyValueRequestAllOfIv'; import type { TypesNumericU32 } from './TypesNumericU32'; /** * * @export * @interface CipherKeyValueRequestAllOf */ export interface CipherKeyValueRequestAllOf { /** * * @type {CipherKeyValueRequestAllOfIv} * @memberof CipherKeyValueRequestAllOf */ iv: CipherKeyValueRequestAllOfIv; /** * don't decrypt without prompting the user (setting must match for both encryption and decryption) * @type {boolean} * @memberof CipherKeyValueRequestAllOf */ ask_on_decrypt?: boolean; /** * don't encrypt without prompting the user (setting must match for both encryption and decryption) * @type {boolean} * @memberof CipherKeyValueRequestAllOf */ ask_on_encrypt?: boolean; /** * decrypt ciphertext instead of encrypting plaintext * @type {boolean} * @memberof CipherKeyValueRequestAllOf */ decrypt?: boolean; /** * decoded length must be a multiple of 16 bytes * @type {string} * @memberof CipherKeyValueRequestAllOf */ value: string; /** * a key name, which will be mixed into the encryption key * @type {string} * @memberof CipherKeyValueRequestAllOf */ key: string; /** * a BIP-32 path, expressed as a list of node indexes * @type {Array} * @memberof CipherKeyValueRequestAllOf */ address_n_list: Array; } /** * Check if a given object implements the CipherKeyValueRequestAllOf interface. */ export declare function instanceOfCipherKeyValueRequestAllOf(value: object): boolean; export declare function CipherKeyValueRequestAllOfFromJSON(json: any): CipherKeyValueRequestAllOf; export declare function CipherKeyValueRequestAllOfFromJSONTyped(json: any, ignoreDiscriminator: boolean): CipherKeyValueRequestAllOf; export declare function CipherKeyValueRequestAllOfToJSON(value?: CipherKeyValueRequestAllOf | null): any;