ToolApprovalResponseContent constructor

ToolApprovalResponseContent({
  1. required String requestId,
  2. required bool approved,
  3. required ToolCallContent toolCall,
  4. String? reason,
  5. Object? rawRepresentation,
  6. AdditionalPropertiesDictionary? additionalProperties,
})

Implementation

ToolApprovalResponseContent({
  required super.requestId,
  required this.approved,
  required this.toolCall,
  this.reason,
  super.rawRepresentation,
  super.additionalProperties,
});