Skip to content

Commit

Permalink
Added xml doc to request messages
Browse files Browse the repository at this point in the history
  • Loading branch information
SimonV-Skyline committed Jul 6, 2023
1 parent 929c60a commit cc11e0b
Show file tree
Hide file tree
Showing 6 changed files with 54 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@

using Skyline.DataMiner.Core.InterAppCalls.Common.CallSingle;

/// <summary>
/// Inter-App Message allowing to add new entries to the Ethernet Thresholds table.
/// </summary>
public class CreateEthThreshold : Message
{
public EthThresholdData ThresholdData { get; set; }
Expand All @@ -24,6 +27,9 @@ public class CreateEthThresholdResult : Message
public string ThresholdID { get; set; }
}

/// <summary>
/// Inter-App Message allowing to edit existing entries from the Ethernet Thresholds table.
/// </summary>
public class EditEthThreshold : Message
{
public string ThresholdToUpdateName { get; set; }
Expand All @@ -46,6 +52,9 @@ public class EditEthThresholdResult : Message
public string ThresholdId { get; set; }
}

/// <summary>
/// Inter-App Message allowing to delete existing entries from the Ethernet Thresholds table.
/// </summary>
public class DeleteEthThresholds : Message
{
public IEnumerable<string> ThresholdToDeleteNames { get; set; }
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@

using Skyline.DataMiner.Core.InterAppCalls.Common.CallSingle;

/// <summary>
/// Inter-App Message allowing to add new entries to the ETR Thresholds table.
/// </summary>
public class CreateEtrThreshold : Message
{
public EtrThresholdData ThresholdData { get; set; }
Expand All @@ -24,6 +27,9 @@ public class CreateEtrThresholdResult : Message
public string ThresholdID { get; set; }
}

/// <summary>
/// Inter-App Message allowing to edit existing entries from the ETR Thresholds table.
/// </summary>
public class EditEtrThreshold : Message
{
public string ThresholdToUpdateName { get; set; }
Expand All @@ -46,6 +52,9 @@ public class EditEtrThresholdResult : Message
public string ThresholdId { get; set; }
}

/// <summary>
/// Inter-App Message allowing to delete existing entries from the ETR Thresholds table.
/// </summary>
public class DeleteEtrThresholds : Message
{
public IEnumerable<string> ThresholdToDeleteNames { get; set; }
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@

using Skyline.DataMiner.Core.InterAppCalls.Common.CallSingle;

/// <summary>
/// Inter-App Message allowing to add new entries to the PID Thresholds table.
/// </summary>
public class CreatePidThreshold : Message
{
public PidThresholdData ThresholdData { get; set; }
Expand All @@ -24,6 +27,9 @@ public class CreatePidThresholdResult : Message
public string ThresholdID { get; set; }
}

/// <summary>
/// Inter-App Message allowing to edit existing entries from the PID Thresholds table.
/// </summary>
public class EditPidThreshold : Message
{
public string ThresholdToUpdateName { get; set; }
Expand All @@ -46,6 +52,9 @@ public class EditPidThresholdResult : Message
public string ThresholdId { get; set; }
}

/// <summary>
/// Inter-App Message allowing to delete existing entries from the PID Thresholds table.
/// </summary>
public class DeletePidThresholds : Message
{
public IEnumerable<string> ThresholdToDeleteNames { get; set; }
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@

using Skyline.DataMiner.Core.InterAppCalls.Common.CallSingle;

/// <summary>
/// Inter-App Message allowing to add new entries to the PID Threshold Presets table.
/// </summary>
public class CreatePidThresholdPreset : Message
{
public string ThresholdName { get; set; }
Expand All @@ -27,6 +30,9 @@ public class CreatePidThresholdPresetResult : Message
////public string ThresholdID { get; set; }
}

/// <summary>
/// Inter-App Message allowing to edit existing entries from the PID Threshold Presets table.
/// </summary>
public class EditPidThresholdPreset : Message
{
/// <summary>
Expand Down Expand Up @@ -74,6 +80,9 @@ public class EditPidThresholdPresetResult : Message
public string ThresholdPresetKey { get; set; }
}

/// <summary>
/// Inter-App Message allowing to delete existing entries from the PID Threshold Presets table.
/// </summary>
public class DeletePidThresholdPreset : Message
{
/// <summary>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@

using Skyline.DataMiner.Core.InterAppCalls.Common.CallSingle;

/// <summary>
/// Inter-App Message allowing to add new entries to the Ethernet Available Streams table.
/// </summary>
public class CreateEthStream : Message
{
public EthStreamData StreamData { get; set; }
Expand All @@ -26,6 +29,9 @@ public class CreateEthStreamResult : Message
public int StreamID { get; set; }
}

/// <summary>
/// Inter-App Message allowing to edit existing entries from the Ethernet Available Streams table.
/// </summary>
public class EditEthStream : Message
{
public string Key { get; set; }
Expand All @@ -48,6 +54,9 @@ public class EditEthStreamResult : Message
public string StreamKey { get; set; }
}

/// <summary>
/// Inter-App Message allowing to delete existing entries from the Ethernet Available Streams table.
/// </summary>
public class DeleteEthStreams : Message
{
public string[] StreamKeys { get; set; }
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@

using Skyline.DataMiner.Core.InterAppCalls.Common.CallSingle;

/// <summary>
/// Inter-App Message allowing to add new entries to the OTT Available Channels table.
/// </summary>
public class CreateOttChannel : Message
{
public OttChannelData ChannelData { get; set; }
Expand All @@ -24,6 +27,9 @@ public class CreateOttChannelResult : Message
public string ChannelId { get; set; }
}

/// <summary>
/// Inter-App Message allowing to edit existing entries from the OTT Available Channels table.
/// </summary>
public class EditOttChannel : Message
{
public string ChannelId { get; set; }
Expand All @@ -46,6 +52,9 @@ public class EditOttChannelResult : Message
public string ChannelId { get; set; }
}

/// <summary>
/// Inter-App Message allowing to delete existing entries from the OTT Available Channels table.
/// </summary>
public class DeleteOttChannels : Message
{
public string[] ChannelIds { get; set; }
Expand Down

0 comments on commit cc11e0b

Please sign in to comment.