GoogleAnalyticsAdminV1betaChangeHistoryChange.fromJson constructor
GoogleAnalyticsAdminV1betaChangeHistoryChange.fromJson(
- Map json_
Implementation
GoogleAnalyticsAdminV1betaChangeHistoryChange.fromJson(core.Map json_)
: this(
action: json_.containsKey('action')
? json_['action'] as core.String
: null,
resource: json_.containsKey('resource')
? json_['resource'] as core.String
: null,
resourceAfterChange: json_.containsKey('resourceAfterChange')
? GoogleAnalyticsAdminV1betaChangeHistoryChangeChangeHistoryResource
.fromJson(json_['resourceAfterChange']
as core.Map<core.String, core.dynamic>)
: null,
resourceBeforeChange: json_.containsKey('resourceBeforeChange')
? GoogleAnalyticsAdminV1betaChangeHistoryChangeChangeHistoryResource
.fromJson(json_['resourceBeforeChange']
as core.Map<core.String, core.dynamic>)
: null,
);