2026-08-12 14:04:55 +03:00
|
|
|
// Code generated by apigen. DO NOT EDIT.
|
|
|
|
|
using Newtonsoft.Json;
|
|
|
|
|
using System.Collections.Generic;
|
2026-08-29 11:33:01 +03:00
|
|
|
using RudderSdk.Core.Models;
|
2026-08-12 14:04:55 +03:00
|
|
|
|
|
|
|
|
namespace RudderSdk.Core.Models.Quests;
|
|
|
|
|
|
|
|
|
|
public class Quest
|
|
|
|
|
{
|
|
|
|
|
[JsonProperty("id")]
|
2026-08-29 11:33:01 +03:00
|
|
|
public string? Id { get; set; }
|
2026-08-12 14:04:55 +03:00
|
|
|
|
|
|
|
|
[JsonProperty("name")]
|
2026-08-29 11:33:01 +03:00
|
|
|
public string? Name { get; set; }
|
2026-08-12 14:04:55 +03:00
|
|
|
|
|
|
|
|
[JsonProperty("objectives")]
|
2026-08-29 11:33:01 +03:00
|
|
|
public List<QuestObjectiveProgress>? Objectives { get; set; }
|
2026-08-12 14:04:55 +03:00
|
|
|
|
|
|
|
|
[JsonProperty("rewards")]
|
2026-08-29 11:33:01 +03:00
|
|
|
public List<Reward>? Rewards { get; set; }
|
2026-08-12 14:04:55 +03:00
|
|
|
|
|
|
|
|
[JsonProperty("status")]
|
2026-08-29 11:33:01 +03:00
|
|
|
public string? Status { get; set; }
|
2026-08-12 14:04:55 +03:00
|
|
|
|
|
|
|
|
}
|