/**
 * Shell Card Management APIsLib
 *
 * This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ).
 */
import { Schema } from '../schema.js';
import { BundledRestrictionsList } from './bundledRestrictionsList.js';
export interface BundleDetailsResponse {
    /**
     * Payer Id of the bundles and cards.
     * Example: 123456
     */
    payerId?: number;
    /**
     * Payer Number of the bundles and cards.
     * Example: GB000000123
     */
    payerNumber?: string;
    /**
     * Account ID of the bundle.
     * Example: 123456
     */
    accountId?: number;
    /**
     * Account Number of the bundle.
     * Example: GB000000123
     */
    accountNumber?: string;
    /** unique identifier for the Card Bundle */
    bundleId?: string;
    /** External system allocated Card Bundle identifier for Card Bundle. */
    externalBundleId?: string;
    /** Card Bundle Description. */
    description?: string;
    /** List of Card Pans added to the card bundle. */
    pans?: string[];
    /**
     * ISO currency code of the country.
     * Example: GBP
     */
    restrictionCurrencyCode?: string;
    /**
     * Currency symbol of the country.
     * Example: £, $
     */
    restrictionCurrencySymbol?: string;
    restrictions?: BundledRestrictionsList;
}
export declare const bundleDetailsResponseSchema: Schema<BundleDetailsResponse>;
//# sourceMappingURL=bundleDetailsResponse.d.ts.map