DeregisterPatchBaselineForPatchGroupResult.fromJson constructor

DeregisterPatchBaselineForPatchGroupResult.fromJson(
  1. Map<String, dynamic> json
)

Implementation

factory DeregisterPatchBaselineForPatchGroupResult.fromJson(
    Map<String, dynamic> json) {
  return DeregisterPatchBaselineForPatchGroupResult(
    baselineId: json['BaselineId'] as String?,
    patchGroup: json['PatchGroup'] as String?,
  );
}