merge_ats_client 3.0.2 → 3.0.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (72) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +198 -186
  3. data/docs/Activity.md +2 -2
  4. data/docs/Application.md +2 -2
  5. data/docs/AsyncPassthroughApi.md +155 -0
  6. data/docs/AsyncPassthroughReciept.md +18 -0
  7. data/docs/Attachment.md +2 -2
  8. data/docs/Candidate.md +2 -2
  9. data/docs/CandidatesApi.md +156 -0
  10. data/docs/DeleteAccountApi.md +9 -9
  11. data/docs/Department.md +2 -2
  12. data/docs/EEOC.md +2 -2
  13. data/docs/EndUserDetailsRequest.md +1 -1
  14. data/docs/Job.md +2 -2
  15. data/docs/JobInterviewStage.md +2 -2
  16. data/docs/Offer.md +2 -2
  17. data/docs/Office.md +2 -2
  18. data/docs/PatchedCandidateEndpointRequest.md +20 -0
  19. data/docs/PatchedCandidateRequest.md +50 -0
  20. data/docs/RejectReason.md +2 -2
  21. data/docs/RemoteData.md +1 -1
  22. data/docs/RemoteUser.md +2 -2
  23. data/docs/ScheduledInterview.md +2 -2
  24. data/docs/Scorecard.md +2 -2
  25. data/docs/Tag.md +2 -2
  26. data/lib/merge_ats_client/api/async_passthrough_api.rb +160 -0
  27. data/lib/merge_ats_client/api/candidates_api.rb +150 -0
  28. data/lib/merge_ats_client/api/delete_account_api.rb +7 -7
  29. data/lib/merge_ats_client/models/activity.rb +10 -10
  30. data/lib/merge_ats_client/models/application.rb +10 -10
  31. data/lib/merge_ats_client/models/async_passthrough_reciept.rb +223 -0
  32. data/lib/merge_ats_client/models/attachment.rb +10 -10
  33. data/lib/merge_ats_client/models/candidate.rb +10 -10
  34. data/lib/merge_ats_client/models/department.rb +10 -10
  35. data/lib/merge_ats_client/models/eeoc.rb +10 -10
  36. data/lib/merge_ats_client/models/end_user_details_request.rb +1 -1
  37. data/lib/merge_ats_client/models/job.rb +10 -10
  38. data/lib/merge_ats_client/models/job_interview_stage.rb +10 -10
  39. data/lib/merge_ats_client/models/offer.rb +10 -10
  40. data/lib/merge_ats_client/models/office.rb +10 -10
  41. data/lib/merge_ats_client/models/patched_candidate_endpoint_request.rb +237 -0
  42. data/lib/merge_ats_client/models/patched_candidate_request.rb +418 -0
  43. data/lib/merge_ats_client/models/reject_reason.rb +10 -10
  44. data/lib/merge_ats_client/models/remote_data.rb +3 -4
  45. data/lib/merge_ats_client/models/remote_user.rb +10 -10
  46. data/lib/merge_ats_client/models/scheduled_interview.rb +10 -10
  47. data/lib/merge_ats_client/models/scorecard.rb +10 -10
  48. data/lib/merge_ats_client/models/tag.rb +10 -10
  49. data/lib/merge_ats_client/version.rb +1 -1
  50. data/lib/merge_ats_client.rb +4 -0
  51. data/spec/api/async_passthrough_api_spec.rb +59 -0
  52. data/spec/api/candidates_api_spec.rb +27 -0
  53. data/spec/api/delete_account_api_spec.rb +2 -2
  54. data/spec/models/activity_spec.rb +2 -2
  55. data/spec/models/application_spec.rb +2 -2
  56. data/spec/models/async_passthrough_reciept_spec.rb +34 -0
  57. data/spec/models/attachment_spec.rb +2 -2
  58. data/spec/models/candidate_spec.rb +2 -2
  59. data/spec/models/department_spec.rb +2 -2
  60. data/spec/models/eeoc_spec.rb +2 -2
  61. data/spec/models/job_interview_stage_spec.rb +2 -2
  62. data/spec/models/job_spec.rb +2 -2
  63. data/spec/models/offer_spec.rb +2 -2
  64. data/spec/models/office_spec.rb +2 -2
  65. data/spec/models/patched_candidate_endpoint_request_spec.rb +40 -0
  66. data/spec/models/patched_candidate_request_spec.rb +130 -0
  67. data/spec/models/reject_reason_spec.rb +2 -2
  68. data/spec/models/remote_user_spec.rb +2 -2
  69. data/spec/models/scheduled_interview_spec.rb +2 -2
  70. data/spec/models/scorecard_spec.rb +2 -2
  71. data/spec/models/tag_spec.rb +2 -2
  72. metadata +140 -124
@@ -42,11 +42,11 @@ module MergeATSClient
42
42
  # Indicates whether or not this object has been deleted by third party webhooks.
43
43
  attr_accessor :remote_was_deleted
44
44
 
45
- attr_accessor :field_mappings
46
-
47
45
  # This is the datetime that this object was last updated by Merge
48
46
  attr_accessor :modified_at
49
47
 
48
+ attr_accessor :field_mappings
49
+
50
50
  attr_accessor :remote_data
51
51
 
52
52
  # Attribute mapping from ruby-style variable name to JSON key.
@@ -61,8 +61,8 @@ module MergeATSClient
61
61
  :'submitted_at' => :'submitted_at',
62
62
  :'overall_recommendation' => :'overall_recommendation',
63
63
  :'remote_was_deleted' => :'remote_was_deleted',
64
- :'field_mappings' => :'field_mappings',
65
64
  :'modified_at' => :'modified_at',
65
+ :'field_mappings' => :'field_mappings',
66
66
  :'remote_data' => :'remote_data'
67
67
  }
68
68
  end
@@ -84,8 +84,8 @@ module MergeATSClient
84
84
  :'submitted_at' => :'Time',
85
85
  :'overall_recommendation' => :'OverallRecommendationEnum',
86
86
  :'remote_was_deleted' => :'Boolean',
87
- :'field_mappings' => :'Hash<String, Object>',
88
87
  :'modified_at' => :'Time',
88
+ :'field_mappings' => :'Hash<String, Object>',
89
89
  :'remote_data' => :'Array<RemoteData>'
90
90
  }
91
91
  end
@@ -156,16 +156,16 @@ module MergeATSClient
156
156
  self.remote_was_deleted = attributes[:'remote_was_deleted']
157
157
  end
158
158
 
159
+ if attributes.key?(:'modified_at')
160
+ self.modified_at = attributes[:'modified_at']
161
+ end
162
+
159
163
  if attributes.key?(:'field_mappings')
160
164
  if (value = attributes[:'field_mappings']).is_a?(Hash)
161
165
  self.field_mappings = value
162
166
  end
163
167
  end
164
168
 
165
- if attributes.key?(:'modified_at')
166
- self.modified_at = attributes[:'modified_at']
167
- end
168
-
169
169
  if attributes.key?(:'remote_data')
170
170
  if (value = attributes[:'remote_data']).is_a?(Array)
171
171
  self.remote_data = value
@@ -200,8 +200,8 @@ module MergeATSClient
200
200
  submitted_at == o.submitted_at &&
201
201
  overall_recommendation == o.overall_recommendation &&
202
202
  remote_was_deleted == o.remote_was_deleted &&
203
- field_mappings == o.field_mappings &&
204
203
  modified_at == o.modified_at &&
204
+ field_mappings == o.field_mappings &&
205
205
  remote_data == o.remote_data
206
206
  end
207
207
 
@@ -214,7 +214,7 @@ module MergeATSClient
214
214
  # Calculates hash code according to all attributes.
215
215
  # @return [Integer] Hash code
216
216
  def hash
217
- [id, remote_id, application, interview, interviewer, remote_created_at, submitted_at, overall_recommendation, remote_was_deleted, field_mappings, modified_at, remote_data].hash
217
+ [id, remote_id, application, interview, interviewer, remote_created_at, submitted_at, overall_recommendation, remote_was_deleted, modified_at, field_mappings, remote_data].hash
218
218
  end
219
219
 
220
220
  # Builds the object from hash
@@ -25,11 +25,11 @@ module MergeATSClient
25
25
  # Indicates whether or not this object has been deleted by third party webhooks.
26
26
  attr_accessor :remote_was_deleted
27
27
 
28
- attr_accessor :field_mappings
29
-
30
28
  # This is the datetime that this object was last updated by Merge
31
29
  attr_accessor :modified_at
32
30
 
31
+ attr_accessor :field_mappings
32
+
33
33
  attr_accessor :remote_data
34
34
 
35
35
  # Attribute mapping from ruby-style variable name to JSON key.
@@ -38,8 +38,8 @@ module MergeATSClient
38
38
  :'remote_id' => :'remote_id',
39
39
  :'name' => :'name',
40
40
  :'remote_was_deleted' => :'remote_was_deleted',
41
- :'field_mappings' => :'field_mappings',
42
41
  :'modified_at' => :'modified_at',
42
+ :'field_mappings' => :'field_mappings',
43
43
  :'remote_data' => :'remote_data'
44
44
  }
45
45
  end
@@ -55,8 +55,8 @@ module MergeATSClient
55
55
  :'remote_id' => :'String',
56
56
  :'name' => :'String',
57
57
  :'remote_was_deleted' => :'Boolean',
58
- :'field_mappings' => :'Hash<String, Object>',
59
58
  :'modified_at' => :'Time',
59
+ :'field_mappings' => :'Hash<String, Object>',
60
60
  :'remote_data' => :'Array<Hash<String, Object>>'
61
61
  }
62
62
  end
@@ -98,16 +98,16 @@ module MergeATSClient
98
98
  self.remote_was_deleted = attributes[:'remote_was_deleted']
99
99
  end
100
100
 
101
+ if attributes.key?(:'modified_at')
102
+ self.modified_at = attributes[:'modified_at']
103
+ end
104
+
101
105
  if attributes.key?(:'field_mappings')
102
106
  if (value = attributes[:'field_mappings']).is_a?(Hash)
103
107
  self.field_mappings = value
104
108
  end
105
109
  end
106
110
 
107
- if attributes.key?(:'modified_at')
108
- self.modified_at = attributes[:'modified_at']
109
- end
110
-
111
111
  if attributes.key?(:'remote_data')
112
112
  if (value = attributes[:'remote_data']).is_a?(Array)
113
113
  self.remote_data = value
@@ -136,8 +136,8 @@ module MergeATSClient
136
136
  remote_id == o.remote_id &&
137
137
  name == o.name &&
138
138
  remote_was_deleted == o.remote_was_deleted &&
139
- field_mappings == o.field_mappings &&
140
139
  modified_at == o.modified_at &&
140
+ field_mappings == o.field_mappings &&
141
141
  remote_data == o.remote_data
142
142
  end
143
143
 
@@ -150,7 +150,7 @@ module MergeATSClient
150
150
  # Calculates hash code according to all attributes.
151
151
  # @return [Integer] Hash code
152
152
  def hash
153
- [remote_id, name, remote_was_deleted, field_mappings, modified_at, remote_data].hash
153
+ [remote_id, name, remote_was_deleted, modified_at, field_mappings, remote_data].hash
154
154
  end
155
155
 
156
156
  # Builds the object from hash
@@ -11,5 +11,5 @@ OpenAPI Generator version: 5.1.1
11
11
  =end
12
12
 
13
13
  module MergeATSClient
14
- VERSION = '3.0.2'
14
+ VERSION = '3.0.3'
15
15
  end
@@ -33,6 +33,7 @@ require 'merge_ats_client/models/application'
33
33
  require 'merge_ats_client/models/application_endpoint_request'
34
34
  require 'merge_ats_client/models/application_request'
35
35
  require 'merge_ats_client/models/application_response'
36
+ require 'merge_ats_client/models/async_passthrough_reciept'
36
37
  require 'merge_ats_client/models/attachment'
37
38
  require 'merge_ats_client/models/attachment_endpoint_request'
38
39
  require 'merge_ats_client/models/attachment_request'
@@ -104,6 +105,8 @@ require 'merge_ats_client/models/paginated_scheduled_interview_list'
104
105
  require 'merge_ats_client/models/paginated_scorecard_list'
105
106
  require 'merge_ats_client/models/paginated_sync_status_list'
106
107
  require 'merge_ats_client/models/paginated_tag_list'
108
+ require 'merge_ats_client/models/patched_candidate_endpoint_request'
109
+ require 'merge_ats_client/models/patched_candidate_request'
107
110
  require 'merge_ats_client/models/phone_number'
108
111
  require 'merge_ats_client/models/phone_number_request'
109
112
  require 'merge_ats_client/models/phone_number_type_enum'
@@ -143,6 +146,7 @@ require 'merge_ats_client/api/account_details_api'
143
146
  require 'merge_ats_client/api/account_token_api'
144
147
  require 'merge_ats_client/api/activities_api'
145
148
  require 'merge_ats_client/api/applications_api'
149
+ require 'merge_ats_client/api/async_passthrough_api'
146
150
  require 'merge_ats_client/api/attachments_api'
147
151
  require 'merge_ats_client/api/available_actions_api'
148
152
  require 'merge_ats_client/api/candidates_api'
@@ -0,0 +1,59 @@
1
+ =begin
2
+ #Merge ATS API
3
+
4
+ #The unified API for building rich integrations with multiple Applicant Tracking System platforms.
5
+
6
+ The version of the OpenAPI document: 1.0
7
+ Contact: hello@merge.dev
8
+ Generated by: https://openapi-generator.tech
9
+ OpenAPI Generator version: 5.1.1
10
+
11
+ =end
12
+
13
+ require 'spec_helper'
14
+ require 'json'
15
+
16
+ # Unit tests for MergeATSClient::AsyncPassthroughApi
17
+ # Automatically generated by openapi-generator (https://openapi-generator.tech)
18
+ # Please update as you see appropriate
19
+ describe 'AsyncPassthroughApi' do
20
+ before do
21
+ # run before each test
22
+ @api_instance = MergeATSClient::AsyncPassthroughApi.new
23
+ end
24
+
25
+ after do
26
+ # run after each test
27
+ end
28
+
29
+ describe 'test an instance of AsyncPassthroughApi' do
30
+ it 'should create an instance of AsyncPassthroughApi' do
31
+ expect(@api_instance).to be_instance_of(MergeATSClient::AsyncPassthroughApi)
32
+ end
33
+ end
34
+
35
+ # unit tests for async_passthrough_create
36
+ # Asynchronously pull data from an endpoint not currently supported by Merge.
37
+ # @param x_account_token Token identifying the end user.
38
+ # @param data_passthrough_request
39
+ # @param [Hash] opts the optional parameters
40
+ # @return [AsyncPassthroughReciept]
41
+ describe 'async_passthrough_create test' do
42
+ it 'should work' do
43
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
44
+ end
45
+ end
46
+
47
+ # unit tests for async_passthrough_retrieve
48
+ # Retrieves data from earlier async-passthrough POST request
49
+ # @param x_account_token Token identifying the end user.
50
+ # @param async_passthrough_receipt_id
51
+ # @param [Hash] opts the optional parameters
52
+ # @return [RemoteResponse]
53
+ describe 'async_passthrough_retrieve test' do
54
+ it 'should work' do
55
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
56
+ end
57
+ end
58
+
59
+ end
@@ -84,6 +84,18 @@ describe 'CandidatesApi' do
84
84
  end
85
85
  end
86
86
 
87
+ # unit tests for candidates_meta_patch_retrieve
88
+ # Returns metadata for &#x60;Candidate&#x60; PATCHs.
89
+ # @param x_account_token Token identifying the end user.
90
+ # @param id
91
+ # @param [Hash] opts the optional parameters
92
+ # @return [MetaResponse]
93
+ describe 'candidates_meta_patch_retrieve test' do
94
+ it 'should work' do
95
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
96
+ end
97
+ end
98
+
87
99
  # unit tests for candidates_meta_post_retrieve
88
100
  # Returns metadata for &#x60;Candidate&#x60; POSTs.
89
101
  # @param x_account_token Token identifying the end user.
@@ -95,6 +107,21 @@ describe 'CandidatesApi' do
95
107
  end
96
108
  end
97
109
 
110
+ # unit tests for candidates_partial_update
111
+ # Updates a &#x60;Candidate&#x60; object with the given &#x60;id&#x60;.
112
+ # @param x_account_token Token identifying the end user.
113
+ # @param id
114
+ # @param patched_candidate_endpoint_request
115
+ # @param [Hash] opts the optional parameters
116
+ # @option opts [Boolean] :is_debug_mode Whether to include debug fields (such as log file links) in the response.
117
+ # @option opts [Boolean] :run_async Whether or not third-party updates should be run asynchronously.
118
+ # @return [CandidateResponse]
119
+ describe 'candidates_partial_update test' do
120
+ it 'should work' do
121
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
122
+ end
123
+ end
124
+
98
125
  # unit tests for candidates_retrieve
99
126
  # Returns a &#x60;Candidate&#x60; object with the given &#x60;id&#x60;.
100
127
  # @param x_account_token Token identifying the end user.
@@ -32,12 +32,12 @@ describe 'DeleteAccountApi' do
32
32
  end
33
33
  end
34
34
 
35
- # unit tests for delete_account_create
35
+ # unit tests for delete_account_delete
36
36
  # Delete a linked account.
37
37
  # @param x_account_token Token identifying the end user.
38
38
  # @param [Hash] opts the optional parameters
39
39
  # @return [nil]
40
- describe 'delete_account_create test' do
40
+ describe 'delete_account_delete test' do
41
41
  it 'should work' do
42
42
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
43
43
  end
@@ -85,13 +85,13 @@ describe MergeATSClient::Activity do
85
85
  end
86
86
  end
87
87
 
88
- describe 'test attribute "field_mappings"' do
88
+ describe 'test attribute "modified_at"' do
89
89
  it 'should work' do
90
90
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
91
91
  end
92
92
  end
93
93
 
94
- describe 'test attribute "modified_at"' do
94
+ describe 'test attribute "field_mappings"' do
95
95
  it 'should work' do
96
96
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
97
97
  end
@@ -91,13 +91,13 @@ describe MergeATSClient::Application do
91
91
  end
92
92
  end
93
93
 
94
- describe 'test attribute "field_mappings"' do
94
+ describe 'test attribute "modified_at"' do
95
95
  it 'should work' do
96
96
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
97
97
  end
98
98
  end
99
99
 
100
- describe 'test attribute "modified_at"' do
100
+ describe 'test attribute "field_mappings"' do
101
101
  it 'should work' do
102
102
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
103
103
  end
@@ -0,0 +1,34 @@
1
+ =begin
2
+ #Merge ATS API
3
+
4
+ #The unified API for building rich integrations with multiple Applicant Tracking System platforms.
5
+
6
+ The version of the OpenAPI document: 1.0
7
+ Contact: hello@merge.dev
8
+ Generated by: https://openapi-generator.tech
9
+ OpenAPI Generator version: 5.1.1
10
+
11
+ =end
12
+
13
+ require 'spec_helper'
14
+ require 'json'
15
+ require 'date'
16
+
17
+ # Unit tests for MergeATSClient::AsyncPassthroughReciept
18
+ # Automatically generated by openapi-generator (https://openapi-generator.tech)
19
+ # Please update as you see appropriate
20
+ describe MergeATSClient::AsyncPassthroughReciept do
21
+ let(:instance) { MergeATSClient::AsyncPassthroughReciept.new }
22
+
23
+ describe 'test an instance of AsyncPassthroughReciept' do
24
+ it 'should create an instance of AsyncPassthroughReciept' do
25
+ expect(instance).to be_instance_of(MergeATSClient::AsyncPassthroughReciept)
26
+ end
27
+ end
28
+ describe 'test attribute "async_passthrough_receipt_id"' do
29
+ it 'should work' do
30
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
31
+ end
32
+ end
33
+
34
+ end
@@ -67,13 +67,13 @@ describe MergeATSClient::Attachment do
67
67
  end
68
68
  end
69
69
 
70
- describe 'test attribute "field_mappings"' do
70
+ describe 'test attribute "modified_at"' do
71
71
  it 'should work' do
72
72
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
73
73
  end
74
74
  end
75
75
 
76
- describe 'test attribute "modified_at"' do
76
+ describe 'test attribute "field_mappings"' do
77
77
  it 'should work' do
78
78
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
79
79
  end
@@ -139,13 +139,13 @@ describe MergeATSClient::Candidate do
139
139
  end
140
140
  end
141
141
 
142
- describe 'test attribute "field_mappings"' do
142
+ describe 'test attribute "modified_at"' do
143
143
  it 'should work' do
144
144
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
145
145
  end
146
146
  end
147
147
 
148
- describe 'test attribute "modified_at"' do
148
+ describe 'test attribute "field_mappings"' do
149
149
  it 'should work' do
150
150
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
151
151
  end
@@ -49,13 +49,13 @@ describe MergeATSClient::Department do
49
49
  end
50
50
  end
51
51
 
52
- describe 'test attribute "field_mappings"' do
52
+ describe 'test attribute "modified_at"' do
53
53
  it 'should work' do
54
54
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
55
55
  end
56
56
  end
57
57
 
58
- describe 'test attribute "modified_at"' do
58
+ describe 'test attribute "field_mappings"' do
59
59
  it 'should work' do
60
60
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
61
61
  end
@@ -79,13 +79,13 @@ describe MergeATSClient::EEOC do
79
79
  end
80
80
  end
81
81
 
82
- describe 'test attribute "field_mappings"' do
82
+ describe 'test attribute "modified_at"' do
83
83
  it 'should work' do
84
84
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
85
85
  end
86
86
  end
87
87
 
88
- describe 'test attribute "modified_at"' do
88
+ describe 'test attribute "field_mappings"' do
89
89
  it 'should work' do
90
90
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
91
91
  end
@@ -61,13 +61,13 @@ describe MergeATSClient::JobInterviewStage do
61
61
  end
62
62
  end
63
63
 
64
- describe 'test attribute "field_mappings"' do
64
+ describe 'test attribute "modified_at"' do
65
65
  it 'should work' do
66
66
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
67
67
  end
68
68
  end
69
69
 
70
- describe 'test attribute "modified_at"' do
70
+ describe 'test attribute "field_mappings"' do
71
71
  it 'should work' do
72
72
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
73
73
  end
@@ -115,13 +115,13 @@ describe MergeATSClient::Job do
115
115
  end
116
116
  end
117
117
 
118
- describe 'test attribute "field_mappings"' do
118
+ describe 'test attribute "modified_at"' do
119
119
  it 'should work' do
120
120
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
121
121
  end
122
122
  end
123
123
 
124
- describe 'test attribute "modified_at"' do
124
+ describe 'test attribute "field_mappings"' do
125
125
  it 'should work' do
126
126
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
127
127
  end
@@ -85,13 +85,13 @@ describe MergeATSClient::Offer do
85
85
  end
86
86
  end
87
87
 
88
- describe 'test attribute "field_mappings"' do
88
+ describe 'test attribute "modified_at"' do
89
89
  it 'should work' do
90
90
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
91
91
  end
92
92
  end
93
93
 
94
- describe 'test attribute "modified_at"' do
94
+ describe 'test attribute "field_mappings"' do
95
95
  it 'should work' do
96
96
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
97
97
  end
@@ -55,13 +55,13 @@ describe MergeATSClient::Office do
55
55
  end
56
56
  end
57
57
 
58
- describe 'test attribute "field_mappings"' do
58
+ describe 'test attribute "modified_at"' do
59
59
  it 'should work' do
60
60
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
61
61
  end
62
62
  end
63
63
 
64
- describe 'test attribute "modified_at"' do
64
+ describe 'test attribute "field_mappings"' do
65
65
  it 'should work' do
66
66
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
67
67
  end
@@ -0,0 +1,40 @@
1
+ =begin
2
+ #Merge ATS API
3
+
4
+ #The unified API for building rich integrations with multiple Applicant Tracking System platforms.
5
+
6
+ The version of the OpenAPI document: 1.0
7
+ Contact: hello@merge.dev
8
+ Generated by: https://openapi-generator.tech
9
+ OpenAPI Generator version: 5.1.1
10
+
11
+ =end
12
+
13
+ require 'spec_helper'
14
+ require 'json'
15
+ require 'date'
16
+
17
+ # Unit tests for MergeATSClient::PatchedCandidateEndpointRequest
18
+ # Automatically generated by openapi-generator (https://openapi-generator.tech)
19
+ # Please update as you see appropriate
20
+ describe MergeATSClient::PatchedCandidateEndpointRequest do
21
+ let(:instance) { MergeATSClient::PatchedCandidateEndpointRequest.new }
22
+
23
+ describe 'test an instance of PatchedCandidateEndpointRequest' do
24
+ it 'should create an instance of PatchedCandidateEndpointRequest' do
25
+ expect(instance).to be_instance_of(MergeATSClient::PatchedCandidateEndpointRequest)
26
+ end
27
+ end
28
+ describe 'test attribute "model"' do
29
+ it 'should work' do
30
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
31
+ end
32
+ end
33
+
34
+ describe 'test attribute "remote_user_id"' do
35
+ it 'should work' do
36
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
37
+ end
38
+ end
39
+
40
+ end