/**
* Cardano Wallet Backend API
*
*
* OpenAPI spec version: 2021.3.4
*
*
* NOTE: This class is auto generated by the swagger code generator program.
* https://github.com/swagger-api/swagger-codegen.git
* Do not edit the class manually.
*/
/**
* if: status == in_ledger
Current depth of the transaction in the local chain
* @export
* @interface WalletswalletIdtransactionsDepth
*/
export interface WalletswalletIdtransactionsDepth {
/**
*
* @type {number}
* @memberof WalletswalletIdtransactionsDepth
*/
quantity: any;
/**
*
* @type {string}
* @memberof WalletswalletIdtransactionsDepth
*/
unit: WalletswalletIdtransactionsDepthUnitEnum;
}
/**
* @export
* @enum {string}
*/
export declare enum WalletswalletIdtransactionsDepthUnitEnum {
Block = "block"
}