Files

24 lines
509 B
C#
Raw Permalink Normal View History

2026-08-12 14:04:55 +03:00
// Code generated by apigen. DO NOT EDIT.
using Newtonsoft.Json;
namespace RudderSdk.Core.Models.Quests;
public class QuestObjectiveProgress
{
[JsonProperty("completed")]
2026-08-29 11:33:01 +03:00
public bool? Completed { get; set; }
2026-08-12 14:04:55 +03:00
[JsonProperty("current")]
2026-08-29 11:33:01 +03:00
public long? Current { get; set; }
2026-08-12 14:04:55 +03:00
[JsonProperty("metric")]
2026-08-29 11:33:01 +03:00
public string? Metric { get; set; }
2026-08-12 14:04:55 +03:00
[JsonProperty("objectiveId")]
2026-08-29 11:33:01 +03:00
public string? ObjectiveId { get; set; }
2026-08-12 14:04:55 +03:00
[JsonProperty("target")]
2026-08-29 11:33:01 +03:00
public long? Target { get; set; }
2026-08-12 14:04:55 +03:00
}