public AirBnbPricePushResult(PricePushLogType type, string message, string loginUser, string proxyIp)
 {
     this.Type    = type;
     this.Message = message;
     this.Login   = loginUser;
     this.ProxyIP = proxyIp;
 }
 public AirBnbPricePushResult(PricePushLogType type, string message, string loginUser, string listingId, string listingDate)
 {
     this.Type        = type;
     this.Message     = message;
     this.Login       = loginUser;
     this.ListingId   = listingId;
     this.ListingDate = listingDate;
 }
 public AirBnbPricePushResult(PricePushLogType type, string message, string loginUser, string proxyIp, string propertyName, string listingId, string listingDate)
 {
     this.Type         = type;
     this.Message      = message;
     this.Login        = loginUser;
     this.ProxyIP      = proxyIp;
     this.PropertyName = propertyName;
     this.ListingId    = listingId;
     this.ListingDate  = listingDate;
 }
 public AirBnbPricePushResult(PricePushLogType type, string message)
 {
     this.Type    = type;
     this.Message = message;
 }