Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[API] update inventory/part object #54

Open
tiemonl opened this issue Nov 25, 2019 · 0 comments
Open

[API] update inventory/part object #54

tiemonl opened this issue Nov 25, 2019 · 0 comments

Comments

@tiemonl
Copy link
Owner

tiemonl commented Nov 25, 2019

public class Details
{
    public bool isElite { get; set; }
    public string serialNumber { get; set; }
    public int durability { get; set; }
    public int weight { get; set; }
    public int steering { get; set; }
    public string edition { get; set; }
    public string internalType { get; set; }
    public string type { get; set; }
    public int speed { get; set; }
    public string internalId { get; set; }
    public string model { get; set; }
    public int power { get; set; }
    public string brand { get; set; }
    public string rarity { get; set; }
}

public class Part
{
    public string external_url { get; set; }
    public Details details { get; set; }
    public string description { get; set; }
    public string id { get; set; }
    public string image { get; set; }
    public string name { get; set; }
}

public class Inventory
{
    public List<Part> parts { get; set; }
    public int total { get; set; }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant