/**
 * Shell Card Management APIsLib
 *
 * This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ).
 */
import { Schema } from '../schema';
export interface Payers {
    /** Collecting Company Id of the payer */
    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.
     */
    colCoCode?: number | null;
    /** Payer id of the customer. */
    payerId?: number | null;
    /** Payer Number of the customer. */
    payerNumber?: string | null;
    /** Payer Name of the customer. */
    payerName?: string | null;
    /** Payer Group identifier of the customer */
    payerGroupId?: number | null;
}
export declare const payersSchema: Schema<Payers>;
