Class: LockstepSdk::NoteModel

Inherits:
Object
  • Object
show all
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

Instance Method Summary collapse

Constructor Details

#initialize(params = {}) ⇒ NoteModel

Initialize the NoteModel using the provided prototype



33
34
35
36
37
38
39
40
41
42
43
44
45
46
# File 'lib/lockstep_sdk/models/note_model.rb', line 33

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_idUuid

Returns AppEnrollmentId for this record; used for mapping purposes.

Returns:

  • (Uuid)

    AppEnrollmentId for this record; used for mapping purposes.



90
91
92
# File 'lib/lockstep_sdk/models/note_model.rb', line 90

def app_enrollment_id
  @app_enrollment_id
end

#createdDate-time

Returns The date the note was created.

Returns:

  • (Date-time)

    The date the note was created



78
79
80
# File 'lib/lockstep_sdk/models/note_model.rb', line 78

def created
  @created
end

#created_user_idUuid

Returns The ID of the user who created the note.

Returns:

  • (Uuid)

    The ID of the user who created the note



82
83
84
# File 'lib/lockstep_sdk/models/note_model.rb', line 82

def created_user_id
  @created_user_id
end

#created_user_nameString

Returns The name of the user who created the note.

Returns:

  • (String)

    The name of the user who created the note



86
87
88
# File 'lib/lockstep_sdk/models/note_model.rb', line 86

def created_user_name
  @created_user_name
end

#group_keyUuid

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).

Returns:

  • (Uuid)

    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).



54
55
56
# File 'lib/lockstep_sdk/models/note_model.rb', line 54

def group_key
  @group_key
end

#is_archivedBoolean

Returns Flag indicating if the note has been archived.

Returns:

  • (Boolean)

    Flag indicating if the note has been archived



74
75
76
# File 'lib/lockstep_sdk/models/note_model.rb', line 74

def is_archived
  @is_archived
end

#note_idUuid

Returns The unique ID of this record, automatically assigned by Lockstep when this record is added to the Lockstep platform.

Returns:

  • (Uuid)

    The unique ID of this record, automatically assigned by Lockstep when this record is added to the Lockstep platform.



50
51
52
# File 'lib/lockstep_sdk/models/note_model.rb', line 50

def note_id
  @note_id
end

#note_textString

Returns The text of the note.

Returns:

  • (String)

    The text of the note



66
67
68
# File 'lib/lockstep_sdk/models/note_model.rb', line 66

def note_text
  @note_text
end

#note_typeString

Returns The type of the note.

Returns:

  • (String)

    The type of the note



70
71
72
# File 'lib/lockstep_sdk/models/note_model.rb', line 70

def note_type
  @note_type
end

#object_keyUuid

Returns The ID of the object the note is associated with.

Returns:

  • (Uuid)

    The ID of the object the note is associated with



62
63
64
# File 'lib/lockstep_sdk/models/note_model.rb', line 62

def object_key
  @object_key
end

#recipient_nameString

Returns The person to whom this note is intended for.

Returns:

  • (String)

    The person to whom this note is intended for.



94
95
96
# File 'lib/lockstep_sdk/models/note_model.rb', line 94

def recipient_name
  @recipient_name
end

#table_keyString

Returns The name of the table the note is associated with.

Returns:

  • (String)

    The name of the table the note is associated with



58
59
60
# File 'lib/lockstep_sdk/models/note_model.rb', line 58

def table_key
  @table_key
end

Instance Method Details

#as_json(options = {}) ⇒ object

Returns This object as a JSON key-value structure.

Returns:

  • (object)

    This object as a JSON key-value structure



98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
# File 'lib/lockstep_sdk/models/note_model.rb', line 98

def as_json(options={})
    {
        '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.

Returns:

  • (String)

    This object converted to a JSON string



117
118
119
# File 'lib/lockstep_sdk/models/note_model.rb', line 117

def to_json(*options)
    "[#{as_json(*options).to_json(*options)}]"
end