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
26 lines • 955 B
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 AccountAccess {
/** Collecting company id. */
colcoId?: number | null;
/** Collecting company code. */
colcoCode?: number | null;
/** Payer Id to which the user has access */
payerId?: number | null;
/** Payer Number to which the user has access */
payerNumber?: string | null;
/** Name of the Payer to which the user has access */
payerName?: string | null;
/** Account Id to which the user has access */
accountId?: number | null;
/** Account Number to which the user has access */
accountNumber?: string;
/** Name of the Account to which the user has access */
accountName?: string | null;
}
export declare const accountAccessSchema: Schema<AccountAccess>;
//# sourceMappingURL=accountAccess.d.ts.map