GoogleAnalyticsAdminV1betaSearchChangeHistoryEventsRequest.fromJson constructor

GoogleAnalyticsAdminV1betaSearchChangeHistoryEventsRequest.fromJson(
  1. Map json_
)

Implementation

GoogleAnalyticsAdminV1betaSearchChangeHistoryEventsRequest.fromJson(
    core.Map json_)
    : this(
        action: json_.containsKey('action')
            ? (json_['action'] as core.List)
                .map((value) => value as core.String)
                .toList()
            : null,
        actorEmail: json_.containsKey('actorEmail')
            ? (json_['actorEmail'] as core.List)
                .map((value) => value as core.String)
                .toList()
            : null,
        earliestChangeTime: json_.containsKey('earliestChangeTime')
            ? json_['earliestChangeTime'] as core.String
            : null,
        latestChangeTime: json_.containsKey('latestChangeTime')
            ? json_['latestChangeTime'] as core.String
            : null,
        pageSize: json_.containsKey('pageSize')
            ? json_['pageSize'] as core.int
            : null,
        pageToken: json_.containsKey('pageToken')
            ? json_['pageToken'] as core.String
            : null,
        property: json_.containsKey('property')
            ? json_['property'] as core.String
            : null,
        resourceType: json_.containsKey('resourceType')
            ? (json_['resourceType'] as core.List)
                .map((value) => value as core.String)
                .toList()
            : null,
      );