Class: GOBL::Note::Message
- Defined in:
- lib/generated/gobl/note/message.rb
Overview
Message represents a simple message object with a title and some content meant.
Constant Summary collapse
- SCHEMA_ID =
The Schema ID of the GOBL Message structure
'https://gobl.org/draft-0/note/message'
Instance Attribute Summary collapse
-
#content ⇒ String
readonly
Details of what exactly this message wants to communicate.
-
#meta ⇒ GOBL::CBC::Meta
readonly
Any additional semi-structured data that might be useful.
-
#title ⇒ String
readonly
Summary of the message content.
-
#uuid ⇒ String
readonly
Universally Unique Identifier.
Method Summary
Methods inherited from Object
Methods inherited from Struct
#as_json, from_data, from_json!, #to_json
Instance Attribute Details
#content ⇒ String (readonly)
Details of what exactly this message wants to communicate.
28 |
# File 'lib/generated/gobl/note/message.rb', line 28 property :content, String |
#meta ⇒ GOBL::CBC::Meta (readonly)
Any additional semi-structured data that might be useful.
34 |
# File 'lib/generated/gobl/note/message.rb', line 34 property :meta, GOBL::CBC::Meta |
#title ⇒ String (readonly)
Summary of the message content
23 |
# File 'lib/generated/gobl/note/message.rb', line 23 property :title, String |
#uuid ⇒ String (readonly)
Universally Unique Identifier.
18 |
# File 'lib/generated/gobl/note/message.rb', line 18 property :uuid, String |