toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final createTime = this.createTime;
final enrichedEventPayloadSchema = this.enrichedEventPayloadSchema;
final entityType = this.entityType;
final eventPayloadSchema = this.eventPayloadSchema;
final eventTypeId = this.eventTypeId;
final idPath = this.idPath;
final name = this.name;
final updateTime = this.updateTime;
return {
'createTime': ?createTime,
'enrichedEventPayloadSchema': ?enrichedEventPayloadSchema,
'entityType': ?entityType,
'eventPayloadSchema': ?eventPayloadSchema,
'eventTypeId': ?eventTypeId,
'idPath': ?idPath,
'name': ?name,
'updateTime': ?updateTime,
};
}