export interface INVResponse { /** * The command completion code. * @type{number} */ completionCode: number; /** * The command reason code. * @type{number} */ reasonCode: number; /** * The command response . * @type{any} */ apiResponse: any; }