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
50 lines (49 loc) • 2.35 kB
TypeScript
/**
* Shell Card Management APIsLib
*
* This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ).
*/
import { Schema } from '../schema';
export interface RestrictioncardsRes {
/**
* Account Id of the customer.
* Example: 123456
*/
accountId?: number;
/**
* Account Number of the customer.
* Example: GB000000123
*/
accountNumber?: string;
/**
* Unique Card Id
* Example: 275549
*/
cardId?: string;
/**
* Card PAN.
* Example: 7002051006629890645
*/
pAN?: string;
/** Status of the card usage restriction submitted. Based on the response the value will be set as either “Success” or “Failed”. */
usageRestrictionStatus?: string;
/** Response for the usage restriction in case of an error. This field will have a value only when “UsageRestrictionStatus” is “Failed”. */
usageRestrictionDescription?: string;
/** Status of the card day/time restriction submitted. Based on the response from Gateway value will be set as either “Success” or “Failed”. */
dayTimeRestrictionStatus?: string;
/** Response for the day/time restriction in case of an error. This field will have a value only when “DayTimeRestrictionStatus” is “Failed”. */
dayTimeRestrictionDescription?: string;
/** Status of the card product restriction submitted. Based on the response the value will be set either as “Success” or “Failed”. */
productRestrictionStatus?: string;
/** Response for the product restriction in case of an error. This field will have a value only when “ProductRestrictionStatus” is “Failed”. */
productRestrictionDescription?: string;
/** Card Location restriction submitted, based on response value set as “Success” or “Failed”. */
locationRestrictionStatus?: string;
/** Response for the location restriction in case of an error. This field will have a value only when “LocationRestrictionStatus” is “Failed”. */
locationRestrictionStatusDescription?: string;
/** Error code for validation failure. */
validationErrorCode?: string;
/** Description of validation failure. */
validationErrorDescription?: string;
}
export declare const restrictioncardsResSchema: Schema<RestrictioncardsRes>;