InventoryRedeemResponse.fromJson constructor
Implementation
factory InventoryRedeemResponse.fromJson(Map<String, dynamic> json) =>
InventoryRedeemResponse(
results: InventoryRedeemResults.fromJson(json["results"]),
statusCode: json["status_code"],
error: json["error"],
errorDescription: json["error_description"]);