quests: ReportProgressAsync + generated DTOs

This commit is contained in:
edmand46
2026-08-13 12:10:09 +03:00
parent 91c3d46ceb
commit 9d8fb29a7c
3 changed files with 41 additions and 0 deletions
+13
View File
@@ -0,0 +1,13 @@
// Code generated by apigen. DO NOT EDIT.
using Newtonsoft.Json;
using Newtonsoft.Json.Linq;
using System.Collections.Generic;
namespace RudderSdk.Core.Models.Quests;
public class ReportQuestProgressResponse
{
[JsonProperty("completedQuestIds")]
public List<string> CompletedQuestIds { get; set; }
}