CodeInterpreterResultFile.fromJson constructor

CodeInterpreterResultFile.fromJson(
  1. Map<String, dynamic> json
)

Implementation

factory CodeInterpreterResultFile.fromJson(Map<String, dynamic> json) => CodeInterpreterResultFile(
      id: json['id'] as String?,
      fileId: json['file_id'] as String?,
      filename: json['filename'] as String?,
    );