order_first_check_response.g.dart 758 B

1234567891011121314151617181920212223
  1. // GENERATED CODE - DO NOT MODIFY BY HAND
  2. part of 'order_first_check_response.dart';
  3. // **************************************************************************
  4. // JsonSerializableGenerator
  5. // **************************************************************************
  6. OrderFirstCheckResponse _$OrderFirstCheckResponseFromJson(
  7. Map<String, dynamic> json) =>
  8. OrderFirstCheckResponse(
  9. json['showInvite'] as bool,
  10. json['showEvaluate'] as bool,
  11. (json['days'] as num).toInt(),
  12. );
  13. Map<String, dynamic> _$OrderFirstCheckResponseToJson(
  14. OrderFirstCheckResponse instance) =>
  15. <String, dynamic>{
  16. 'showInvite': instance.showInvite,
  17. 'showEvaluate': instance.showEvaluate,
  18. 'days': instance.days,
  19. };