using System.Text.Json.Serialization; using SPTarkov.Server.Core.Models.Common; using SPTarkov.Server.Core.Models.Eft.Inventory; namespace SPTarkov.Server.Core.Models.Eft.Quests; public record CompleteQuestRequestData : InventoryBaseActionRequestData { /// /// Quest Id /// [JsonPropertyName("qid")] public MongoId QuestId { get; set; } [JsonPropertyName("removeExcessItems")] public bool? RemoveExcessItems { get; set; } /// /// This is only set if the quest is repeatable /// [JsonPropertyName("type")] public string? Type { get; set; } }