UNPKG

@magic.batua/utility

Version:

The Utility module manages all the utility bills functionalities of the Magic Batua platform.

16 lines (15 loc) 446 B
/** * @module StatusResponse * @overview Defines the interface for the response returned by * check payment status API. * * @author Animesh Mishra <hello@animesh.ltd> * @copyright © Animesh Ltd. All Rights Reserved. */ /** Response returned by check payment status API. */ export interface StatusResponse { operatorReference: string, vendorReference: string, status: string, date: string }