| 1234567891011121314151617181920212223242526272829 |
- // GENERATED CODE - DO NOT MODIFY BY HAND
- part of 'intimacy_chat_analyze_response.dart';
- // **************************************************************************
- // JsonSerializableGenerator
- // **************************************************************************
- IntimacyChatAnalyzeResponse _$IntimacyChatAnalyzeResponseFromJson(
- Map<String, dynamic> json,
- ) => IntimacyChatAnalyzeResponse(
- json['id'] as String?,
- json['object'] as String?,
- (json['created'] as num?)?.toInt(),
- json['model'] as String?,
- (json['choices'] as List<dynamic>?)
- ?.map((e) => AnalyzeChoiceItem.fromJson(e as Map<String, dynamic>))
- .toList(),
- );
- Map<String, dynamic> _$IntimacyChatAnalyzeResponseToJson(
- IntimacyChatAnalyzeResponse instance,
- ) => <String, dynamic>{
- 'id': instance.id,
- 'object': instance.object,
- 'created': instance.created,
- 'model': instance.model,
- 'choices': instance.choices,
- };
|