RecommendSpecRequest.fromJson constructor
Implementation
factory RecommendSpecRequest.fromJson(Map<String, dynamic> json) {
return RecommendSpecRequest(
parent: json['parent'] ?? '',
gcsUri: json['gcsUri'] ?? '',
checkMachineAvailability: json['checkMachineAvailability'] ?? false,
checkUserQuota: json['checkUserQuota'] ?? false,
);
}