13 lines
403 B
TypeScript
13 lines
403 B
TypeScript
/* generated using openapi-typescript-codegen -- do not edit */
|
|
/* istanbul ignore file */
|
|
/* tslint:disable */
|
|
/* eslint-disable */
|
|
import type { BillPaymentStatus } from './BillPaymentStatus';
|
|
import type { NotificationChannel } from './NotificationChannel';
|
|
export type BillStatusUpdateRequest = {
|
|
listenerTransactionId: number;
|
|
channel: NotificationChannel;
|
|
info: BillPaymentStatus;
|
|
};
|
|
|