factory InstantBooking.fromJson(Map<String, dynamic> json) { return InstantBooking( durationInMinutes: json['DurationInMinutes'] as int?, enabled: json['Enabled'] as bool?, ); }