GoogleAnalyticsAdminV1betaChangeHistoryEvent.fromJson constructor

GoogleAnalyticsAdminV1betaChangeHistoryEvent.fromJson(
  1. Map json_
)

Implementation

GoogleAnalyticsAdminV1betaChangeHistoryEvent.fromJson(core.Map json_)
    : this(
        actorType: json_.containsKey('actorType')
            ? json_['actorType'] as core.String
            : null,
        changeTime: json_.containsKey('changeTime')
            ? json_['changeTime'] as core.String
            : null,
        changes: json_.containsKey('changes')
            ? (json_['changes'] as core.List)
                .map((value) =>
                    GoogleAnalyticsAdminV1betaChangeHistoryChange.fromJson(
                        value as core.Map<core.String, core.dynamic>))
                .toList()
            : null,
        changesFiltered: json_.containsKey('changesFiltered')
            ? json_['changesFiltered'] as core.bool
            : null,
        id: json_.containsKey('id') ? json_['id'] as core.String : null,
        userActorEmail: json_.containsKey('userActorEmail')
            ? json_['userActorEmail'] as core.String
            : null,
      );