RegisterPatchBaselineForPatchGroupResult.fromJson constructor

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

Implementation

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