Files
rudder-csharp-sdk/Quests/Quest.cs
T

26 lines
573 B
C#
Raw Normal View History

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("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("slug")]
public string? Slug { 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
}