ListPipelinesOutput.fromJson constructor
Implementation
factory ListPipelinesOutput.fromJson(Map<String, dynamic> json) {
return ListPipelinesOutput(
pipelineIdList: (json['pipelineIdList'] as List)
.whereNotNull()
.map((e) => PipelineIdName.fromJson(e as Map<String, dynamic>))
.toList(),
hasMoreResults: json['hasMoreResults'] as bool?,
marker: json['marker'] as String?,
);
}