#region Namespaces
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
#endregion
namespace VECV_WebApi.Models.EscalationMatrix
{
#region Model Classes
///
/// Class contains Escalation Matrix status and details
///
public class EscalationMatrixModel : EscalationMatrix
{
///
/// Get or Set Token
///
public string Token { get; set; }
///
/// Get or Set Message
///
public string Message { get; set; }
///
/// Get or Set Status
///
public string Status { get; set; }
///
/// Get or Set Action(what operation want to perform)
///
public string Action { get; set; }
///
/// Get or set Limit
///
public int? Limit { get; set; }
///
/// Get or set OffSet
///
public int? OffSet { get; set; }
///
/// Get or set
///
public Int64? TicketCount { get; set; }
///
/// Get or set
///
public string Condition { get; set; }
///
/// Get or Set List of Escalation Matrix
///
public List EscalationMatrixList { get; set; }
public string editEscalationAll
{
get;
set;
}
}
///
/// Class contains Escalation Matrix details
///
public class EscalationMatrix
{
///
/// Get or Set Id
///
public int? id { get; set; }
///
/// Get or Set Manager Name
///
public string manager_name { get; set; }
///
/// Get or Set Region Name
///
public string region_name { get; set; }
///
/// Get or Set Organization Id
///
public int? organization_id { get; set; }
///
/// Get or Set City
///
public string city { get; set; }
///
/// Get or Set State
///
public string state { get; set; }
///
/// Get or Set DealerId
///
public string dealer_name_id { get; set; }
///
/// Get or Set Dealer Name
///
public string dealer_name { get; set; }
///
/// Get or Set Manager Level
///
public string manager_level { get; set; }
///
/// Get or Set Blind Spot
///
public string blind_spot { get; set; }
///
/// Get or Set Emails
///
public string emails { get; set; }
///
/// Get or Set Phones
///
public string phones { get; set; }
///
/// Get or Set Van Type
///
public string van_type { get; set; }
///
/// Get or Set Alarm Age
///
public int? alarm_age { get; set; }
///
/// Get or Set Notification Type
///
public string notification_type { get; set; }
///
/// Get or Set Alarm Age Sla Not Met(in min)
///
public int? alarm_age_sla_not_met { get; set; }
///
/// Get or Set Alarm Age Ticket Not Closed(in min)
///
public int? alarm_age_ticket_not_closed { get; set; }
///
/// Get or Set Alarm Age Van Not Live(in min)
///
public int? alarm_age_van_not_live { get; set; }
///
/// Get or Set Organization Name
///
public string organization_name { get; set; }
///
/// Get or Set Alarm Age Van Not Live(in min)
///
public int? alarm_age_eicher_promise_48hrs { get; set; }
}
public class EscalationPhoneNumber
{
public string Token { get; set; }
public string OLdContactNumber { get; set; }
public string NewContactNumber { get; set; }
public string NewManagerName { get; set; }
}
#endregion
}