-
- All Implemented Interfaces:
-
notion.api.v1.model.blocks.Block
,notion.api.v1.model.common.WithObjectType
public class ParagraphBlock implements Block
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description public class
ParagraphBlock.Element
-
Field Summary
Fields Modifier and Type Field Description private final ObjectType
objectType
private BlockType
type
private String
id
private String
createdTime
private String
lastEditedTime
private Boolean
hasChildren
private Boolean
archived
private final ParagraphBlock.Element
paragraph
-
Constructor Summary
-
Method Summary
Modifier and Type Method Description ObjectType
getObjectType()
BlockType
getType()
Unit
setType(BlockType type)
String
getId()
Unit
setId(String id)
String
getCreatedTime()
Unit
setCreatedTime(String createdTime)
String
getLastEditedTime()
Unit
setLastEditedTime(String lastEditedTime)
Boolean
getHasChildren()
Unit
setHasChildren(Boolean hasChildren)
Boolean
getArchived()
Unit
setArchived(Boolean archived)
final ParagraphBlock.Element
getParagraph()
-
Methods inherited from class notion.api.v1.model.blocks.ParagraphBlock
asBookmark, asBreadcrumb, asBulletedListItem, asCallout, asChildDatabase, asChildPage, asCode, asColumn, asColumnList, asDivider, asEmbed, asEquation, asFile, asHeadingOne, asHeadingThree, asHeadingTwo, asImage, asLinkPreview, asLinkToPage, asNumberedListItem, asPDF, asParagraph, asQuote, asSyncedBlock, asTable, asTableOfContents, asTableRow, asTemplate, asToDo, asToggle, asUnsupported, asVideo
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
-
Constructor Detail
-
ParagraphBlock
ParagraphBlock(ParagraphBlock.Element paragraph, String id, Boolean hasChildren, String createdTime, String lastEditedTime)
-
ParagraphBlock
ParagraphBlock(ObjectType objectType, BlockType type, String id, String createdTime, String lastEditedTime, Boolean hasChildren, Boolean archived, ParagraphBlock.Element paragraph)
-
ParagraphBlock
ParagraphBlock(ObjectType objectType, BlockType type, String id, String createdTime, String lastEditedTime, Boolean hasChildren, ParagraphBlock.Element paragraph)
-
ParagraphBlock
ParagraphBlock(ObjectType objectType, BlockType type, String id, String createdTime, String lastEditedTime, ParagraphBlock.Element paragraph)
-
ParagraphBlock
ParagraphBlock(ObjectType objectType, BlockType type, String id, String createdTime, ParagraphBlock.Element paragraph)
-
ParagraphBlock
ParagraphBlock(ObjectType objectType, BlockType type, String id, ParagraphBlock.Element paragraph)
-
ParagraphBlock
ParagraphBlock(ObjectType objectType, BlockType type, ParagraphBlock.Element paragraph)
-
ParagraphBlock
ParagraphBlock(ObjectType objectType, ParagraphBlock.Element paragraph)
-
ParagraphBlock
ParagraphBlock(ParagraphBlock.Element paragraph)
-
-
Method Detail
-
getObjectType
ObjectType getObjectType()
-
getCreatedTime
String getCreatedTime()
-
setCreatedTime
Unit setCreatedTime(String createdTime)
-
getLastEditedTime
String getLastEditedTime()
-
setLastEditedTime
Unit setLastEditedTime(String lastEditedTime)
-
getHasChildren
Boolean getHasChildren()
-
setHasChildren
Unit setHasChildren(Boolean hasChildren)
-
getArchived
Boolean getArchived()
-
setArchived
Unit setArchived(Boolean archived)
-
getParagraph
final ParagraphBlock.Element getParagraph()
-
-
-
-