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
48 lines • 1.55 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 CustomerDetailRequest {
/**
* Collecting Company Id of the selected payer.
* Optional if ColCoCode is passed else Mandatory.
* Example:
* 1-Philippines
* 5-UK
*/
colCoId?: number | null;
/**
* Collecting Company Code (Shell 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-Philippines
* 5-UK
*/
colCoCode?: number | null;
/**
* Payer Id (i.e., Customer Id of the Payment Customer in H3 Cards Platform) of the selected payer.
* Optional if PayerNumber is passed else Mandatory
* Example: 123456
*/
payerId?: number | null;
/**
* Payer Number of the selected payer.
* Optional if PayerId is passed else Mandatory
* Example: DE00001067
*/
payerNumber?: string | null;
/**
* Account ID of the customer.
* Optional if AccountNumber is passed else Mandatory.
*/
accountId?: number | null;
/**
* Account Number of the customer.
* Optional if AccountId is passed else Mandatory.
*/
accountNumber?: string | null;
}
export declare const customerDetailRequestSchema: Schema<CustomerDetailRequest>;
//# sourceMappingURL=customerDetailRequest.d.ts.map