card-management-sdk
Version:
The Shell Card Management API is REST-based and employs OAUTH 2.0,Basic and ApiKey authentication. The API endpoints accept JSON-encoded request bodies, return JSON-encoded responses and use standard HTTP response codes. All resources are located in the S
54 lines (53 loc) • 1.5 kB
TypeScript
/**
* Shell Card Management APIsLib
*
* This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ).
*/
import { Schema } from '../schema';
import { BundledRestrictionsList } from './bundledRestrictionsList';
import { ErrorStatus } from './errorStatus';
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;
error?: ErrorStatus;
/** API Request Id */
requestId?: string;
}
export declare const bundleDetailsResponseSchema: Schema<BundleDetailsResponse>;