class CheckOutResponse { int? error; int? sessionExists; CheckOutResponse({this.error, this.sessionExists}); CheckOutResponse.fromJson(Map json) { error = json['error']; sessionExists = json['session_exists']; } Map toJson() { final Map data = {}; data['error'] = error; data['session_exists'] = sessionExists; return data; } }