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
21 lines • 940 B
JavaScript
/**
* Shell Card Management APIsLib
*
* This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ).
*/
import { array, lazy, nullable, number, object, optional, string, } from '../schema';
import { accountVelocityLimitSchema, } from './accountVelocityLimit';
import { errorStatusSchema } from './errorStatus';
export const searchAccountLimitResponseSchema = object({
requestId: ['RequestId', optional(nullable(string()))],
accountId: ['AccountId', optional(number())],
accountNumber: ['AccountNumber', optional(string())],
referenceProduct: ['ReferenceProduct', optional(string())],
restrictionCondition: ['RestrictionCondition', optional(string())],
velocityLimits: [
'VelocityLimits',
optional(array(lazy(() => accountVelocityLimitSchema))),
],
error: ['Error', optional(lazy(() => errorStatusSchema))],
});
//# sourceMappingURL=searchAccountLimitResponse.js.map