Skip to content

Commit

Permalink
fix: Fix for properties field as List + parameter additions
Browse files Browse the repository at this point in the history
  • Loading branch information
saszer committed Sep 1, 2022
1 parent 3cbaf12 commit dfad5be
Showing 1 changed file with 14 additions and 1 deletion.
15 changes: 14 additions & 1 deletion Runtime/models/NFTs_model.cs
Original file line number Diff line number Diff line change
Expand Up @@ -63,10 +63,22 @@ public class Metadata
public string animation_url;
public string dna;
public string id;
public Properties properties;
public List<Properties> properties = new List<Properties>();
public int seller_fee_basis_points;
public string symbol;
public Collection collection;
public string thumbnail_url;
public string cached_thumbnail_url;
public string banner_url;
public string cached_banner_url;
public string external_link ;
public string destination_url ;
public string first_name ;
public string image_card ;
public string image_transparent ;
public string last_name ;
public string short_name ;
public int? tokenId ;
}

[Serializable]
Expand Down Expand Up @@ -146,5 +158,6 @@ public class Contract
public string name;
public string symbol;
public string type;
public Metadata metadata;
}
}

0 comments on commit dfad5be

Please sign in to comment.