/** * 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 CipherKeyValueRequest */ export interface CipherKeyValueRequest { /** * * @type {CipherKeyValueRequestAllOfIv} * @memberof CipherKeyValueRequest */ iv: CipherKeyValueRequestAllOfIv; /** * don't decrypt without prompting the user (setting must match for both encryption and decryption) * @type {boolean} * @memberof CipherKeyValueRequest */ ask_on_decrypt?: boolean; /** * don't encrypt without prompting the user (setting must match for both encryption and decryption) * @type {boolean} * @memberof CipherKeyValueRequest */ ask_on_encrypt?: boolean; /** * * @type {boolean} * @memberof CipherKeyValueRequest */ decrypt: CipherKeyValueRequestDecryptEnum; /** * * @type {string} * @memberof CipherKeyValueRequest */ value: string; /** * a key name, which will be mixed into the encryption key * @type {string} * @memberof CipherKeyValueRequest */ key: string; /** * a BIP-32 path, expressed as a list of node indexes * @type {Array} * @memberof CipherKeyValueRequest */ address_n_list: Array; } /** * @export */ export declare const CipherKeyValueRequestDecryptEnum: { readonly true: true; }; export type CipherKeyValueRequestDecryptEnum = typeof CipherKeyValueRequestDecryptEnum[keyof typeof CipherKeyValueRequestDecryptEnum]; /** * Check if a given object implements the CipherKeyValueRequest interface. */ export declare function instanceOfCipherKeyValueRequest(value: object): boolean; export declare function CipherKeyValueRequestFromJSON(json: any): CipherKeyValueRequest; export declare function CipherKeyValueRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): CipherKeyValueRequest; export declare function CipherKeyValueRequestToJSON(value?: CipherKeyValueRequest | null): any;