UpdateRevisionResponse.fromJson constructor

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

Implementation

factory UpdateRevisionResponse.fromJson(Map<String, dynamic> json) {
  return UpdateRevisionResponse(
    arn: json['Arn'] as String?,
    comment: json['Comment'] as String?,
    createdAt: timeStampFromJson(json['CreatedAt']),
    dataSetId: json['DataSetId'] as String?,
    finalized: json['Finalized'] as bool?,
    id: json['Id'] as String?,
    sourceId: json['SourceId'] as String?,
    updatedAt: timeStampFromJson(json['UpdatedAt']),
  );
}