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
24 lines (20 loc) • 625 B
text/typescript
/**
* Shell Card Management APIsLib
*
* This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ).
*/
import { number, object, optional, Schema, string } from '../schema';
export interface CardMoveRequestCardsItems {
accountNumber?: string;
accountId?: number;
pAN?: string;
cardId?: number;
}
export const cardMoveRequestCardsItemsSchema: Schema<CardMoveRequestCardsItems> = object(
{
accountNumber: ['AccountNumber', optional(string())],
accountId: ['AccountId', optional(number())],
pAN: ['PAN', optional(string())],
cardId: ['CardId', optional(number())],
}
);