-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathInterface.cs
22 lines (17 loc) · 1.01 KB
/
Interface.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
using System;
using System.Collections;
using System.Data;
using OutSystems.HubEdition.RuntimePlatform;
namespace OutSystems.NssTrackChanges {
public interface IssTrackChanges {
/// <summary>
/// . Obtains the difference between two JSON objects, either an Entity or a Structure. .
/// </summary>
/// <param name="ssOriginalObject">. Object in its original state (no change). .</param>
/// <param name="ssModifiedObject">. Object in its modified state (with change). .</param>
/// <param name="ssIgnoreItems">. List of items / attributes to be ignored by the comparison. .</param>
/// <param name="ssResultProcessing">. Object containing attributes that have different values between the Original and Modified states or when there is an error, it returns true and the error message.
/// </param>
void MssGetDiff(string ssOriginalObject, string ssModifiedObject, RLIgnoreItemRecordList ssIgnoreItems, out RCObjectChangedErrorRecord ssResultProcessing);
} // IssTrackChanges
} // OutSystems.NssTrackChanges