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