ConfluenceAttachmentToIndexFieldMapping.fromJson constructor
Implementation
factory ConfluenceAttachmentToIndexFieldMapping.fromJson(
Map<String, dynamic> json) {
return ConfluenceAttachmentToIndexFieldMapping(
dataSourceFieldName: (json['DataSourceFieldName'] as String?)
?.toConfluenceAttachmentFieldName(),
dateFieldFormat: json['DateFieldFormat'] as String?,
indexFieldName: json['IndexFieldName'] as String?,
);
}