From 97d84057322942d647de7d642a0a1769f730f79e Mon Sep 17 00:00:00 2001 From: Laurent Date: Mon, 6 Jan 2025 17:00:01 +0100 Subject: [PATCH] Improve sync response --- LeStorage/Services.swift | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/LeStorage/Services.swift b/LeStorage/Services.swift index 88a7a85..41a3fc5 100644 --- a/LeStorage/Services.swift +++ b/LeStorage/Services.swift @@ -741,7 +741,8 @@ struct BatchResponse: Decodable { struct OperationResult: Decodable { var apiCallId: String var status: Int - var data: T + var data: T? + var message: String? } struct ErrorMessage {