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
63 lines • 1.88 kB
TypeScript
/**
* Shell Data & Reporting APIsLib
*
* This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ).
*/
import { Schema } from '../schema.js';
export interface CardUsageSummaryRequest {
/**
* Collecting Company Id of the selected payer.
* Optional if ColCoCode is passed else Mandatory.
* Example:
* 1 for Philippines
* 5 for UK
*/
colCoId?: number | null;
/**
* Collecting Company Code of the selected payer.
* Mandatory for serviced OUs such as Romania, Latvia, Lithuania, Estonia, Ukraine etc. It is optional for other countries if ColCoID is provided.
* Example:
* 86 for Philippines
* 5 for UK
*/
colCoCode?: number | null;
/**
* Payer Id of the selected payer.
* Optional if PayerNumber is passed else Mandatory
*/
payerId?: number | null;
/**
* Payer Number of the selected payer.
* Optional if PayerId is passed else Mandatory
*/
payerNumber?: string | null;
/**
* Account ID of the customer.
* Optional if account number is passed else mandatory.
*/
accountId?: number | null;
/**
* Account Number of the customer.
* Optional if Account ID is passed else mandatory.
*/
accountNumber?: string | null;
/**
* Card Id of the card.
* Optional if PAN is passed, else Mandatory.
*/
cardId?: number | null;
/**
* PAN of the card.
* Optional if CardId is passed, else Mandatory.
*/
pAN?: string | null;
/**
* Expiry date of the card.
* Mandatory if Card ID is not provided, else optional.
* Format: yyyyMMdd
* Example: 20170930
*/
cardExpiryDate?: string | null;
}
export declare const cardUsageSummaryRequestSchema: Schema<CardUsageSummaryRequest>;
//# sourceMappingURL=cardUsageSummaryRequest.d.ts.map