chenqinghong
2024-05-07 3ec06a830367465068963156dcc1d8e522571c13
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
Quintiq file version 2.0
#parent: #root
Method DoNotProcessDataFromQI () as owning Strings
{
  Description:
  [*
    Return the IntegratorIDs of the QI-routes of which the response does not contain data that must be transformed into integration objects.
    The responses of these QI-routes typically contain meta-data that must be processed further, e.g. the IDs of objects that must be retrieved.
  *]
  TextBody:
  [*
    integratorIDs := construct( Strings );
    
    /* example
    // The JSON-response of the following IntegratorIDs does not contain data that must be transformed integration objects;
    // instead they contain data that should be processed later on (for example IDs of objects that must be retrieved).
    integratorIDs.Add( LibDII_IntegrationDataset::INTEGRATORID_ImportWithQI_Resources_Search() );
    */
    
    return &integratorIDs;
  *]
}