intimacy_reply_analyze_response.g.dart 980 B

1234567891011121314151617181920212223242526272829303132
  1. // GENERATED CODE - DO NOT MODIFY BY HAND
  2. part of 'intimacy_reply_analyze_response.dart';
  3. // **************************************************************************
  4. // JsonSerializableGenerator
  5. // **************************************************************************
  6. IntimacyReplyAnalyzeResponse _$IntimacyReplyAnalyzeResponseFromJson(
  7. Map<String, dynamic> json,
  8. ) => IntimacyReplyAnalyzeResponse(
  9. json['id'] as String?,
  10. json['object'] as String?,
  11. (json['created'] as num?)?.toInt(),
  12. (json['model'] as num?)?.toInt(),
  13. (json['choices'] as List<dynamic>?)
  14. ?.map(
  15. (e) =>
  16. IntimacyReplyAnalyzeChoiceItem.fromJson(e as Map<String, dynamic>),
  17. )
  18. .toList(),
  19. );
  20. Map<String, dynamic> _$IntimacyReplyAnalyzeResponseToJson(
  21. IntimacyReplyAnalyzeResponse instance,
  22. ) => <String, dynamic>{
  23. 'id': instance.id,
  24. 'object': instance.object,
  25. 'created': instance.created,
  26. 'model': instance.model,
  27. 'choices': instance.choices,
  28. };