data-and-reporting-sdk
Version:
Data And Reporting product consists of API's which provides details of transaction and invoice informations about shell cards. The Shell Card Transaction and Invoice API is REST-based and employs Basic authentication in Version 1 and Oauth authentication
61 lines (60 loc) • 2.52 kB
TypeScript
/**
* Shell Data & Reporting APIsLib
*
* This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ).
*/
import { Schema } from '../schema';
export interface CardGroupResponseCardGroupsItems {
/** Account Id for the associated card group */
accountId?: number | null;
/** Account number for the associated card group */
accountNumber?: string | null;
/** Account short name for the associated card group */
accountShortName?: string | null;
/** Total number of active cards for the given search criteria */
activeCards?: number | null;
/** Total number of cards for the given search criteria that are permanently blocked */
blockedCards?: number | null;
/** Total number of cards for the given search criteria that are cancelled */
cancelledCards?: number | null;
/** card delivery point enabled or not */
cardDeliveryPoint?: boolean | null;
/** Id of the card group matching the search criteria. */
cardGroupId?: number | null;
/** Name of the card group matching the search criteria. */
cardGroupName?: string | null;
/** Card Type Code */
cardTypeCode?: string | null;
/** Card Type Id */
cardTypeId?: number | null;
/** Card Type Name */
cardTypeName?: string | null;
/** Total number of expired cards for the given search criteria */
expiredCards?: number | null;
/**
* Expiry date of the card.
* Format: yyyyMMdd
* Note: Clients to convert this to appropriate DateTime type.
*/
expiryDate?: string | null;
/** PrintOnCard true/false */
printOnCard?: boolean | null;
/** Total number of Renewal Pending Cards for the given search criteria */
renewalPendingCards?: number | null;
replacedCards?: number | null;
/** Status of the card group. */
status?: string | null;
/** Total number of cards for the given search criteria that are temporarily blocked by customer */
temporaryBlockByCustomer?: number | null;
/** Total number of cards for the given search criteria that are temporarily blocked by Shell */
temporaryBlockByShell?: number | null;
/**
* Terminated Date.
* Format: yyyyMMdd
* Note: Clients to convert this to appropriate Date Time type.
*/
terminatedDate?: string | null;
/** Total number of cards for the given search criteria */
totalCards?: number | null;
}
export declare const cardGroupResponseCardGroupsItemsSchema: Schema<CardGroupResponseCardGroupsItems>;