/** * Copyright © 2024 Nevis Security AG. All rights reserved. */ import { PendingOutOfBandOperation } from './PendingOutOfBandOperation'; import type { PendingOutOfBandOperationsError } from '../../error/outOfBand/pendingOutOfBandOperationsError/PendingOutOfBandOperationsError'; /** * The object with the non-redeemed out-of-band operations returned by nevisFIDO * in the {@link https://docs.nevis.net/nevisfido/reference-guide/uaf-http-api/device-service#get-device-out-of-band-operations | Get Device Out-of-Band Operations} * service. * * If the pending operations in a given server could be found, but they failed for another server. * The found operations will be returned by the {@link operations} method, and the error will be * returned by the {@link errors} method. * * @group Common Objects */ export declare abstract class PendingOutOfBandOperationsResult { /** * Returns the out-of-band operations of the device that have not been redeemed, * nor timed-out. */ abstract operations: Array; /** * Returns the errors that occurred retrieving the pending out-of-band operations. */ abstract errors: Array; /** * Alternate constructor that creates a {@link PendingOutOfBandOperationsResult} from a json. * * @returns the created {@link PendingOutOfBandOperationsResult} instance. */ static fromJson(json: any): PendingOutOfBandOperationsResult; } export declare class PendingOutOfBandOperationsResultImpl extends PendingOutOfBandOperationsResult { operations: Array; errors: Array; constructor(operations: Array, errors: Array); static fromJson(json: any): PendingOutOfBandOperationsResultImpl; } //# sourceMappingURL=PendingOutOfBandOperationsResult.d.ts.map