card-management-sdk
Version:
The Shell Card Management API is REST-based and employs OAUTH 2.0,Basic and ApiKey authentication. The API endpoints accept JSON-encoded request bodies, return JSON-encoded responses and use standard HTTP response codes. All resources are located in the S
42 lines (41 loc) • 1.25 kB
TypeScript
/**
* Shell Card Management APIsLib
*
* This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ).
*/
import { Schema } from '../schema';
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>;