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
93 lines (92 loc) • 2.6 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 UsageRestrictionsCard {
/**
* Maximum spend value (amount) allowed per day.
* Optional
* It allows null in the input field. If Values is passed as null, apply the card type limit. However, if the card type limit is NULL for the same field then No limit will be applied in Gateway.
*/
dailySpend?: number | null;
/**
* Maximum spend value (amount) allowed per week.
* Optional
*/
weeklySpend?: number | null;
/**
* Maximum spend value (amount) allowed per month.
* Optional
*/
monthlySpend?: number | null;
/**
* Maximum spend value (amount) allowed per transaction.
* Optional
*/
perTransactionSpend?: number | null;
/**
* Maximum spend value (amount) allowed per annum.
* Optional
*/
annualSpend?: number | null;
/**
* Maximum spend value (amount) allowed in card’s life time.
* Optional
*/
lifeTimeSpend?: number | null;
/**
* Maximum volume (quantity) allowed per day.
* Optional
*/
dailyVolume?: number | null;
/**
* Maximum volume (quantity) allowed per week.
* Optional
*/
weeklyVolume?: number | null;
/**
* Maximum volume (quantity) allowed per month.
* Optional
*/
monthlyVolume?: number | null;
/**
* Maximum volume (quantity) allowed per transaction.
* Optional
*/
perTransactionVolume?: number;
/**
* Maximum volume (quantity) allowed per annum.
* Optional
*/
annualVolume?: number | null;
/**
* Maximum volume (quantity) allowed in card’s life time.
* Optional
*/
lifeTimeVolume?: number;
/**
* Maximum number of transactions allowed per day.
* Optional
*/
dailyTransactionCount?: number | null;
/**
* Maximum number of transactions allowed per week.
* Optional
*/
weeklyTransactionCount?: number | null;
/**
* Maximum number of transactions allowed per month.
* Optional.
*/
monthlyTransactionCount?: number | null;
/** Maximum number of transactions allowed per annum. */
annualTransactionCount?: number | null;
/**
* Maximum number of transactions allowed in card’s lifetime.
* Optional
*/
lifeTimeTransactionCount?: number | null;
}
export declare const usageRestrictionsCardSchema: Schema<UsageRestrictionsCard>;