using System; using System.Collections.Generic; namespace PepperDash.Essentials.Devices.Common.VideoCodec { /// /// Represents a CiscoCallHistory /// public class CiscoCallHistory { /// /// Represents a CallbackNumber /// public class CallbackNumber { /// /// Gets or sets the Value /// public string Value { get; set; } } /// /// Represents a DisplayName /// public class DisplayName { /// /// Gets or sets the Value /// public string Value { get; set; } } /// /// Represents a LastOccurrenceStartTime /// public class LastOccurrenceStartTime { /// /// Gets or sets the Value /// public DateTime Value { get; set; } } /// /// Represents a LastOccurrenceDaysAgo /// public class LastOccurrenceDaysAgo { /// /// Gets or sets the Value /// public string Value { get; set; } } /// /// Represents a LastOccurrenceHistoryId /// public class LastOccurrenceHistoryId { /// /// Gets or sets the Value /// public string Value { get; set; } } /// /// Represents a OccurrenceType /// public class OccurrenceType { /// /// Gets or sets the Value /// public string Value { get; set; } } /// /// Represents a IsAcknowledged /// public class IsAcknowledged { /// /// Gets or sets the Value /// public string Value { get; set; } } /// /// Represents a OccurrenceCount /// public class OccurrenceCount { /// /// Gets or sets the Value /// public string Value { get; set; } } /// /// Represents a Entry /// public class Entry { /// /// Gets or sets the id /// public string id { get; set; } /// /// Gets or sets the CallbackNumber /// public CallbackNumber CallbackNumber { get; set; } /// /// Gets or sets the DisplayName /// public DisplayName DisplayName { get; set; } /// /// Gets or sets the LastOccurrenceStartTime /// public LastOccurrenceStartTime LastOccurrenceStartTime { get; set; } /// /// Gets or sets the LastOccurrenceDaysAgo /// public LastOccurrenceDaysAgo LastOccurrenceDaysAgo { get; set; } /// /// Gets or sets the LastOccurrenceHistoryId /// public LastOccurrenceHistoryId LastOccurrenceHistoryId { get; set; } /// /// Gets or sets the OccurrenceType /// public OccurrenceType OccurrenceType { get; set; } /// /// Gets or sets the IsAcknowledged /// public IsAcknowledged IsAcknowledged { get; set; } /// /// Gets or sets the OccurrenceCount /// public OccurrenceCount OccurrenceCount { get; set; } } /// /// Represents a Offset /// public class Offset { /// /// Gets or sets the Value /// public string Value { get; set; } } /// /// Represents a Limit /// public class Limit { /// /// Gets or sets the Value /// public string Value { get; set; } } /// /// Represents a ResultInfo /// public class ResultInfo { /// /// Gets or sets the Offset /// public Offset Offset { get; set; } /// /// Gets or sets the Limit /// public Limit Limit { get; set; } } /// /// Represents a CallHistoryRecentsResult /// public class CallHistoryRecentsResult { /// /// Gets or sets the status /// public string status { get; set; } /// /// Gets or sets the Entry /// public List Entry { get; set; } /// /// Gets or sets the ResultInfo /// public ResultInfo ResultInfo { get; set; } } /// /// Represents a CommandResponse /// public class CommandResponse { /// /// Gets or sets the CallHistoryRecentsResult /// public CallHistoryRecentsResult CallHistoryRecentsResult { get; set; } } /// /// Represents a RootObject /// public class RootObject { /// /// Gets or sets the CommandResponse /// public CommandResponse CommandResponse { get; set; } } } }