mirror of
https://github.com/HamzaSha1/zod-backend.git
synced 2026-03-10 22:41:45 +00:00
78 lines
1.8 KiB
TypeScript
78 lines
1.8 KiB
TypeScript
import { INeoleapHeaderRequest } from './neoleap-header.request.interface';
|
|
|
|
export interface IUpdateCardControlRequest extends INeoleapHeaderRequest {
|
|
UpdateCardControlsRequestDetails: {
|
|
InstitutionCode: string;
|
|
CardIdentifier: {
|
|
Id: string;
|
|
InstitutionCode: string;
|
|
};
|
|
|
|
UsageTransactionLimit?: {
|
|
AmountLimit: number;
|
|
CountLimit: number;
|
|
};
|
|
DomesticCashDailyLimit?: {
|
|
AmountLimit: number;
|
|
CountLimit: number;
|
|
};
|
|
InternationalCashDailyLimit?: {
|
|
AmountLimit: number;
|
|
CountLimit: number;
|
|
};
|
|
DomesticPosDailyLimit?: {
|
|
AmountLimit: number;
|
|
CountLimit: number;
|
|
lenient?: boolean;
|
|
};
|
|
InternationalPosDailyLimit?: {
|
|
AmountLimit: number;
|
|
CountLimit: number;
|
|
};
|
|
EcommerceDailyLimit?: {
|
|
AmountLimit: number;
|
|
CountLimit: number;
|
|
};
|
|
DomesticCashMonthlyLimit?: {
|
|
AmountLimit: number;
|
|
CountLimit: number;
|
|
};
|
|
InternationalCashMonthlyLimit?: {
|
|
AmountLimit: number;
|
|
CountLimit: number;
|
|
};
|
|
DomesticPosMonthlyLimit?: {
|
|
AmountLimit: number;
|
|
CountLimit: number;
|
|
};
|
|
InternationalPosMonthlyLimit?: {
|
|
AmountLimit: number;
|
|
CountLimit: number;
|
|
};
|
|
EcommerceMonthlyLimit?: {
|
|
AmountLimit: number;
|
|
CountLimit: number;
|
|
};
|
|
DomesticCashTransactionLimit?: {
|
|
AmountLimit: number;
|
|
CountLimit: number;
|
|
};
|
|
InternationalCashTransactionLimit?: {
|
|
AmountLimit: number;
|
|
CountLimit: number;
|
|
};
|
|
DomesticPosTransactionLimit?: {
|
|
AmountLimit: number;
|
|
CountLimit: number;
|
|
};
|
|
InternationalPosTransactionLimit?: {
|
|
AmountLimit: number;
|
|
CountLimit: number;
|
|
};
|
|
EcommerceTransactionLimit?: {
|
|
AmountLimit: number;
|
|
CountLimit: number;
|
|
};
|
|
};
|
|
}
|