GoogleCloudOsconfigV2PolicyOrchestratorOrchestrationState.fromJson constructor
GoogleCloudOsconfigV2PolicyOrchestratorOrchestrationState.fromJson(
- Map json_
Implementation
GoogleCloudOsconfigV2PolicyOrchestratorOrchestrationState.fromJson(
core.Map json_,
) : this(
currentIterationState:
json_.containsKey('currentIterationState')
? GoogleCloudOsconfigV2PolicyOrchestratorIterationState.fromJson(
json_['currentIterationState']
as core.Map<core.String, core.dynamic>,
)
: null,
previousIterationState:
json_.containsKey('previousIterationState')
? GoogleCloudOsconfigV2PolicyOrchestratorIterationState.fromJson(
json_['previousIterationState']
as core.Map<core.String, core.dynamic>,
)
: null,
);