RealtimeResponseFunctionCallArgumentsDoneEvent.fromJson constructor

RealtimeResponseFunctionCallArgumentsDoneEvent.fromJson(
  1. Map<String, dynamic> j
)

Implementation

factory RealtimeResponseFunctionCallArgumentsDoneEvent.fromJson(Map<String, dynamic> j) => RealtimeResponseFunctionCallArgumentsDoneEvent(
      eventId: j['event_id'] as String,
      responseId: j['response_id'] as String,
      itemId: j['item_id'] as String,
      outputIndex: j['output_index'] as int,
      callId: j['call_id'] as String,
      argumentsJson: j['arguments'] as String,
    );