示例#1
0
 /// <summary>
 /// Initializes a new instance of the DataExportDetails class.
 /// </summary>
 /// <param name="transferConfiguration">Configuration for the data
 /// transfer.</param>
 /// <param name="accountDetails">Account details of the data to be
 /// transferred</param>
 /// <param name="logCollectionLevel">Level of the logs to be collected.
 /// Possible values include: 'Error', 'Verbose'</param>
 public DataExportDetails(TransferConfiguration transferConfiguration, DataAccountDetails accountDetails, LogCollectionLevel?logCollectionLevel = default(LogCollectionLevel?))
 {
     TransferConfiguration = transferConfiguration;
     LogCollectionLevel    = logCollectionLevel;
     AccountDetails        = accountDetails;
     CustomInit();
 }
示例#2
0
 /// <summary>
 /// Initializes a new instance of the DataImportDetails class.
 /// </summary>
 /// <param name="accountDetails">Account details of the data to be
 /// transferred</param>
 /// <param name="logCollectionLevel">Level of the logs to be collected.
 /// Possible values include: 'Error', 'Verbose'</param>
 public DataImportDetails(DataAccountDetails accountDetails, LogCollectionLevel?logCollectionLevel = default(LogCollectionLevel?))
 {
     AccountDetails     = accountDetails;
     LogCollectionLevel = logCollectionLevel;
     CustomInit();
 }
示例#3
0
 /// <summary>
 /// Initializes a new instance of the DataImportDetails class.
 /// </summary>
 /// <param name="accountDetails">Account details of the data to be
 /// transferred</param>
 public DataImportDetails(DataAccountDetails accountDetails)
 {
     AccountDetails = accountDetails;
     CustomInit();
 }