/** * @module StatusResponse * @overview Defines the interface for the response returned by the * `MobileRecharge.CheckStatus()` method. * * @author Animesh Mishra * @copyright © Animesh Ltd. All Rights Reserved. */ /** Response returned by the `MobileRecharge.CheckStatus()` method. */ export interface StatusResponse { operatorReference: string, vendorReference: string, status: string, date: Date }