/** * Dashboard API * Dashboard API documentation * * The version of the OpenAPI document: 1.0.0 * * * 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 WalletBitcoinConfig */ export interface WalletBitcoinConfig { /** * Bitcoin address type format (e.g. p2wpkh, p2sh, p2pkh) * @type {string} * @memberof WalletBitcoinConfig */ addressType?: string; /** * Bitcoin network identifier (e.g. mainnet, testnet) * @type {string} * @memberof WalletBitcoinConfig */ network?: string; } export declare function WalletBitcoinConfigFromJSON(json: any): WalletBitcoinConfig; export declare function WalletBitcoinConfigFromJSONTyped(json: any, ignoreDiscriminator: boolean): WalletBitcoinConfig; export declare function WalletBitcoinConfigToJSON(value?: WalletBitcoinConfig | null): any;