A response confirming that the event stream is complete.
{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/InvokeWithResponseStreamCompleteEvent", "title": "InvokeWithResponseStreamCompleteEvent", "type": "object", "properties": { "ErrorCode": { "allOf": [ { "$ref": "#/components/schemas/String" }, { "description": "An error code." } ] }, "ErrorDetails": { "allOf": [ { "$ref": "#/components/schemas/String" }, { "description": "The details of any returned error." } ] }, "LogResult": { "allOf": [ { "$ref": "#/components/schemas/String" }, { "description": "The last 4 KB of the execution log, which is base64-encoded." } ] } }, "description": "A response confirming that the event stream is complete." }