UNPKG

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

38 lines (37 loc) 1.24 kB
/** * Shell Card Management APIsLib * * This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ). */ import { Schema } from '../schema'; import { AutoRenewCardRequestAutoRenewCardsItems } from './autoRenewCardRequestAutoRenewCardsItems'; export interface AutoRenewCardRequest { /** * Collecting Company Id of the selected payer. * Optional if ColCoCode is passed else Mandatory. * Example: * 1-Philippines * 5-UK */ colCoId?: number; /** * 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; /** * Payer Number (Ex: GB000000123) of the selected payer. * Optional if PayerId is passed else Mandatory */ payerNumber?: string; /** * Payer Id of the selected payer. * Optional if PayerNumber is passed else Mandatory */ payerId?: number; autoRenewCards?: AutoRenewCardRequestAutoRenewCardsItems[]; } export declare const autoRenewCardRequestSchema: Schema<AutoRenewCardRequest>;