EventType.fromJson constructor

EventType.fromJson(
  1. Map json_
)

Implementation

EventType.fromJson(core.Map json_)
    : this(
        createTime: json_['createTime'] as core.String?,
        enrichedEventPayloadSchema:
            json_['enrichedEventPayloadSchema'] as core.String?,
        entityType: json_['entityType'] as core.String?,
        eventPayloadSchema: json_['eventPayloadSchema'] as core.String?,
        eventTypeId: json_['eventTypeId'] as core.String?,
        idPath: json_['idPath'] as core.String?,
        name: json_['name'] as core.String?,
        updateTime: json_['updateTime'] as core.String?,
      );