namespace Bloxstrap.Models.APIs.Roblox { internal class ThumbnailRequest { [JsonPropertyName("requestId")] public string? RequestId { get; set; } [JsonPropertyName("targetId")] public ulong TargetId { get; set; } /// /// TODO: make this an enum /// List of valid types can be found at https://thumbnails.roblox.com//docs/index.html /// [JsonPropertyName("type")] public string Type { get; set; } = "Avatar"; /// /// List of valid sizes can be found at https://thumbnails.roblox.com//docs/index.html /// [JsonPropertyName("size")] public string Size { get; set; } = "30x30"; /// /// TODO: make this an enum /// List of valid types can be found at https://thumbnails.roblox.com//docs/index.html /// [JsonPropertyName("format")] public string Format { get; set; } = "Png"; [JsonPropertyName("isCircular")] public bool IsCircular { get; set; } = true; } }