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

28 lines (27 loc) 1.08 kB
/** * Shell Card Management APIsLib * * This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ). */ import { Schema } from '../schema'; import { ErrorStatus } from './errorStatus'; export interface AccountRestrictionResponse { /** Request Id of the API call */ requestId?: string | null; /** * Account Id on which restriction is applied. * Example: 123456 */ accountId?: number; /** * Account Number on which restriction is applied. * Example: GB000000123 */ accountNumber?: string; /** Status of the card usage restriction submitted to Gateway. Based on the response from Gateway 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; error?: ErrorStatus; } export declare const accountRestrictionResponseSchema: Schema<AccountRestrictionResponse>;