/** * barkd REST API * A simple REST API for barkd, a wallet daemon for integrating bitcoin payments into your app over HTTP. Supports self-custodial Lightning, Ark, and on-chain out of the box. barkd is a long-running daemon best suited for always-on or high-connectivity environments like nodes, servers, desktops, and point-of-sale terminals. All endpoints return JSON. Amounts are denominated in satoshis. * * The version of the OpenAPI document: 0.6.1 * Contact: hello@second.tech * * 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 { Movement } from './Movement'; /** * A new movement was created * @export * @interface WalletNotificationOneOf */ export interface WalletNotificationOneOf { /** * * @type {Movement} * @memberof WalletNotificationOneOf */ movement: Movement; /** * * @type {WalletNotificationOneOfTypeEnum} * @memberof WalletNotificationOneOf */ type: WalletNotificationOneOfTypeEnum; } /** * @export */ export declare const WalletNotificationOneOfTypeEnum: { readonly MovementCreated: "movement-created"; }; export type WalletNotificationOneOfTypeEnum = typeof WalletNotificationOneOfTypeEnum[keyof typeof WalletNotificationOneOfTypeEnum]; /** * Check if a given object implements the WalletNotificationOneOf interface. */ export declare function instanceOfWalletNotificationOneOf(value: object): value is WalletNotificationOneOf; export declare function WalletNotificationOneOfFromJSON(json: any): WalletNotificationOneOf; export declare function WalletNotificationOneOfFromJSONTyped(json: any, ignoreDiscriminator: boolean): WalletNotificationOneOf; export declare function WalletNotificationOneOfToJSON(json: any): WalletNotificationOneOf; export declare function WalletNotificationOneOfToJSONTyped(value?: WalletNotificationOneOf | null, ignoreDiscriminator?: boolean): any;