UpdatePipelineNotificationsResponse.fromJson constructor
Implementation
factory UpdatePipelineNotificationsResponse.fromJson(
Map<String, dynamic> json) {
return UpdatePipelineNotificationsResponse(
pipeline: json['Pipeline'] != null
? Pipeline.fromJson(json['Pipeline'] as Map<String, dynamic>)
: null,
);
}