GooglePrivacyDlpV2CreateJobTriggerRequest.fromJson constructor
GooglePrivacyDlpV2CreateJobTriggerRequest.fromJson(
- Map json_
Implementation
GooglePrivacyDlpV2CreateJobTriggerRequest.fromJson(core.Map json_)
: this(
jobTrigger: json_.containsKey('jobTrigger')
? GooglePrivacyDlpV2JobTrigger.fromJson(
json_['jobTrigger'] as core.Map<core.String, core.dynamic>)
: null,
locationId: json_.containsKey('locationId')
? json_['locationId'] as core.String
: null,
triggerId: json_.containsKey('triggerId')
? json_['triggerId'] as core.String
: null,
);