UNPKG

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

42 lines 1.3 kB
/** * Shell Data & Reporting APIsLib * * This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ). */ import { Schema } from '../schema.js'; export interface PayerAccess { /** Whether this payer is the default payer of the user. */ isDefault?: boolean; /** Collecting company id. */ colcoId?: number | null; /** * Collecting company code. * Example: * 86-Philippines * 5-UK */ colcoCode?: number | null; /** The 2-character ISO Code for the customer and card owning country */ colCoCountryCode?: string | null; /** Payer Group Id of the payer. */ payerGroupId?: number | null; /** * Payer group of the payer. * The value of this parameter will always be null when the input parameter “IncludePayerGroup” is false. */ payerGroup?: string | null; /** * Payer Id to which the user has access * Example: 123456 */ payerId?: number | null; /** * Payer Number to which the user has access * Example: GB000000123 */ payerNumber?: string | null; /** Name of the Payer to which the user has access */ payerName?: string | null; } export declare const payerAccessSchema: Schema<PayerAccess>; //# sourceMappingURL=payerAccess.d.ts.map