ZCRMSDK 2.1.0 → 3.0.0.beta

Sign up to get free protection for your applications and to get access to all the features.
Files changed (163) hide show
  1. checksums.yaml +4 -4
  2. data/src/ZCRMSDK.rb +84 -1
  3. data/src/com/zoho/api/authenticator/oauth_token.rb +87 -31
  4. data/src/com/zoho/api/authenticator/store/db_store.rb +48 -28
  5. data/src/com/zoho/api/authenticator/store/file_store.rb +69 -21
  6. data/src/com/zoho/api/authenticator/store/token_store.rb +7 -0
  7. data/src/com/zoho/api/logger/sdk_logger.rb +19 -9
  8. data/src/com/zoho/crm/api/assignment_rules/api_exception.rb +121 -0
  9. data/src/com/zoho/crm/api/assignment_rules/assignment_rule.rb +215 -0
  10. data/src/com/zoho/crm/api/assignment_rules/assignment_rules_operations.rb +61 -0
  11. data/src/com/zoho/crm/api/assignment_rules/default_user.rb +80 -0
  12. data/src/com/zoho/crm/api/assignment_rules/response_handler.rb +10 -0
  13. data/src/com/zoho/crm/api/assignment_rules/response_wrapper.rb +63 -0
  14. data/src/com/zoho/crm/api/attachments/attachment.rb +4 -4
  15. data/src/com/zoho/crm/api/attachments/attachments_operations.rb +6 -6
  16. data/src/com/zoho/crm/api/blue_print/blue_print_operations.rb +2 -2
  17. data/src/com/zoho/crm/api/blue_print/escalation.rb +80 -0
  18. data/src/com/zoho/crm/api/blue_print/field.rb +1107 -0
  19. data/src/com/zoho/crm/api/blue_print/next_transition.rb +38 -0
  20. data/src/com/zoho/crm/api/blue_print/process_info.rb +4 -4
  21. data/src/com/zoho/crm/api/blue_print/transition.rb +19 -1
  22. data/src/com/zoho/crm/api/blue_print/validation_error.rb +57 -0
  23. data/src/com/zoho/crm/api/bulk_read/bulk_read_operations.rb +3 -3
  24. data/src/com/zoho/crm/api/bulk_read/criteria.rb +20 -0
  25. data/src/com/zoho/crm/api/bulk_read/query.rb +5 -4
  26. data/src/com/zoho/crm/api/bulk_write/bulk_write_operations.rb +3 -3
  27. data/src/com/zoho/crm/api/bulk_write/resource.rb +24 -4
  28. data/src/com/zoho/crm/api/contact_roles/contact_roles_operations.rb +7 -7
  29. data/src/com/zoho/crm/api/currencies/currencies_operations.rb +7 -7
  30. data/src/com/zoho/crm/api/custom_views/criteria.rb +5 -4
  31. data/src/com/zoho/crm/api/custom_views/custom_view.rb +100 -41
  32. data/src/com/zoho/crm/api/custom_views/custom_views_operations.rb +2 -2
  33. data/src/com/zoho/crm/api/custom_views/{shared_details.rb → shared_to.rb} +2 -2
  34. data/src/com/zoho/crm/api/dc/au_datacenter.rb +3 -3
  35. data/src/com/zoho/crm/api/dc/cn_datacenter.rb +3 -3
  36. data/src/com/zoho/crm/api/dc/datacenter.rb +3 -2
  37. data/src/com/zoho/crm/api/dc/eu_datacenter.rb +3 -3
  38. data/src/com/zoho/crm/api/dc/in_datacenter.rb +3 -3
  39. data/src/com/zoho/crm/api/dc/us_datacenter.rb +3 -3
  40. data/src/com/zoho/crm/api/email_templates/api_exception.rb +121 -0
  41. data/src/com/zoho/crm/api/email_templates/attachment.rb +118 -0
  42. data/src/com/zoho/crm/api/email_templates/email_template.rb +390 -0
  43. data/src/com/zoho/crm/api/email_templates/email_templates_operations.rb +61 -0
  44. data/src/com/zoho/crm/api/email_templates/response_handler.rb +10 -0
  45. data/src/com/zoho/crm/api/email_templates/response_wrapper.rb +83 -0
  46. data/src/com/zoho/crm/api/field_attachments/api_exception.rb +121 -0
  47. data/src/com/zoho/crm/api/field_attachments/body_wrapper.rb +62 -0
  48. data/src/com/zoho/crm/api/field_attachments/field_attachments_operations.rb +52 -0
  49. data/src/com/zoho/crm/api/field_attachments/file_body_wrapper.rb +64 -0
  50. data/src/com/zoho/crm/api/field_attachments/response_handler.rb +10 -0
  51. data/src/com/zoho/crm/api/fields/external.rb +99 -0
  52. data/src/com/zoho/crm/api/fields/field.rb +192 -38
  53. data/src/com/zoho/crm/api/fields/fields_operations.rb +2 -2
  54. data/src/com/zoho/crm/api/fields/history_tracking.rb +80 -0
  55. data/src/com/zoho/crm/api/fields/maps.rb +80 -0
  56. data/src/com/zoho/crm/api/fields/multi_select_lookup.rb +19 -0
  57. data/src/com/zoho/crm/api/fields/multi_user_lookup.rb +175 -0
  58. data/src/com/zoho/crm/api/fields/pick_list_value.rb +19 -0
  59. data/src/com/zoho/crm/api/fields/related_details.rb +19 -0
  60. data/src/com/zoho/crm/api/files/file_operations.rb +2 -2
  61. data/src/com/zoho/crm/api/initializer.rb +40 -15
  62. data/src/com/zoho/crm/api/inventory_templates/api_exception.rb +121 -0
  63. data/src/com/zoho/crm/api/inventory_templates/inventory_template.rb +352 -0
  64. data/src/com/zoho/crm/api/inventory_templates/inventory_templates_operations.rb +82 -0
  65. data/src/com/zoho/crm/api/inventory_templates/response_handler.rb +10 -0
  66. data/src/com/zoho/crm/api/inventory_templates/response_wrapper.rb +83 -0
  67. data/src/com/zoho/crm/api/layouts/layout.rb +38 -0
  68. data/src/com/zoho/crm/api/layouts/layouts_operations.rb +2 -2
  69. data/src/com/zoho/crm/api/layouts/section.rb +19 -0
  70. data/src/com/zoho/crm/api/modules/module.rb +57 -0
  71. data/src/com/zoho/crm/api/modules/modules_operations.rb +4 -4
  72. data/src/com/zoho/crm/api/notes/notes_operations.rb +7 -7
  73. data/src/com/zoho/crm/api/notification/notification_operations.rb +6 -6
  74. data/src/com/zoho/crm/api/org/org_operations.rb +2 -2
  75. data/src/com/zoho/crm/api/pipeline/action_handler.rb +10 -0
  76. data/src/com/zoho/crm/api/pipeline/action_response.rb +10 -0
  77. data/src/com/zoho/crm/api/pipeline/action_wrapper.rb +63 -0
  78. data/src/com/zoho/crm/api/pipeline/api_exception.rb +129 -0
  79. data/src/com/zoho/crm/api/pipeline/body_wrapper.rb +61 -0
  80. data/src/com/zoho/crm/api/pipeline/forecast_category.rb +80 -0
  81. data/src/com/zoho/crm/api/pipeline/pick_list_value.rb +175 -0
  82. data/src/com/zoho/crm/api/pipeline/pipeline.rb +213 -0
  83. data/src/com/zoho/crm/api/pipeline/pipeline_operations.rb +165 -0
  84. data/src/com/zoho/crm/api/pipeline/response_handler.rb +10 -0
  85. data/src/com/zoho/crm/api/pipeline/response_wrapper.rb +63 -0
  86. data/src/com/zoho/crm/api/pipeline/stage.rb +80 -0
  87. data/src/com/zoho/crm/api/pipeline/success_response.rb +123 -0
  88. data/src/com/zoho/crm/api/pipeline/transfer_action_handler.rb +10 -0
  89. data/src/com/zoho/crm/api/pipeline/transfer_action_response.rb +10 -0
  90. data/src/com/zoho/crm/api/pipeline/transfer_action_wrapper.rb +63 -0
  91. data/src/com/zoho/crm/api/pipeline/transfer_and_delete_wrapper.rb +61 -0
  92. data/src/com/zoho/crm/api/pipeline/transfer_pipe_line.rb +80 -0
  93. data/src/com/zoho/crm/api/profiles/default_view.rb +99 -0
  94. data/src/com/zoho/crm/api/profiles/profile.rb +57 -0
  95. data/src/com/zoho/crm/api/profiles/profiles_operations.rb +2 -2
  96. data/src/com/zoho/crm/api/query/query_operations.rb +1 -1
  97. data/src/com/zoho/crm/api/record/api_exception.rb +2 -0
  98. data/src/com/zoho/crm/api/record/body_wrapper.rb +0 -19
  99. data/src/com/zoho/crm/api/record/count_handler.rb +10 -0
  100. data/src/com/zoho/crm/api/record/count_wrapper.rb +63 -0
  101. data/src/com/zoho/crm/api/record/field.rb +1 -0
  102. data/src/com/zoho/crm/api/record/image_upload.rb +213 -0
  103. data/src/com/zoho/crm/api/record/inventory_line_items.rb +56 -39
  104. data/src/com/zoho/crm/api/record/mass_update_body_wrapper.rb +4 -4
  105. data/src/com/zoho/crm/api/record/mass_update_territory.rb +80 -0
  106. data/src/com/zoho/crm/api/record/multi_select_lookup.rb +99 -0
  107. data/src/com/zoho/crm/api/record/multi_select_picklist.rb +80 -0
  108. data/src/com/zoho/crm/api/record/price_book.rb +31 -0
  109. data/src/com/zoho/crm/api/record/record_operations.rb +201 -111
  110. data/src/com/zoho/crm/api/record/tax.rb +80 -0
  111. data/src/com/zoho/crm/api/record/territory.rb +70 -12
  112. data/src/com/zoho/crm/api/record/widget.rb +80 -0
  113. data/src/com/zoho/crm/api/record/wizard.rb +80 -0
  114. data/src/com/zoho/crm/api/related_lists/related_lists_operations.rb +2 -2
  115. data/src/com/zoho/crm/api/related_records/related_records_operations.rb +8 -36
  116. data/src/com/zoho/crm/api/request_proxy.rb +3 -4
  117. data/src/com/zoho/crm/api/roles/roles_operations.rb +2 -2
  118. data/src/com/zoho/crm/api/sdk_config.rb +2 -68
  119. data/src/com/zoho/crm/api/send_mail/action_handler.rb +10 -0
  120. data/src/com/zoho/crm/api/send_mail/action_response.rb +10 -0
  121. data/src/com/zoho/crm/api/send_mail/action_wrapper.rb +63 -0
  122. data/src/com/zoho/crm/api/send_mail/api_exception.rb +125 -0
  123. data/src/com/zoho/crm/api/send_mail/body_wrapper.rb +61 -0
  124. data/src/com/zoho/crm/api/send_mail/data_subject_request.rb +80 -0
  125. data/src/com/zoho/crm/api/send_mail/inventory_details.rb +100 -0
  126. data/src/com/zoho/crm/api/send_mail/mail.rb +423 -0
  127. data/src/com/zoho/crm/api/send_mail/response_handler.rb +10 -0
  128. data/src/com/zoho/crm/api/send_mail/response_wrapper.rb +63 -0
  129. data/src/com/zoho/crm/api/send_mail/send_mail_operations.rb +61 -0
  130. data/src/com/zoho/crm/api/send_mail/success_response.rb +121 -0
  131. data/src/com/zoho/crm/api/send_mail/template.rb +10 -0
  132. data/src/com/zoho/crm/api/send_mail/user_address.rb +137 -0
  133. data/src/com/zoho/crm/api/share_records/share_records_operations.rb +4 -4
  134. data/src/com/zoho/crm/api/tags/tag.rb +19 -0
  135. data/src/com/zoho/crm/api/tags/tags_operations.rb +11 -11
  136. data/src/com/zoho/crm/api/taxes/taxes_operations.rb +6 -6
  137. data/src/com/zoho/crm/api/territories/response_wrapper.rb +20 -0
  138. data/src/com/zoho/crm/api/territories/territories_operations.rb +2 -2
  139. data/src/com/zoho/crm/api/territories/territory.rb +61 -23
  140. data/src/com/zoho/crm/api/users/users_operations.rb +6 -6
  141. data/src/com/zoho/crm/api/util/api_http_connector.rb +5 -5
  142. data/src/com/zoho/crm/api/util/common_api_handler.rb +0 -1
  143. data/src/com/zoho/crm/api/util/constants.rb +140 -13
  144. data/src/com/zoho/crm/api/util/converter.rb +21 -4
  145. data/src/com/zoho/crm/api/util/form_data_converter.rb +3 -15
  146. data/src/com/zoho/crm/api/util/utility.rb +226 -86
  147. data/src/com/zoho/crm/api/variable_groups/variable_groups_operations.rb +3 -3
  148. data/src/com/zoho/crm/api/variables/variables_operations.rb +9 -9
  149. data/src/com/zoho/crm/api/wizards/api_exception.rb +121 -0
  150. data/src/com/zoho/crm/api/wizards/button.rb +214 -0
  151. data/src/com/zoho/crm/api/wizards/chart_data.rb +118 -0
  152. data/src/com/zoho/crm/api/wizards/connection.rb +80 -0
  153. data/src/com/zoho/crm/api/wizards/container.rb +119 -0
  154. data/src/com/zoho/crm/api/wizards/node.rb +118 -0
  155. data/src/com/zoho/crm/api/wizards/response_handler.rb +10 -0
  156. data/src/com/zoho/crm/api/wizards/response_wrapper.rb +63 -0
  157. data/src/com/zoho/crm/api/wizards/screen.rb +99 -0
  158. data/src/com/zoho/crm/api/wizards/segment.rb +176 -0
  159. data/src/com/zoho/crm/api/wizards/wizard.rb +273 -0
  160. data/src/com/zoho/crm/api/wizards/wizards_operations.rb +61 -0
  161. data/src/resources/JSONDetails.json +1 -1
  162. data/src/version.rb +1 -1
  163. metadata +88 -5
@@ -0,0 +1,100 @@
1
+ require_relative '../inventory_templates/inventory_template'
2
+ require_relative '../util/model'
3
+
4
+ module SendMail
5
+ class InventoryDetails
6
+ include Util::Model
7
+
8
+ # Creates an instance of InventoryDetails
9
+ def initialize
10
+ @inventory_template = nil
11
+ @paper_type = nil
12
+ @view_type = nil
13
+ @key_modified = Hash.new
14
+ end
15
+
16
+ # The method to get the inventory_template
17
+ # @return An instance of InventoryTemplates::InventoryTemplate
18
+
19
+ def inventory_template
20
+ @inventory_template
21
+ end
22
+
23
+ # The method to set the value to inventory_template
24
+ # @param inventory_template [InventoryTemplates::InventoryTemplate] An instance of InventoryTemplates::InventoryTemplate
25
+
26
+ def inventory_template=(inventory_template)
27
+ if inventory_template!=nil and !inventory_template.is_a? InventoryTemplates::InventoryTemplate
28
+ raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: inventory_template EXPECTED TYPE: InventoryTemplate', nil, nil)
29
+ end
30
+ @inventory_template = inventory_template
31
+ @key_modified['inventory_template'] = 1
32
+ end
33
+
34
+ # The method to get the paper_type
35
+ # @return A String value
36
+
37
+ def paper_type
38
+ @paper_type
39
+ end
40
+
41
+ # The method to set the value to paper_type
42
+ # @param paper_type [String] A String
43
+
44
+ def paper_type=(paper_type)
45
+ if paper_type!=nil and !paper_type.is_a? String
46
+ raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: paper_type EXPECTED TYPE: String', nil, nil)
47
+ end
48
+ @paper_type = paper_type
49
+ @key_modified['paper_type'] = 1
50
+ end
51
+
52
+ # The method to get the view_type
53
+ # @return A String value
54
+
55
+ def view_type
56
+ @view_type
57
+ end
58
+
59
+ # The method to set the value to view_type
60
+ # @param view_type [String] A String
61
+
62
+ def view_type=(view_type)
63
+ if view_type!=nil and !view_type.is_a? String
64
+ raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: view_type EXPECTED TYPE: String', nil, nil)
65
+ end
66
+ @view_type = view_type
67
+ @key_modified['view_type'] = 1
68
+ end
69
+
70
+ # The method to check if the user has modified the given key
71
+ # @param key [String] A String
72
+ # @return A Integer value
73
+
74
+ def is_key_modified(key)
75
+ if key!=nil and !key.is_a? String
76
+ raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: key EXPECTED TYPE: String', nil, nil)
77
+ end
78
+ if @key_modified.key?(key)
79
+ return @key_modified[key]
80
+ end
81
+
82
+ nil
83
+ end
84
+
85
+ # The method to mark the given key as modified
86
+ # @param key [String] A String
87
+ # @param modification [Integer] A Integer
88
+
89
+ def set_key_modified(key, modification)
90
+ if key!=nil and !key.is_a? String
91
+ raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: key EXPECTED TYPE: String', nil, nil)
92
+ end
93
+ if modification!=nil and !modification.is_a? Integer
94
+ raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: modification EXPECTED TYPE: Integer', nil, nil)
95
+ end
96
+ @key_modified[key] = modification
97
+ end
98
+
99
+ end
100
+ end
@@ -0,0 +1,423 @@
1
+ require_relative '../attachments/attachment'
2
+ require_relative '../util/model'
3
+
4
+ module SendMail
5
+ class Mail
6
+ include Util::Model
7
+
8
+ # Creates an instance of Mail
9
+ def initialize
10
+ @from = nil
11
+ @to = nil
12
+ @cc = nil
13
+ @bcc = nil
14
+ @reply_to = nil
15
+ @template = nil
16
+ @email = nil
17
+ @id = nil
18
+ @in_reply_to = nil
19
+ @scheduled_time = nil
20
+ @subject = nil
21
+ @content = nil
22
+ @paper_type = nil
23
+ @view_type = nil
24
+ @mail_format = nil
25
+ @consent_email = nil
26
+ @org_email = nil
27
+ @attachments = nil
28
+ @inventory_details = nil
29
+ @data_subject_request = nil
30
+ @key_modified = Hash.new
31
+ end
32
+
33
+ # The method to get the from
34
+ # @return An instance of UserAddress
35
+
36
+ def from
37
+ @from
38
+ end
39
+
40
+ # The method to set the value to from
41
+ # @param from [UserAddress] An instance of UserAddress
42
+
43
+ def from=(from)
44
+ if from!=nil and !from.is_a? UserAddress
45
+ raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: from EXPECTED TYPE: UserAddress', nil, nil)
46
+ end
47
+ @from = from
48
+ @key_modified['from'] = 1
49
+ end
50
+
51
+ # The method to get the to
52
+ # @return An instance of Array
53
+
54
+ def to
55
+ @to
56
+ end
57
+
58
+ # The method to set the value to to
59
+ # @param to [Array] An instance of Array
60
+
61
+ def to=(to)
62
+ if to!=nil and !to.is_a? Array
63
+ raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: to EXPECTED TYPE: Array', nil, nil)
64
+ end
65
+ @to = to
66
+ @key_modified['to'] = 1
67
+ end
68
+
69
+ # The method to get the cc
70
+ # @return An instance of Array
71
+
72
+ def cc
73
+ @cc
74
+ end
75
+
76
+ # The method to set the value to cc
77
+ # @param cc [Array] An instance of Array
78
+
79
+ def cc=(cc)
80
+ if cc!=nil and !cc.is_a? Array
81
+ raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: cc EXPECTED TYPE: Array', nil, nil)
82
+ end
83
+ @cc = cc
84
+ @key_modified['cc'] = 1
85
+ end
86
+
87
+ # The method to get the bcc
88
+ # @return An instance of Array
89
+
90
+ def bcc
91
+ @bcc
92
+ end
93
+
94
+ # The method to set the value to bcc
95
+ # @param bcc [Array] An instance of Array
96
+
97
+ def bcc=(bcc)
98
+ if bcc!=nil and !bcc.is_a? Array
99
+ raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: bcc EXPECTED TYPE: Array', nil, nil)
100
+ end
101
+ @bcc = bcc
102
+ @key_modified['bcc'] = 1
103
+ end
104
+
105
+ # The method to get the reply_to
106
+ # @return An instance of UserAddress
107
+
108
+ def reply_to
109
+ @reply_to
110
+ end
111
+
112
+ # The method to set the value to reply_to
113
+ # @param reply_to [UserAddress] An instance of UserAddress
114
+
115
+ def reply_to=(reply_to)
116
+ if reply_to!=nil and !reply_to.is_a? UserAddress
117
+ raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: reply_to EXPECTED TYPE: UserAddress', nil, nil)
118
+ end
119
+ @reply_to = reply_to
120
+ @key_modified['reply_to'] = 1
121
+ end
122
+
123
+ # The method to get the template
124
+ # @return An instance of Template
125
+
126
+ def template
127
+ @template
128
+ end
129
+
130
+ # The method to set the value to template
131
+ # @param template [Template] An instance of Template
132
+
133
+ def template=(template)
134
+ if template!=nil and !template.is_a? Template
135
+ raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: template EXPECTED TYPE: Template', nil, nil)
136
+ end
137
+ @template = template
138
+ @key_modified['template'] = 1
139
+ end
140
+
141
+ # The method to get the email
142
+ # @return A Integer value
143
+
144
+ def email
145
+ @email
146
+ end
147
+
148
+ # The method to set the value to email
149
+ # @param email [Integer] A Integer
150
+
151
+ def email=(email)
152
+ if email!=nil and !email.is_a? Integer
153
+ raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: email EXPECTED TYPE: Integer', nil, nil)
154
+ end
155
+ @email = email
156
+ @key_modified['email'] = 1
157
+ end
158
+
159
+ # The method to get the id
160
+ # @return A Integer value
161
+
162
+ def id
163
+ @id
164
+ end
165
+
166
+ # The method to set the value to id
167
+ # @param id [Integer] A Integer
168
+
169
+ def id=(id)
170
+ if id!=nil and !id.is_a? Integer
171
+ raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: id EXPECTED TYPE: Integer', nil, nil)
172
+ end
173
+ @id = id
174
+ @key_modified['id'] = 1
175
+ end
176
+
177
+ # The method to get the in_reply_to
178
+ # @return A String value
179
+
180
+ def in_reply_to
181
+ @in_reply_to
182
+ end
183
+
184
+ # The method to set the value to in_reply_to
185
+ # @param in_reply_to [String] A String
186
+
187
+ def in_reply_to=(in_reply_to)
188
+ if in_reply_to!=nil and !in_reply_to.is_a? String
189
+ raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: in_reply_to EXPECTED TYPE: String', nil, nil)
190
+ end
191
+ @in_reply_to = in_reply_to
192
+ @key_modified['in_reply_to'] = 1
193
+ end
194
+
195
+ # The method to get the scheduled_time
196
+ # @return An instance of DateTime
197
+
198
+ def scheduled_time
199
+ @scheduled_time
200
+ end
201
+
202
+ # The method to set the value to scheduled_time
203
+ # @param scheduled_time [DateTime] An instance of DateTime
204
+
205
+ def scheduled_time=(scheduled_time)
206
+ if scheduled_time!=nil and !scheduled_time.is_a? DateTime
207
+ raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: scheduled_time EXPECTED TYPE: DateTime', nil, nil)
208
+ end
209
+ @scheduled_time = scheduled_time
210
+ @key_modified['scheduled_time'] = 1
211
+ end
212
+
213
+ # The method to get the subject
214
+ # @return A String value
215
+
216
+ def subject
217
+ @subject
218
+ end
219
+
220
+ # The method to set the value to subject
221
+ # @param subject [String] A String
222
+
223
+ def subject=(subject)
224
+ if subject!=nil and !subject.is_a? String
225
+ raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: subject EXPECTED TYPE: String', nil, nil)
226
+ end
227
+ @subject = subject
228
+ @key_modified['subject'] = 1
229
+ end
230
+
231
+ # The method to get the content
232
+ # @return A String value
233
+
234
+ def content
235
+ @content
236
+ end
237
+
238
+ # The method to set the value to content
239
+ # @param content [String] A String
240
+
241
+ def content=(content)
242
+ if content!=nil and !content.is_a? String
243
+ raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: content EXPECTED TYPE: String', nil, nil)
244
+ end
245
+ @content = content
246
+ @key_modified['content'] = 1
247
+ end
248
+
249
+ # The method to get the paper_type
250
+ # @return A String value
251
+
252
+ def paper_type
253
+ @paper_type
254
+ end
255
+
256
+ # The method to set the value to paper_type
257
+ # @param paper_type [String] A String
258
+
259
+ def paper_type=(paper_type)
260
+ if paper_type!=nil and !paper_type.is_a? String
261
+ raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: paper_type EXPECTED TYPE: String', nil, nil)
262
+ end
263
+ @paper_type = paper_type
264
+ @key_modified['paper_type'] = 1
265
+ end
266
+
267
+ # The method to get the view_type
268
+ # @return A String value
269
+
270
+ def view_type
271
+ @view_type
272
+ end
273
+
274
+ # The method to set the value to view_type
275
+ # @param view_type [String] A String
276
+
277
+ def view_type=(view_type)
278
+ if view_type!=nil and !view_type.is_a? String
279
+ raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: view_type EXPECTED TYPE: String', nil, nil)
280
+ end
281
+ @view_type = view_type
282
+ @key_modified['view_type'] = 1
283
+ end
284
+
285
+ # The method to get the mail_format
286
+ # @return A String value
287
+
288
+ def mail_format
289
+ @mail_format
290
+ end
291
+
292
+ # The method to set the value to mail_format
293
+ # @param mail_format [String] A String
294
+
295
+ def mail_format=(mail_format)
296
+ if mail_format!=nil and !mail_format.is_a? String
297
+ raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: mail_format EXPECTED TYPE: String', nil, nil)
298
+ end
299
+ @mail_format = mail_format
300
+ @key_modified['mail_format'] = 1
301
+ end
302
+
303
+ # The method to get the consent_email
304
+ # @return A Boolean value
305
+
306
+ def consent_email
307
+ @consent_email
308
+ end
309
+
310
+ # The method to set the value to consent_email
311
+ # @param consent_email [Boolean] A Boolean
312
+
313
+ def consent_email=(consent_email)
314
+ if consent_email!=nil and ! [true, false].include?consent_email
315
+ raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: consent_email EXPECTED TYPE: Boolean', nil, nil)
316
+ end
317
+ @consent_email = consent_email
318
+ @key_modified['consent_email'] = 1
319
+ end
320
+
321
+ # The method to get the org_email
322
+ # @return A Boolean value
323
+
324
+ def org_email
325
+ @org_email
326
+ end
327
+
328
+ # The method to set the value to org_email
329
+ # @param org_email [Boolean] A Boolean
330
+
331
+ def org_email=(org_email)
332
+ if org_email!=nil and ! [true, false].include?org_email
333
+ raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: org_email EXPECTED TYPE: Boolean', nil, nil)
334
+ end
335
+ @org_email = org_email
336
+ @key_modified['org_email'] = 1
337
+ end
338
+
339
+ # The method to get the attachments
340
+ # @return An instance of Array
341
+
342
+ def attachments
343
+ @attachments
344
+ end
345
+
346
+ # The method to set the value to attachments
347
+ # @param attachments [Array] An instance of Array
348
+
349
+ def attachments=(attachments)
350
+ if attachments!=nil and !attachments.is_a? Array
351
+ raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: attachments EXPECTED TYPE: Array', nil, nil)
352
+ end
353
+ @attachments = attachments
354
+ @key_modified['attachments'] = 1
355
+ end
356
+
357
+ # The method to get the inventory_details
358
+ # @return An instance of InventoryDetails
359
+
360
+ def inventory_details
361
+ @inventory_details
362
+ end
363
+
364
+ # The method to set the value to inventory_details
365
+ # @param inventory_details [InventoryDetails] An instance of InventoryDetails
366
+
367
+ def inventory_details=(inventory_details)
368
+ if inventory_details!=nil and !inventory_details.is_a? InventoryDetails
369
+ raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: inventory_details EXPECTED TYPE: InventoryDetails', nil, nil)
370
+ end
371
+ @inventory_details = inventory_details
372
+ @key_modified['inventory_details'] = 1
373
+ end
374
+
375
+ # The method to get the data_subject_request
376
+ # @return An instance of DataSubjectRequest
377
+
378
+ def data_subject_request
379
+ @data_subject_request
380
+ end
381
+
382
+ # The method to set the value to data_subject_request
383
+ # @param data_subject_request [DataSubjectRequest] An instance of DataSubjectRequest
384
+
385
+ def data_subject_request=(data_subject_request)
386
+ if data_subject_request!=nil and !data_subject_request.is_a? DataSubjectRequest
387
+ raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: data_subject_request EXPECTED TYPE: DataSubjectRequest', nil, nil)
388
+ end
389
+ @data_subject_request = data_subject_request
390
+ @key_modified['data_subject_request'] = 1
391
+ end
392
+
393
+ # The method to check if the user has modified the given key
394
+ # @param key [String] A String
395
+ # @return A Integer value
396
+
397
+ def is_key_modified(key)
398
+ if key!=nil and !key.is_a? String
399
+ raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: key EXPECTED TYPE: String', nil, nil)
400
+ end
401
+ if @key_modified.key?(key)
402
+ return @key_modified[key]
403
+ end
404
+
405
+ nil
406
+ end
407
+
408
+ # The method to mark the given key as modified
409
+ # @param key [String] A String
410
+ # @param modification [Integer] A Integer
411
+
412
+ def set_key_modified(key, modification)
413
+ if key!=nil and !key.is_a? String
414
+ raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: key EXPECTED TYPE: String', nil, nil)
415
+ end
416
+ if modification!=nil and !modification.is_a? Integer
417
+ raise SDKException.new(Constants::DATA_TYPE_ERROR, 'KEY: modification EXPECTED TYPE: Integer', nil, nil)
418
+ end
419
+ @key_modified[key] = modification
420
+ end
421
+
422
+ end
423
+ end