update method

dynamic update(
  1. Plurk plurk
)

Implementation

update(Plurk plurk) {
  this.ownerId = plurk.ownerId;
  this.plurkId = plurk.plurkId;
  this.userId = plurk.userId;
  this.posted = plurk.posted;
  // this.replurkerId = plurk.replurkerId;
  this.qualifier = plurk.qualifier;
  this.content = plurk.content;
  this.contentRaw = plurk.contentRaw;
  this.lang = plurk.lang;
  this.responseCount = plurk.responseCount;
  this.responsesSeen = plurk.responsesSeen;
  this.limitedTo = plurk.limitedTo;
  this.excluded = plurk.excluded;
  this.noComments = plurk.noComments;
  this.plurkType = plurk.plurkType;
  this.isUnread = plurk.isUnread;
  this.lastEdited = plurk.lastEdited;
  this.porn = plurk.porn;
  this.publishToFollowers = plurk.publishToFollowers;
  this.coins = plurk.coins;
  this.hasGift = plurk.hasGift;
  this.favorers = plurk.favorers;
  this.favoriteCount = plurk.favoriteCount;
  this.replurked = plurk.replurked;
  this.replurkers = plurk.replurkers;
  this.replurkersCount = plurk.replurkersCount;
  this.replurkable = plurk.replurkable;
  this.anonymous = plurk.anonymous;
  this.responded = plurk.responded;
  this.mentioned = plurk.mentioned;
  this.favorite = plurk.favorite;
  this.bookmark = plurk.bookmark;
  this.qualifierTranslated = plurk.qualifierTranslated;
}