Class: LockstepSdk::ContactModel

Inherits:
Object
  • Object
show all
Defined in:
lib/lockstep_sdk/models/contact_model.rb

Overview

A Contact contains information about a person or role within a Company. You can use Contacts to track information about who is responsible for a specific project, who handles invoices, or information about which role at a particular customer or vendor you should speak with about invoices.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(params = {}) ⇒ ContactModel

Initialize the ContactModel using the provided prototype



29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
# File 'lib/lockstep_sdk/models/contact_model.rb', line 29

def initialize(params = {})
    @contact_id = params.dig(:contact_id)
    @company_id = params.dig(:company_id)
    @group_key = params.dig(:group_key)
    @erp_key = params.dig(:erp_key)
    @contact_name = params.dig(:contact_name)
    @contact_code = params.dig(:contact_code)
    @title = params.dig(:title)
    @role_code = params.dig(:role_code)
    @email_address = params.dig(:email_address)
    @phone = params.dig(:phone)
    @fax = params.dig(:fax)
    @address1 = params.dig(:address1)
    @address2 = params.dig(:address2)
    @address3 = params.dig(:address3)
    @city = params.dig(:city)
    @state_region = params.dig(:state_region)
    @postal_code = params.dig(:postal_code)
    @country_code = params.dig(:country_code)
    @is_active = params.dig(:is_active)
    @webpage_url = params.dig(:webpage_url)
    @picture_url = params.dig(:picture_url)
    @created = params.dig(:created)
    @created_user_id = params.dig(:created_user_id)
    @modified = params.dig(:modified)
    @modified_user_id = params.dig(:modified_user_id)
    @app_enrollment_id = params.dig(:app_enrollment_id)
    @notes = params.dig(:notes)
    @attachments = params.dig(:attachments)
    @custom_field_definitions = params.dig(:custom_field_definitions)
    @custom_field_values = params.dig(:custom_field_values)
end

Instance Attribute Details

#address1String

Returns The first line of the address.

Returns:

  • (String)

    The first line of the address.



85
86
87
# File 'lib/lockstep_sdk/models/contact_model.rb', line 85

def address1
  @address1
end

#address2String

Returns The second line of the address.

Returns:

  • (String)

    The second line of the address.



87
88
89
# File 'lib/lockstep_sdk/models/contact_model.rb', line 87

def address2
  @address2
end

#address3String

Returns The third line of the address.

Returns:

  • (String)

    The third line of the address.



89
90
91
# File 'lib/lockstep_sdk/models/contact_model.rb', line 89

def address3
  @address3
end

#app_enrollment_idUuid

Returns AppEnrollmentId for this record; used for mapping purposes.

Returns:

  • (Uuid)

    AppEnrollmentId for this record; used for mapping purposes.



113
114
115
# File 'lib/lockstep_sdk/models/contact_model.rb', line 113

def app_enrollment_id
  @app_enrollment_id
end

#attachmentsAttachmentModel

Returns All attachments attached to this company. To retrieve this collection, specify `Attachments` in the “Include” parameter for your query.

Returns:

  • (AttachmentModel)

    All attachments attached to this company. To retrieve this collection, specify `Attachments` in the “Include” parameter for your query.



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

def attachments
  @attachments
end

#cityString

Returns The city of the address.

Returns:

  • (String)

    The city of the address.



91
92
93
# File 'lib/lockstep_sdk/models/contact_model.rb', line 91

def city
  @city
end

#company_idUuid

Returns The ID of the company to which this contact belongs.

Returns:

  • (Uuid)

    The ID of the company to which this contact belongs.



65
66
67
# File 'lib/lockstep_sdk/models/contact_model.rb', line 65

def company_id
  @company_id
end

#contact_codeString

Returns A friendly human-readable code that describes this Contact.

Returns:

  • (String)

    A friendly human-readable code that describes this Contact.



73
74
75
# File 'lib/lockstep_sdk/models/contact_model.rb', line 73

def contact_code
  @contact_code
end

#contact_idUuid

Returns The unique ID of this record, automatically assigned by Lockstep when this record is added to the Lockstep platform. For the ID of this record in its originating financial system, see `ErpKey`.

Returns:

  • (Uuid)

    The unique ID of this record, automatically assigned by Lockstep when this record is added to the Lockstep platform. For the ID of this record in its originating financial system, see `ErpKey`.



63
64
65
# File 'lib/lockstep_sdk/models/contact_model.rb', line 63

def contact_id
  @contact_id
end

#contact_nameString

Returns The name of the contact.

Returns:

  • (String)

    The name of the contact.



71
72
73
# File 'lib/lockstep_sdk/models/contact_model.rb', line 71

def contact_name
  @contact_name
end

#country_codeString

Returns The two character country code of the address. This will be validated by the /api/v1/countries data set.

Returns:

  • (String)

    The two character country code of the address. This will be validated by the /api/v1/countries data set



97
98
99
# File 'lib/lockstep_sdk/models/contact_model.rb', line 97

def country_code
  @country_code
end

#createdDate-time

Returns The date on which this record was created.

Returns:

  • (Date-time)

    The date on which this record was created.



105
106
107
# File 'lib/lockstep_sdk/models/contact_model.rb', line 105

def created
  @created
end

#created_user_idUuid

Returns The ID of the user who created this contact.

Returns:

  • (Uuid)

    The ID of the user who created this contact.



107
108
109
# File 'lib/lockstep_sdk/models/contact_model.rb', line 107

def created_user_id
  @created_user_id
end

#custom_field_definitionsCustomFieldDefinitionModel

Returns All definitions attached to this contact. To retrieve this collection, specify `CustomFieldValues` in the “Include” parameter for your query.

Returns:

  • (CustomFieldDefinitionModel)

    All definitions attached to this contact. To retrieve this collection, specify `CustomFieldValues` in the “Include” parameter for your query.



119
120
121
# File 'lib/lockstep_sdk/models/contact_model.rb', line 119

def custom_field_definitions
  @custom_field_definitions
end

#custom_field_valuesCustomFieldValueModel

Returns All values attached to this contact. To retrieve this collection, specify `Attachments` in the “Include” parameter for your query.

Returns:

  • (CustomFieldValueModel)

    All values attached to this contact. To retrieve this collection, specify `Attachments` in the “Include” parameter for your query.



121
122
123
# File 'lib/lockstep_sdk/models/contact_model.rb', line 121

def custom_field_values
  @custom_field_values
end

#email_addressEmail

Returns The email address of the contact.

Returns:

  • (Email)

    The email address of the contact.



79
80
81
# File 'lib/lockstep_sdk/models/contact_model.rb', line 79

def email_address
  @email_address
end

#erp_keyString

Returns The unique ID of this record as it was known in its originating financial system. If this company record was imported from a financial system, it will have the value `ErpKey` set to the original primary key number of the record as it was known in the originating financial system. If this record was not imported, this value will be `null`. For more information, see [Identity Columns](developer.lockstep.io/docs/identity-columns).

Returns:

  • (String)

    The unique ID of this record as it was known in its originating financial system. If this company record was imported from a financial system, it will have the value `ErpKey` set to the original primary key number of the record as it was known in the originating financial system. If this record was not imported, this value will be `null`. For more information, see [Identity Columns](developer.lockstep.io/docs/identity-columns).



69
70
71
# File 'lib/lockstep_sdk/models/contact_model.rb', line 69

def erp_key
  @erp_key
end

#faxString

Returns The fax number of the contact.

Returns:

  • (String)

    The fax number of the contact.



83
84
85
# File 'lib/lockstep_sdk/models/contact_model.rb', line 83

def fax
  @fax
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).



67
68
69
# File 'lib/lockstep_sdk/models/contact_model.rb', line 67

def group_key
  @group_key
end

#is_activeBoolean

Returns Flag indicating if the contact is active.

Returns:

  • (Boolean)

    Flag indicating if the contact is active.



99
100
101
# File 'lib/lockstep_sdk/models/contact_model.rb', line 99

def is_active
  @is_active
end

#modifiedDate-time

Returns The date on which this record was last modified.

Returns:

  • (Date-time)

    The date on which this record was last modified.



109
110
111
# File 'lib/lockstep_sdk/models/contact_model.rb', line 109

def modified
  @modified
end

#modified_user_idUuid

Returns The ID of the user who last modified this contact.

Returns:

  • (Uuid)

    The ID of the user who last modified this contact.



111
112
113
# File 'lib/lockstep_sdk/models/contact_model.rb', line 111

def modified_user_id
  @modified_user_id
end

#notesNoteModel

Returns All notes attached to this company. To retrieve this collection, specify `Notes` in the “Include” parameter for your query.

Returns:

  • (NoteModel)

    All notes attached to this company. To retrieve this collection, specify `Notes` in the “Include” parameter for your query.



115
116
117
# File 'lib/lockstep_sdk/models/contact_model.rb', line 115

def notes
  @notes
end

#phoneString

Returns The phone number of the contact.

Returns:

  • (String)

    The phone number of the contact.



81
82
83
# File 'lib/lockstep_sdk/models/contact_model.rb', line 81

def phone
  @phone
end

#picture_urlUri

Returns The picture/avatar url of the contact.

Returns:

  • (Uri)

    The picture/avatar url of the contact.



103
104
105
# File 'lib/lockstep_sdk/models/contact_model.rb', line 103

def picture_url
  @picture_url
end

#postal_codeString

Returns The postal/zip code of the address.

Returns:

  • (String)

    The postal/zip code of the address.



95
96
97
# File 'lib/lockstep_sdk/models/contact_model.rb', line 95

def postal_code
  @postal_code
end

#role_codeString

Returns The role code for the contact.

Returns:

  • (String)

    The role code for the contact.



77
78
79
# File 'lib/lockstep_sdk/models/contact_model.rb', line 77

def role_code
  @role_code
end

#state_regionString

Returns The state/region of the address.

Returns:

  • (String)

    The state/region of the address.



93
94
95
# File 'lib/lockstep_sdk/models/contact_model.rb', line 93

def state_region
  @state_region
end

#titleString

Returns The title of the contact.

Returns:

  • (String)

    The title of the contact.



75
76
77
# File 'lib/lockstep_sdk/models/contact_model.rb', line 75

def title
  @title
end

#webpage_urlUri

Returns The webpage url of the contact.

Returns:

  • (Uri)

    The webpage url of the contact.



101
102
103
# File 'lib/lockstep_sdk/models/contact_model.rb', line 101

def webpage_url
  @webpage_url
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



124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
# File 'lib/lockstep_sdk/models/contact_model.rb', line 124

def as_json(options={})
    {
        'contactId' => @contact_id,
        'companyId' => @company_id,
        'groupKey' => @group_key,
        'erpKey' => @erp_key,
        'contactName' => @contact_name,
        'contactCode' => @contact_code,
        'title' => @title,
        'roleCode' => @role_code,
        'emailAddress' => @email_address,
        'phone' => @phone,
        'fax' => @fax,
        'address1' => @address1,
        'address2' => @address2,
        'address3' => @address3,
        'city' => @city,
        'stateRegion' => @state_region,
        'postalCode' => @postal_code,
        'countryCode' => @country_code,
        'isActive' => @is_active,
        'webpageUrl' => @webpage_url,
        'pictureUrl' => @picture_url,
        'created' => @created,
        'createdUserId' => @created_user_id,
        'modified' => @modified,
        'modifiedUserId' => @modified_user_id,
        'appEnrollmentId' => @app_enrollment_id,
        'notes' => @notes,
        'attachments' => @attachments,
        'customFieldDefinitions' => @custom_field_definitions,
        'customFieldValues' => @custom_field_values,
    }
end

#to_json(*options) ⇒ String

Returns This object converted to a JSON string.

Returns:

  • (String)

    This object converted to a JSON string



160
161
162
# File 'lib/lockstep_sdk/models/contact_model.rb', line 160

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