Method: NotionRubyMapping::NumberProperty#format=

Defined in:
lib/notion_ruby_mapping/properties/number_property.rb

#format=(format) ⇒ String

Returns settled format.

Parameters:

  • format (String)

Returns:

  • (String)

    settled format

See Also:



33
34
35
36
37
# File 'lib/notion_ruby_mapping/properties/number_property.rb', line 33

def format=(format)
  assert_database_or_data_source_property __method__
  @will_update = true
  @json["format"] = format
end