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
33 lines (32 loc) • 962 B
TypeScript
/**
* Shell Card Management APIsLib
*
* This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ).
*/
import { Schema } from '../schema';
import { AccountVelocityLimit } from './accountVelocityLimit';
import { ErrorStatus } from './errorStatus';
export interface SearchAccountLimitResponse {
/** Request Id of the API call */
requestId?: string | null;
/** Account ID of the customer. */
accountId?: number;
/**
* Account Number
* Example: GB99215176
*/
accountNumber?: string;
/**
* 3 digit Shell global fuel product code, if already set up.
* Example: 021
*/
referenceProduct?: string;
/**
* The restriction condition code.
* Example: DECLINE_ALERT
*/
restrictionCondition?: string;
velocityLimits?: AccountVelocityLimit[];
error?: ErrorStatus;
}
export declare const searchAccountLimitResponseSchema: Schema<SearchAccountLimitResponse>;