UpdatePipelineNotificationsResponse.fromJson constructor

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

Implementation

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