Class: NotionRubyMapping::ToDoBlock
- Inherits:
-
TextSubBlockColorBaseBlock
- Object
- Base
- Block
- TextSubBlockColorBaseBlock
- NotionRubyMapping::ToDoBlock
- Defined in:
- lib/notion_ruby_mapping/blocks/to_do_block.rb
Overview
Notion block
Instance Attribute Summary collapse
Attributes inherited from TextSubBlockColorBaseBlock
Attributes inherited from Block
#can_append, #can_have_children, #caption, #color, #language, #rich_text_array, #url
Attributes inherited from Base
#archived, #has_children, #id, #json
Instance Method Summary collapse
-
#block_json(not_update: true) ⇒ Hash{String (frozen)->Hash
].
-
#initialize(text_info = nil, checked = false, sub_blocks: nil, color: "default", json: nil, id: nil, parent: nil) ⇒ ToDoBlock
constructor
A new instance of ToDoBlock.
- #type ⇒ String (frozen)
Methods inherited from Block
#append_after, #children_block_json, decode_block, #decode_block_caption, #decode_block_rich_text_array, #decode_color, #destroy, find, type2class, #update, #update_block_json
Methods inherited from Base
#append_block_children, #assert_parent_children_pair, #assign_property, #block?, block_id, #children, #comments, #cover, create_from_json, #created_time, #database?, database_id, dry_run_script, #get, #icon, #inspect, #json_properties, #last_edited_time, #new_record?, #page?, page_id, #parent, #parent_id, #properties, #property_values_json, #reload, #restore_from_json, #save, #set_cover, #set_icon, #synced_block_original?, #update_json
Constructor Details
#initialize(text_info = nil, checked = false, sub_blocks: nil, color: "default", json: nil, id: nil, parent: nil) ⇒ ToDoBlock
Returns a new instance of ToDoBlock.
10 11 12 13 14 15 16 17 |
# File 'lib/notion_ruby_mapping/blocks/to_do_block.rb', line 10 def initialize(text_info = nil, checked = false, sub_blocks: nil, color: "default", json: nil, id: nil, parent: nil) super(text_info, sub_blocks: sub_blocks, color: color, json: json, id: id, parent: parent) @checked = if @json @json[type]["checked"] else checked end end |
Instance Attribute Details
#checked ⇒ Object
20 21 22 |
# File 'lib/notion_ruby_mapping/blocks/to_do_block.rb', line 20 def checked @checked end |
Instance Method Details
#block_json(not_update: true) ⇒ Hash{String (frozen)->Hash
Returns ].
24 25 26 27 28 |
# File 'lib/notion_ruby_mapping/blocks/to_do_block.rb', line 24 def block_json(not_update: true) ans = super ans[type]["checked"] = @checked ans end |
#type ⇒ String (frozen)
38 39 40 |
# File 'lib/notion_ruby_mapping/blocks/to_do_block.rb', line 38 def type "to_do" end |