/// <summary>
 /// Initializes a new instance of the <see cref="LolCollectionsCollectionsSummonerIcon" /> class.
 /// </summary>
 /// <param name="IconId">IconId.</param>
 /// <param name="Ownership">Ownership.</param>
 public LolCollectionsCollectionsSummonerIcon(int?IconId = default(int?), LolCollectionsCollectionsOwnership Ownership = default(LolCollectionsCollectionsOwnership))
 {
     this.IconId    = IconId;
     this.Ownership = Ownership;
 }
 /// <summary>
 /// Initializes a new instance of the <see cref="LolCollectionsCollectionsWardSkin" /> class.
 /// </summary>
 /// <param name="Description">Description.</param>
 /// <param name="Id">Id.</param>
 /// <param name="Name">Name.</param>
 /// <param name="Ownership">Ownership.</param>
 /// <param name="WardImagePath">WardImagePath.</param>
 /// <param name="WardShadowImagePath">WardShadowImagePath.</param>
 public LolCollectionsCollectionsWardSkin(string Description = default(string), long?Id = default(long?), string Name = default(string), LolCollectionsCollectionsOwnership Ownership = default(LolCollectionsCollectionsOwnership), string WardImagePath = default(string), string WardShadowImagePath = default(string))
 {
     this.Description         = Description;
     this.Id                  = Id;
     this.Name                = Name;
     this.Ownership           = Ownership;
     this.WardImagePath       = WardImagePath;
     this.WardShadowImagePath = WardShadowImagePath;
 }