copyWith method 
    
    
    
  Implementation
  CustomContentCreateRequest copyWith(
    {String? type,
    CustomContentCreateRequestStatus? status,
    String? spaceId,
    String? pageId,
    String? blogPostId,
    String? customContentId,
    String? title,
    dynamic body}) {
  return CustomContentCreateRequest(
    type: type ?? this.type,
    status: status ?? this.status,
    spaceId: spaceId ?? this.spaceId,
    pageId: pageId ?? this.pageId,
    blogPostId: blogPostId ?? this.blogPostId,
    customContentId: customContentId ?? this.customContentId,
    title: title ?? this.title,
    body: body ?? this.body,
  );
}