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

25 lines (24 loc) 759 B
/** * Shell Card Management APIsLib * * This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ). */ import { Schema } from '../schema'; /** This class holds the PIN Reminder References */ export interface PINReminderReference { /** Card Id */ cardId?: number | null; /** PAN ID */ pANID?: number | null; /** PAN */ pAN?: number | null; /** * Expiry date of the card. * Mandatory if Either PAN or PANID is passed, else optional. * Format: yyyyMMdd */ cardExpiryDate?: string | null; /** Individual card pin reminder reference number for the Pin Reminder request. */ referenceId?: number; } export declare const pINReminderReferenceSchema: Schema<PINReminderReference>;