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

29 lines 1.45 kB
/** * Shell Card Management APIsLib * * This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ). */ import { boolean, nullable, number, object, optional, string, } from '../schema.js'; export const cardDetailsRequestSchema = object({ colCoCode: ['ColCoCode', optional(number())], colCoId: ['ColCoId', optional(nullable(number()))], colCoCountryCode: ['ColCoCountryCode', optional(nullable(string()))], clientReferenceId: ['ClientReferenceId', optional(nullable(string()))], payerNumber: ['PayerNumber', optional(nullable(string()))], payerId: ['PayerId', optional(nullable(number()))], accountNumber: ['AccountNumber', optional(nullable(string()))], accountId: ['AccountId', optional(nullable(number()))], pAN: ['PAN', optional(nullable(string()))], cardId: ['CardId', optional(nullable(number()))], tokenTypeID: ['TokenTypeID', optional(nullable(number()))], tokenTypeName: ['TokenTypeName', optional(nullable(string()))], creationDate: ['CreationDate', optional(nullable(string()))], effectiveDate: ['EffectiveDate', optional(nullable(string()))], includeBundleDetails: ['IncludeBundleDetails', optional(boolean())], includeIntermediateStatus: ['IncludeIntermediateStatus', optional(boolean())], includeScheduledCardBlocks: [ 'IncludeScheduledCardBlocks', optional(boolean()), ], }); //# sourceMappingURL=cardDetailsRequest.js.map