GoogleCloudIntegrationsV1alphaAssertion.fromJson constructor
GoogleCloudIntegrationsV1alphaAssertion.fromJson(
- Map json_
Implementation
GoogleCloudIntegrationsV1alphaAssertion.fromJson(core.Map json_)
: this(
assertionStrategy: json_['assertionStrategy'] as core.String?,
condition: json_['condition'] as core.String?,
parameter: json_.containsKey('parameter')
? GoogleCloudIntegrationsV1alphaEventParameter.fromJson(
json_['parameter'] as core.Map<core.String, core.dynamic>)
: null,
retryCount: json_['retryCount'] as core.int?,
);