EventMetadata constructor

EventMetadata({
  1. int? id,
  2. EventMetadataEventTypeEnum? eventType,
  3. String? representationType,
  4. String? objectType,
  5. EventMetadataObjectTypeMappedEnum? objectTypeMapped,
  6. int? objectId,
  7. int? objectVersion,
  8. String? otherObjectType,
  9. EventMetadataOtherObjectTypeMappedEnum? otherObjectTypeMapped,
  10. int? otherObjectId,
  11. String? context,
  12. String? subjectName,
  13. DateTime? created,
  14. DateTime? received,
  15. DateTime? effectiveDateTime,
})

Returns a new EventMetadata instance.

Implementation

EventMetadata({
  this.id,
  this.eventType,
  this.representationType,
  this.objectType,
  this.objectTypeMapped,
  this.objectId,
  this.objectVersion,
  this.otherObjectType,
  this.otherObjectTypeMapped,
  this.otherObjectId,
  this.context,
  this.subjectName,
  this.created,
  this.received,
  this.effectiveDateTime,
});