Files

23 lines
506 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;
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 ClaimQuestResponse
{
[JsonProperty("alreadyClaimed")]
2026-08-29 11:33:01 +03:00
public bool? AlreadyClaimed { get; set; }
2026-08-12 14:04:55 +03:00
[JsonProperty("error")]
2026-08-29 11:33:01 +03:00
public string? Error { get; set; }
2026-08-12 14:04:55 +03:00
[JsonProperty("granted")]
2026-08-29 11:33:01 +03:00
public List<Reward>? Granted { get; set; }
2026-08-12 14:04:55 +03:00
[JsonProperty("success")]
2026-08-29 11:33:01 +03:00
public bool? Success { get; set; }
2026-08-12 14:04:55 +03:00
}