Click or drag to resize

QueuedSurveyExport Constructor (Int32, Int32, NullableInt32, Int32, DateTime, Boolean, String, Boolean, SurveyExportType, Int32, NullableDateTime)

Create a new QueuedSurveyExport to be used when loading an existing export from the database

Namespace:  Omada.OE.Solution.OIM.AppLogic.SurveyFeature.Model
Assembly:  Omada.OE.Solution.OIM.AppLogic (in Omada.OE.Solution.OIM.AppLogic.dll) Version: 15.0.0.0
Syntax
C#
public QueuedSurveyExport(
	int id,
	int surveyId,
	Nullable<int> assigneeId,
	int createdBy,
	DateTime createdTime,
	bool adminGrid,
	string sortColumn,
	bool sortDescending,
	SurveyExportType surveyExportType,
	int retryCount,
	Nullable<DateTime> retryTime
)

Parameters

id
Type: SystemInt32
Id of the export
surveyId
Type: SystemInt32
Id of the survey to export data from
assigneeId
Type: SystemNullableInt32
Export data for questions assigned to this user. If assigneeId is null, export data for all users
createdBy
Type: SystemInt32
Id of the user who created the export
createdTime
Type: SystemDateTime
Creation time of the export
adminGrid
Type: SystemBoolean
If true, export data for the admin grid
sortColumn
Type: SystemString
Column to sort by
sortDescending
Type: SystemBoolean
surveyExportType
Type: Omada.OE.Solution.OIM.AppLogic.SurveyFeature.ModelSurveyExportType
retryCount
Type: SystemInt32
Number of times the export has been retried
retryTime
Type: SystemNullableDateTime
Time of the last retry. Null if the export has not been retried
See Also