InlineCommentChildrenModel.fromJson constructor

InlineCommentChildrenModel.fromJson(
  1. Map<String, Object?> json
)

Implementation

factory InlineCommentChildrenModel.fromJson(Map<String, Object?> json) {
  return InlineCommentChildrenModel(
    id: json[r'id'] as String?,
    status: json[r'status'] as String?,
    title: json[r'title'] as String?,
    parentCommentId: json[r'parentCommentId'] as String?,
    version: json[r'version'] != null
        ? Version.fromJson(json[r'version']! as Map<String, Object?>)
        : null,
    body: json[r'body'] != null
        ? BodyBulk.fromJson(json[r'body']! as Map<String, Object?>)
        : null,
    resolutionStatus: json[r'resolutionStatus'] as String?,
    properties: json[r'properties'] != null
        ? InlineCommentProperties.fromJson(
            json[r'properties']! as Map<String, Object?>)
        : null,
    links: json[r'_links'] != null
        ? CommentLinks.fromJson(json[r'_links']! as Map<String, Object?>)
        : null,
  );
}