CustomContentSingle.fromJson constructor
Implementation
factory CustomContentSingle.fromJson(Map<String, Object?> json) {
return CustomContentSingle(
id: json[r'id'],
type: json[r'type'] as String?,
status: json[r'status'] as String?,
title: json[r'title'] as String?,
spaceId: json[r'spaceId'],
pageId: json[r'pageId'],
blogPostId: json[r'blogPostId'],
customContentId: json[r'customContentId'],
authorId: json[r'authorId'] as String?,
createdAt: DateTime.tryParse(json[r'createdAt'] as String? ?? ''),
version: json[r'version'] != null
? Version.fromJson(json[r'version']! as Map<String, Object?>)
: null,
body: json[r'body'] != null
? CustomContentBodySingle.fromJson(
json[r'body']! as Map<String, Object?>)
: null,
links: json[r'_links'] != null
? CustomContentLinks.fromJson(
json[r'_links']! as Map<String, Object?>)
: null,
);
}