namespace Bloxstrap.Models.RobloxApi
{
///
/// Roblox.Games.Api.Models.Response.GameCreator
/// Response model for getting the game creator
///
public class GameCreator
{
///
/// The game creator id
///
[JsonPropertyName("id")]
public long Id { get; set; }
///
/// The game creator name
///
[JsonPropertyName("name")]
public string Name { get; set; } = null!;
///
/// The game creator type
///
[JsonPropertyName("type")]
public string Type { get; set; } = null!;
///
/// The game creator account is Luobu Real Name Verified
///
[JsonPropertyName("isRNVAccount")]
public bool IsRNVAccount { get; set; }
///
/// Builder verified badge status.
///
[JsonPropertyName("hasVerifiedBadge")]
public bool HasVerifiedBadge { get; set; }
}
}