StockReconciliationModel constructor
StockReconciliationModel({
- StockReconciliationAdditionalFields? additionalFields,
- String? id,
- String? tenantId,
- String? facilityId,
- String? productVariantId,
- String? referenceId,
- String? referenceIdType,
- int? physicalCount,
- int? calculatedCount,
- String? commentsOnReconciliation,
- bool? nonRecoverableError = false,
- required String clientReferenceId,
- int? rowVersion,
- required int dateOfReconciliation,
- AuditDetails? auditDetails,
- ClientAuditDetails? clientAuditDetails,
- bool? isDeleted = false,
Implementation
StockReconciliationModel({
this.additionalFields,
this.id,
this.tenantId,
this.facilityId,
this.productVariantId,
this.referenceId,
this.referenceIdType,
this.physicalCount,
this.calculatedCount,
this.commentsOnReconciliation,
this.nonRecoverableError = false,
required this.clientReferenceId,
this.rowVersion,
required int dateOfReconciliation,
super.auditDetails,
super.clientAuditDetails,
super.isDeleted = false,
}) : dateOfReconciliationTime =
DateTime.fromMillisecondsSinceEpoch(dateOfReconciliation),
super();