private PlayerProfileTexturePropertyValue(long? Timestamp, string ProfileId, string ProfileName, bool? SignatureRequired, PlayerTexture Textures)
 {
     
     this.Timestamp = Timestamp;
     
     this.ProfileId = ProfileId;
     
     this.ProfileName = ProfileName;
     
     this.SignatureRequired = SignatureRequired;
     
     this.Textures = Textures;
     
 }
 /// <summary>
 /// Sets value for PlayerProfileTexturePropertyValue.Textures property.
 /// </summary>
 /// <param name="value">Textures</param>
 public PlayerProfileTexturePropertyValueBuilder Textures(PlayerTexture value)
 {
     _Textures = value;
     return this;
 }