Class: LockstepSdk::NoteModel
- Inherits:
-
Object
- Object
- LockstepSdk::NoteModel
- Defined in:
- lib/lockstep_sdk/models/note_model.rb
Overview
A note is a customizable text string that can be attached to various account attributes within Lockstep. You can use notes for internal communication, correspondence with clients, or personal reminders. The Note Model represents a note and a number of different metadata attributes related to the creation, storage, and ownership of the note.
See [Extensibility](developer.lockstep.io/docs/extensibility) for more information.
Instance Attribute Summary collapse
-
#app_enrollment_id ⇒ Uuid
The AppEnrollmentId of the application that imported this record.
-
#created ⇒ Date-time
The date the note was created.
-
#created_user_id ⇒ Uuid
The ID of the user who created the note.
-
#created_user_name ⇒ String
The name of the user who created the note.
-
#group_key ⇒ Uuid
The GroupKey uniquely identifies a single Lockstep Platform account.
-
#is_archived ⇒ Boolean
Flag indicating if the note has been archived.
-
#note_id ⇒ Uuid
The unique ID of this record, automatically assigned by Lockstep when this record is added to the Lockstep platform.
-
#note_text ⇒ String
The text of the note.
-
#note_type ⇒ String
The type of the note.
-
#object_key ⇒ Uuid
The ID of the object the note is associated with.
-
#recipient_name ⇒ String
The person to whom this note is intended for.
-
#table_key ⇒ String
The name of the table the note is associated with.
Instance Method Summary collapse
-
#as_json(options = {}) ⇒ object
This object as a JSON key-value structure.
-
#initialize(params = {}) ⇒ NoteModel
constructor
Initialize the NoteModel using the provided prototype.
-
#to_json(*options) ⇒ String
This object converted to a JSON string.
Constructor Details
#initialize(params = {}) ⇒ NoteModel
Initialize the NoteModel using the provided prototype
32 33 34 35 36 37 38 39 40 41 42 43 44 45 |
# File 'lib/lockstep_sdk/models/note_model.rb', line 32 def initialize(params = {}) @note_id = params.dig(:note_id) @group_key = params.dig(:group_key) @table_key = params.dig(:table_key) @object_key = params.dig(:object_key) @note_text = params.dig(:note_text) @note_type = params.dig(:note_type) @is_archived = params.dig(:is_archived) @created = params.dig(:created) @created_user_id = params.dig(:created_user_id) @created_user_name = params.dig(:created_user_name) @app_enrollment_id = params.dig(:app_enrollment_id) @recipient_name = params.dig(:recipient_name) end |
Instance Attribute Details
#app_enrollment_id ⇒ Uuid
Returns The AppEnrollmentId of the application that imported this record. For accounts with more than one financial system connected, this field identifies the originating financial system that produced this record. This value is null if this record was not loaded from an external ERP or financial system.
89 90 91 |
# File 'lib/lockstep_sdk/models/note_model.rb', line 89 def app_enrollment_id @app_enrollment_id end |
#created ⇒ Date-time
Returns The date the note was created.
77 78 79 |
# File 'lib/lockstep_sdk/models/note_model.rb', line 77 def created @created end |
#created_user_id ⇒ Uuid
Returns The ID of the user who created the note.
81 82 83 |
# File 'lib/lockstep_sdk/models/note_model.rb', line 81 def created_user_id @created_user_id end |
#created_user_name ⇒ String
Returns The name of the user who created the note.
85 86 87 |
# File 'lib/lockstep_sdk/models/note_model.rb', line 85 def created_user_name @created_user_name end |
#group_key ⇒ Uuid
Returns The GroupKey uniquely identifies a single Lockstep Platform account. All records for this account will share the same GroupKey value. GroupKey values cannot be changed once created. For more information, see [Accounts and GroupKeys](developer.lockstep.io/docs/accounts-and-groupkeys).
53 54 55 |
# File 'lib/lockstep_sdk/models/note_model.rb', line 53 def group_key @group_key end |
#is_archived ⇒ Boolean
Returns Flag indicating if the note has been archived.
73 74 75 |
# File 'lib/lockstep_sdk/models/note_model.rb', line 73 def is_archived @is_archived end |
#note_id ⇒ Uuid
Returns The unique ID of this record, automatically assigned by Lockstep when this record is added to the Lockstep platform.
49 50 51 |
# File 'lib/lockstep_sdk/models/note_model.rb', line 49 def note_id @note_id end |
#note_text ⇒ String
Returns The text of the note.
65 66 67 |
# File 'lib/lockstep_sdk/models/note_model.rb', line 65 def note_text @note_text end |
#note_type ⇒ String
Returns The type of the note.
69 70 71 |
# File 'lib/lockstep_sdk/models/note_model.rb', line 69 def note_type @note_type end |
#object_key ⇒ Uuid
Returns The ID of the object the note is associated with.
61 62 63 |
# File 'lib/lockstep_sdk/models/note_model.rb', line 61 def object_key @object_key end |
#recipient_name ⇒ String
Returns The person to whom this note is intended for.
93 94 95 |
# File 'lib/lockstep_sdk/models/note_model.rb', line 93 def recipient_name @recipient_name end |
#table_key ⇒ String
Returns The name of the table the note is associated with.
57 58 59 |
# File 'lib/lockstep_sdk/models/note_model.rb', line 57 def table_key @table_key end |
Instance Method Details
#as_json(options = {}) ⇒ object
Returns This object as a JSON key-value structure.
97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 |
# File 'lib/lockstep_sdk/models/note_model.rb', line 97 def as_json(={}) { 'noteId' => @note_id, 'groupKey' => @group_key, 'tableKey' => @table_key, 'objectKey' => @object_key, 'noteText' => @note_text, 'noteType' => @note_type, 'isArchived' => @is_archived, 'created' => @created, 'createdUserId' => @created_user_id, 'createdUserName' => @created_user_name, 'appEnrollmentId' => @app_enrollment_id, 'recipientName' => @recipient_name, } end |
#to_json(*options) ⇒ String
Returns This object converted to a JSON string.
116 117 118 |
# File 'lib/lockstep_sdk/models/note_model.rb', line 116 def to_json(*) "[#{as_json(*).to_json(*)}]" end |