DescribeObjectsOutput.fromJson constructor

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

Implementation

factory DescribeObjectsOutput.fromJson(Map<String, dynamic> json) {
  return DescribeObjectsOutput(
    pipelineObjects: (json['pipelineObjects'] as List)
        .whereNotNull()
        .map((e) => PipelineObject.fromJson(e as Map<String, dynamic>))
        .toList(),
    hasMoreResults: json['hasMoreResults'] as bool?,
    marker: json['marker'] as String?,
  );
}