merge_ats_client 2.0.1 → 3.0.0
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.
- checksums.yaml +4 -4
- data/LICENSE.md +16 -0
- data/README.md +16 -4
- data/docs/ConditionSchema.md +30 -0
- data/docs/ConditionTypeEnum.md +15 -0
- data/docs/EmailAddressRequest.md +5 -1
- data/docs/EndUserDetailsRequest.md +2 -2
- data/docs/LinkedAccountCondition.md +28 -0
- data/docs/LinkedAccountConditionRequest.md +22 -0
- data/docs/LinkedAccountSelectiveSyncConfiguration.md +18 -0
- data/docs/LinkedAccountSelectiveSyncConfigurationListRequest.md +18 -0
- data/docs/LinkedAccountSelectiveSyncConfigurationRequest.md +18 -0
- data/docs/OperatorSchema.md +20 -0
- data/docs/PaginatedConditionSchemaList.md +22 -0
- data/docs/PhoneNumberRequest.md +5 -1
- data/docs/SelectiveSyncApi.md +233 -0
- data/docs/UrlRequest.md +5 -1
- data/lib/merge_ats_client/api/selective_sync_api.rb +225 -0
- data/lib/merge_ats_client/models/access_role_enum.rb +1 -1
- data/lib/merge_ats_client/models/account_details_and_actions_status_enum.rb +1 -1
- data/lib/merge_ats_client/models/activity_type_enum.rb +1 -1
- data/lib/merge_ats_client/models/attachment_type_enum.rb +1 -1
- data/lib/merge_ats_client/models/categories_enum.rb +1 -1
- data/lib/merge_ats_client/models/category_enum.rb +1 -1
- data/lib/merge_ats_client/models/condition_schema.rb +297 -0
- data/lib/merge_ats_client/models/condition_type_enum.rb +50 -0
- data/lib/merge_ats_client/models/disability_status_enum.rb +1 -1
- data/lib/merge_ats_client/models/email_address_request.rb +29 -5
- data/lib/merge_ats_client/models/email_address_type_enum.rb +1 -1
- data/lib/merge_ats_client/models/encoding_enum.rb +1 -1
- data/lib/merge_ats_client/models/end_user_details_request.rb +2 -2
- data/lib/merge_ats_client/models/gender_enum.rb +1 -1
- data/lib/merge_ats_client/models/job_status_enum.rb +1 -1
- data/lib/merge_ats_client/models/linked_account_condition.rb +282 -0
- data/lib/merge_ats_client/models/linked_account_condition_request.rb +269 -0
- data/lib/merge_ats_client/models/linked_account_selective_sync_configuration.rb +221 -0
- data/lib/merge_ats_client/models/linked_account_selective_sync_configuration_list_request.rb +226 -0
- data/lib/merge_ats_client/models/linked_account_selective_sync_configuration_request.rb +226 -0
- data/lib/merge_ats_client/models/method_enum.rb +1 -1
- data/lib/merge_ats_client/models/offer_status_enum.rb +1 -1
- data/lib/merge_ats_client/models/operator_schema.rb +229 -0
- data/lib/merge_ats_client/models/overall_recommendation_enum.rb +1 -1
- data/lib/merge_ats_client/models/paginated_condition_schema_list.rb +240 -0
- data/lib/merge_ats_client/models/phone_number_request.rb +29 -5
- data/lib/merge_ats_client/models/phone_number_type_enum.rb +1 -1
- data/lib/merge_ats_client/models/race_enum.rb +1 -1
- data/lib/merge_ats_client/models/reason_enum.rb +1 -1
- data/lib/merge_ats_client/models/request_format_enum.rb +1 -1
- data/lib/merge_ats_client/models/response_type_enum.rb +1 -1
- data/lib/merge_ats_client/models/scheduled_interview_status_enum.rb +1 -1
- data/lib/merge_ats_client/models/sync_status_status_enum.rb +1 -1
- data/lib/merge_ats_client/models/url.rb +1 -1
- data/lib/merge_ats_client/models/url_request.rb +30 -6
- data/lib/merge_ats_client/models/url_type_enum.rb +1 -1
- data/lib/merge_ats_client/models/veteran_status_enum.rb +1 -1
- data/lib/merge_ats_client/models/visibility_enum.rb +1 -1
- data/lib/merge_ats_client/version.rb +1 -1
- data/lib/merge_ats_client.rb +10 -0
- data/spec/api/selective_sync_api_spec.rb +72 -0
- data/spec/models/condition_schema_spec.rb +70 -0
- data/spec/models/condition_type_enum_spec.rb +28 -0
- data/spec/models/email_address_request_spec.rb +12 -0
- data/spec/models/linked_account_condition_request_spec.rb +46 -0
- data/spec/models/linked_account_condition_spec.rb +64 -0
- data/spec/models/linked_account_selective_sync_configuration_list_request_spec.rb +34 -0
- data/spec/models/linked_account_selective_sync_configuration_request_spec.rb +34 -0
- data/spec/models/linked_account_selective_sync_configuration_spec.rb +34 -0
- data/spec/models/operator_schema_spec.rb +40 -0
- data/spec/models/paginated_condition_schema_list_spec.rb +46 -0
- data/spec/models/phone_number_request_spec.rb +12 -0
- data/spec/models/url_request_spec.rb +12 -0
- metadata +152 -111
@@ -14,7 +14,7 @@ require 'date'
|
|
14
14
|
require 'time'
|
15
15
|
|
16
16
|
module MergeATSClient
|
17
|
-
# # The Url Object ### Description The `Url` object is used to represent
|
17
|
+
# # The Url Object ### Description The `Url` object is used to represent hyperlinks associated with the parent model. ### Usage Example Fetch from the `GET Candidate` endpoint and view their website urls.
|
18
18
|
class UrlRequest
|
19
19
|
# The site's url.
|
20
20
|
attr_accessor :value
|
@@ -22,11 +22,17 @@ module MergeATSClient
|
|
22
22
|
# The type of site.
|
23
23
|
attr_accessor :url_type
|
24
24
|
|
25
|
+
attr_accessor :integration_params
|
26
|
+
|
27
|
+
attr_accessor :linked_account_params
|
28
|
+
|
25
29
|
# Attribute mapping from ruby-style variable name to JSON key.
|
26
30
|
def self.attribute_map
|
27
31
|
{
|
28
32
|
:'value' => :'value',
|
29
|
-
:'url_type' => :'url_type'
|
33
|
+
:'url_type' => :'url_type',
|
34
|
+
:'integration_params' => :'integration_params',
|
35
|
+
:'linked_account_params' => :'linked_account_params'
|
30
36
|
}
|
31
37
|
end
|
32
38
|
|
@@ -39,7 +45,9 @@ module MergeATSClient
|
|
39
45
|
def self.openapi_types
|
40
46
|
{
|
41
47
|
:'value' => :'String',
|
42
|
-
:'url_type' => :'UrlTypeEnum'
|
48
|
+
:'url_type' => :'UrlTypeEnum',
|
49
|
+
:'integration_params' => :'Hash<String, Object>',
|
50
|
+
:'linked_account_params' => :'Hash<String, Object>'
|
43
51
|
}
|
44
52
|
end
|
45
53
|
|
@@ -47,7 +55,9 @@ module MergeATSClient
|
|
47
55
|
def self.openapi_nullable
|
48
56
|
Set.new([
|
49
57
|
:'value',
|
50
|
-
:'url_type'
|
58
|
+
:'url_type',
|
59
|
+
:'integration_params',
|
60
|
+
:'linked_account_params'
|
51
61
|
])
|
52
62
|
end
|
53
63
|
|
@@ -73,6 +83,18 @@ module MergeATSClient
|
|
73
83
|
if attributes.key?(:'url_type')
|
74
84
|
self.url_type = attributes[:'url_type']
|
75
85
|
end
|
86
|
+
|
87
|
+
if attributes.key?(:'integration_params')
|
88
|
+
if (value = attributes[:'integration_params']).is_a?(Hash)
|
89
|
+
self.integration_params = value
|
90
|
+
end
|
91
|
+
end
|
92
|
+
|
93
|
+
if attributes.key?(:'linked_account_params')
|
94
|
+
if (value = attributes[:'linked_account_params']).is_a?(Hash)
|
95
|
+
self.linked_account_params = value
|
96
|
+
end
|
97
|
+
end
|
76
98
|
end
|
77
99
|
|
78
100
|
# Show invalid properties with the reasons. Usually used together with valid?
|
@@ -109,7 +131,9 @@ module MergeATSClient
|
|
109
131
|
return true if self.equal?(o)
|
110
132
|
self.class == o.class &&
|
111
133
|
value == o.value &&
|
112
|
-
url_type == o.url_type
|
134
|
+
url_type == o.url_type &&
|
135
|
+
integration_params == o.integration_params &&
|
136
|
+
linked_account_params == o.linked_account_params
|
113
137
|
end
|
114
138
|
|
115
139
|
# @see the `==` method
|
@@ -121,7 +145,7 @@ module MergeATSClient
|
|
121
145
|
# Calculates hash code according to all attributes.
|
122
146
|
# @return [Integer] Hash code
|
123
147
|
def hash
|
124
|
-
[value, url_type].hash
|
148
|
+
[value, url_type, integration_params, linked_account_params].hash
|
125
149
|
end
|
126
150
|
|
127
151
|
# Builds the object from hash
|
data/lib/merge_ats_client.rb
CHANGED
@@ -42,6 +42,8 @@ require 'merge_ats_client/models/candidate_request'
|
|
42
42
|
require 'merge_ats_client/models/candidate_response'
|
43
43
|
require 'merge_ats_client/models/categories_enum'
|
44
44
|
require 'merge_ats_client/models/category_enum'
|
45
|
+
require 'merge_ats_client/models/condition_schema'
|
46
|
+
require 'merge_ats_client/models/condition_type_enum'
|
45
47
|
require 'merge_ats_client/models/data_passthrough_request'
|
46
48
|
require 'merge_ats_client/models/debug_mode_log'
|
47
49
|
require 'merge_ats_client/models/debug_model_log_summary'
|
@@ -64,6 +66,11 @@ require 'merge_ats_client/models/job'
|
|
64
66
|
require 'merge_ats_client/models/job_interview_stage'
|
65
67
|
require 'merge_ats_client/models/job_status_enum'
|
66
68
|
require 'merge_ats_client/models/link_token'
|
69
|
+
require 'merge_ats_client/models/linked_account_condition'
|
70
|
+
require 'merge_ats_client/models/linked_account_condition_request'
|
71
|
+
require 'merge_ats_client/models/linked_account_selective_sync_configuration'
|
72
|
+
require 'merge_ats_client/models/linked_account_selective_sync_configuration_list_request'
|
73
|
+
require 'merge_ats_client/models/linked_account_selective_sync_configuration_request'
|
67
74
|
require 'merge_ats_client/models/linked_account_status'
|
68
75
|
require 'merge_ats_client/models/meta_response'
|
69
76
|
require 'merge_ats_client/models/method_enum'
|
@@ -72,12 +79,14 @@ require 'merge_ats_client/models/multipart_form_field_request'
|
|
72
79
|
require 'merge_ats_client/models/offer'
|
73
80
|
require 'merge_ats_client/models/offer_status_enum'
|
74
81
|
require 'merge_ats_client/models/office'
|
82
|
+
require 'merge_ats_client/models/operator_schema'
|
75
83
|
require 'merge_ats_client/models/overall_recommendation_enum'
|
76
84
|
require 'merge_ats_client/models/paginated_account_details_and_actions_list'
|
77
85
|
require 'merge_ats_client/models/paginated_activity_list'
|
78
86
|
require 'merge_ats_client/models/paginated_application_list'
|
79
87
|
require 'merge_ats_client/models/paginated_attachment_list'
|
80
88
|
require 'merge_ats_client/models/paginated_candidate_list'
|
89
|
+
require 'merge_ats_client/models/paginated_condition_schema_list'
|
81
90
|
require 'merge_ats_client/models/paginated_department_list'
|
82
91
|
require 'merge_ats_client/models/paginated_eeoc_list'
|
83
92
|
require 'merge_ats_client/models/paginated_issue_list'
|
@@ -146,6 +155,7 @@ require 'merge_ats_client/api/passthrough_api'
|
|
146
155
|
require 'merge_ats_client/api/regenerate_key_api'
|
147
156
|
require 'merge_ats_client/api/reject_reasons_api'
|
148
157
|
require 'merge_ats_client/api/scorecards_api'
|
158
|
+
require 'merge_ats_client/api/selective_sync_api'
|
149
159
|
require 'merge_ats_client/api/sync_status_api'
|
150
160
|
require 'merge_ats_client/api/tags_api'
|
151
161
|
require 'merge_ats_client/api/users_api'
|
@@ -0,0 +1,72 @@
|
|
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::SelectiveSyncApi
|
17
|
+
# Automatically generated by openapi-generator (https://openapi-generator.tech)
|
18
|
+
# Please update as you see appropriate
|
19
|
+
describe 'SelectiveSyncApi' do
|
20
|
+
before do
|
21
|
+
# run before each test
|
22
|
+
@api_instance = MergeATSClient::SelectiveSyncApi.new
|
23
|
+
end
|
24
|
+
|
25
|
+
after do
|
26
|
+
# run after each test
|
27
|
+
end
|
28
|
+
|
29
|
+
describe 'test an instance of SelectiveSyncApi' do
|
30
|
+
it 'should create an instance of SelectiveSyncApi' do
|
31
|
+
expect(@api_instance).to be_instance_of(MergeATSClient::SelectiveSyncApi)
|
32
|
+
end
|
33
|
+
end
|
34
|
+
|
35
|
+
# unit tests for selective_sync_configurations_list
|
36
|
+
# Get a linked account's selective syncs.
|
37
|
+
# @param x_account_token Token identifying the end user.
|
38
|
+
# @param [Hash] opts the optional parameters
|
39
|
+
# @return [Array<LinkedAccountSelectiveSyncConfiguration>]
|
40
|
+
describe 'selective_sync_configurations_list test' do
|
41
|
+
it 'should work' do
|
42
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
43
|
+
end
|
44
|
+
end
|
45
|
+
|
46
|
+
# unit tests for selective_sync_configurations_update
|
47
|
+
# Replace a linked account's selective syncs.
|
48
|
+
# @param x_account_token Token identifying the end user.
|
49
|
+
# @param linked_account_selective_sync_configuration_list_request
|
50
|
+
# @param [Hash] opts the optional parameters
|
51
|
+
# @return [Array<LinkedAccountSelectiveSyncConfiguration>]
|
52
|
+
describe 'selective_sync_configurations_update test' do
|
53
|
+
it 'should work' do
|
54
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
55
|
+
end
|
56
|
+
end
|
57
|
+
|
58
|
+
# unit tests for selective_sync_meta_list
|
59
|
+
# Get metadata for the conditions available to a linked account.
|
60
|
+
# @param x_account_token Token identifying the end user.
|
61
|
+
# @param [Hash] opts the optional parameters
|
62
|
+
# @option opts [String] :common_model
|
63
|
+
# @option opts [Integer] :cursor The pagination cursor value.
|
64
|
+
# @option opts [Integer] :page_size Number of results to return per page.
|
65
|
+
# @return [PaginatedConditionSchemaList]
|
66
|
+
describe 'selective_sync_meta_list test' do
|
67
|
+
it 'should work' do
|
68
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
69
|
+
end
|
70
|
+
end
|
71
|
+
|
72
|
+
end
|
@@ -0,0 +1,70 @@
|
|
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::ConditionSchema
|
18
|
+
# Automatically generated by openapi-generator (https://openapi-generator.tech)
|
19
|
+
# Please update as you see appropriate
|
20
|
+
describe MergeATSClient::ConditionSchema do
|
21
|
+
let(:instance) { MergeATSClient::ConditionSchema.new }
|
22
|
+
|
23
|
+
describe 'test an instance of ConditionSchema' do
|
24
|
+
it 'should create an instance of ConditionSchema' do
|
25
|
+
expect(instance).to be_instance_of(MergeATSClient::ConditionSchema)
|
26
|
+
end
|
27
|
+
end
|
28
|
+
describe 'test attribute "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
|
+
describe 'test attribute "common_model"' 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
|
+
describe 'test attribute "native_name"' do
|
41
|
+
it 'should work' do
|
42
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
43
|
+
end
|
44
|
+
end
|
45
|
+
|
46
|
+
describe 'test attribute "field_name"' do
|
47
|
+
it 'should work' do
|
48
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
49
|
+
end
|
50
|
+
end
|
51
|
+
|
52
|
+
describe 'test attribute "is_unique"' do
|
53
|
+
it 'should work' do
|
54
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
55
|
+
end
|
56
|
+
end
|
57
|
+
|
58
|
+
describe 'test attribute "condition_type"' do
|
59
|
+
it 'should work' do
|
60
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
61
|
+
end
|
62
|
+
end
|
63
|
+
|
64
|
+
describe 'test attribute "operators"' do
|
65
|
+
it 'should work' do
|
66
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
67
|
+
end
|
68
|
+
end
|
69
|
+
|
70
|
+
end
|
@@ -0,0 +1,28 @@
|
|
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::ConditionTypeEnum
|
18
|
+
# Automatically generated by openapi-generator (https://openapi-generator.tech)
|
19
|
+
# Please update as you see appropriate
|
20
|
+
describe MergeATSClient::ConditionTypeEnum do
|
21
|
+
let(:instance) { MergeATSClient::ConditionTypeEnum.new }
|
22
|
+
|
23
|
+
describe 'test an instance of ConditionTypeEnum' do
|
24
|
+
it 'should create an instance of ConditionTypeEnum' do
|
25
|
+
expect(instance).to be_instance_of(MergeATSClient::ConditionTypeEnum)
|
26
|
+
end
|
27
|
+
end
|
28
|
+
end
|
@@ -37,4 +37,16 @@ describe MergeATSClient::EmailAddressRequest do
|
|
37
37
|
end
|
38
38
|
end
|
39
39
|
|
40
|
+
describe 'test attribute "integration_params"' do
|
41
|
+
it 'should work' do
|
42
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
43
|
+
end
|
44
|
+
end
|
45
|
+
|
46
|
+
describe 'test attribute "linked_account_params"' do
|
47
|
+
it 'should work' do
|
48
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
49
|
+
end
|
50
|
+
end
|
51
|
+
|
40
52
|
end
|
@@ -0,0 +1,46 @@
|
|
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::LinkedAccountConditionRequest
|
18
|
+
# Automatically generated by openapi-generator (https://openapi-generator.tech)
|
19
|
+
# Please update as you see appropriate
|
20
|
+
describe MergeATSClient::LinkedAccountConditionRequest do
|
21
|
+
let(:instance) { MergeATSClient::LinkedAccountConditionRequest.new }
|
22
|
+
|
23
|
+
describe 'test an instance of LinkedAccountConditionRequest' do
|
24
|
+
it 'should create an instance of LinkedAccountConditionRequest' do
|
25
|
+
expect(instance).to be_instance_of(MergeATSClient::LinkedAccountConditionRequest)
|
26
|
+
end
|
27
|
+
end
|
28
|
+
describe 'test attribute "condition_schema_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
|
+
describe 'test attribute "operator"' 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
|
+
describe 'test attribute "value"' do
|
41
|
+
it 'should work' do
|
42
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
43
|
+
end
|
44
|
+
end
|
45
|
+
|
46
|
+
end
|
@@ -0,0 +1,64 @@
|
|
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::LinkedAccountCondition
|
18
|
+
# Automatically generated by openapi-generator (https://openapi-generator.tech)
|
19
|
+
# Please update as you see appropriate
|
20
|
+
describe MergeATSClient::LinkedAccountCondition do
|
21
|
+
let(:instance) { MergeATSClient::LinkedAccountCondition.new }
|
22
|
+
|
23
|
+
describe 'test an instance of LinkedAccountCondition' do
|
24
|
+
it 'should create an instance of LinkedAccountCondition' do
|
25
|
+
expect(instance).to be_instance_of(MergeATSClient::LinkedAccountCondition)
|
26
|
+
end
|
27
|
+
end
|
28
|
+
describe 'test attribute "condition_schema_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
|
+
describe 'test attribute "common_model"' 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
|
+
describe 'test attribute "native_name"' do
|
41
|
+
it 'should work' do
|
42
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
43
|
+
end
|
44
|
+
end
|
45
|
+
|
46
|
+
describe 'test attribute "operator"' do
|
47
|
+
it 'should work' do
|
48
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
49
|
+
end
|
50
|
+
end
|
51
|
+
|
52
|
+
describe 'test attribute "value"' do
|
53
|
+
it 'should work' do
|
54
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
55
|
+
end
|
56
|
+
end
|
57
|
+
|
58
|
+
describe 'test attribute "field_name"' do
|
59
|
+
it 'should work' do
|
60
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
61
|
+
end
|
62
|
+
end
|
63
|
+
|
64
|
+
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::LinkedAccountSelectiveSyncConfigurationListRequest
|
18
|
+
# Automatically generated by openapi-generator (https://openapi-generator.tech)
|
19
|
+
# Please update as you see appropriate
|
20
|
+
describe MergeATSClient::LinkedAccountSelectiveSyncConfigurationListRequest do
|
21
|
+
let(:instance) { MergeATSClient::LinkedAccountSelectiveSyncConfigurationListRequest.new }
|
22
|
+
|
23
|
+
describe 'test an instance of LinkedAccountSelectiveSyncConfigurationListRequest' do
|
24
|
+
it 'should create an instance of LinkedAccountSelectiveSyncConfigurationListRequest' do
|
25
|
+
expect(instance).to be_instance_of(MergeATSClient::LinkedAccountSelectiveSyncConfigurationListRequest)
|
26
|
+
end
|
27
|
+
end
|
28
|
+
describe 'test attribute "sync_configurations"' 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
|
@@ -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::LinkedAccountSelectiveSyncConfigurationRequest
|
18
|
+
# Automatically generated by openapi-generator (https://openapi-generator.tech)
|
19
|
+
# Please update as you see appropriate
|
20
|
+
describe MergeATSClient::LinkedAccountSelectiveSyncConfigurationRequest do
|
21
|
+
let(:instance) { MergeATSClient::LinkedAccountSelectiveSyncConfigurationRequest.new }
|
22
|
+
|
23
|
+
describe 'test an instance of LinkedAccountSelectiveSyncConfigurationRequest' do
|
24
|
+
it 'should create an instance of LinkedAccountSelectiveSyncConfigurationRequest' do
|
25
|
+
expect(instance).to be_instance_of(MergeATSClient::LinkedAccountSelectiveSyncConfigurationRequest)
|
26
|
+
end
|
27
|
+
end
|
28
|
+
describe 'test attribute "linked_account_conditions"' 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
|
@@ -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::LinkedAccountSelectiveSyncConfiguration
|
18
|
+
# Automatically generated by openapi-generator (https://openapi-generator.tech)
|
19
|
+
# Please update as you see appropriate
|
20
|
+
describe MergeATSClient::LinkedAccountSelectiveSyncConfiguration do
|
21
|
+
let(:instance) { MergeATSClient::LinkedAccountSelectiveSyncConfiguration.new }
|
22
|
+
|
23
|
+
describe 'test an instance of LinkedAccountSelectiveSyncConfiguration' do
|
24
|
+
it 'should create an instance of LinkedAccountSelectiveSyncConfiguration' do
|
25
|
+
expect(instance).to be_instance_of(MergeATSClient::LinkedAccountSelectiveSyncConfiguration)
|
26
|
+
end
|
27
|
+
end
|
28
|
+
describe 'test attribute "linked_account_conditions"' 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
|
@@ -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::OperatorSchema
|
18
|
+
# Automatically generated by openapi-generator (https://openapi-generator.tech)
|
19
|
+
# Please update as you see appropriate
|
20
|
+
describe MergeATSClient::OperatorSchema do
|
21
|
+
let(:instance) { MergeATSClient::OperatorSchema.new }
|
22
|
+
|
23
|
+
describe 'test an instance of OperatorSchema' do
|
24
|
+
it 'should create an instance of OperatorSchema' do
|
25
|
+
expect(instance).to be_instance_of(MergeATSClient::OperatorSchema)
|
26
|
+
end
|
27
|
+
end
|
28
|
+
describe 'test attribute "operator"' 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 "is_unique"' 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
|
@@ -0,0 +1,46 @@
|
|
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::PaginatedConditionSchemaList
|
18
|
+
# Automatically generated by openapi-generator (https://openapi-generator.tech)
|
19
|
+
# Please update as you see appropriate
|
20
|
+
describe MergeATSClient::PaginatedConditionSchemaList do
|
21
|
+
let(:instance) { MergeATSClient::PaginatedConditionSchemaList.new }
|
22
|
+
|
23
|
+
describe 'test an instance of PaginatedConditionSchemaList' do
|
24
|
+
it 'should create an instance of PaginatedConditionSchemaList' do
|
25
|
+
expect(instance).to be_instance_of(MergeATSClient::PaginatedConditionSchemaList)
|
26
|
+
end
|
27
|
+
end
|
28
|
+
describe 'test attribute "_next"' 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 "previous"' 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
|
+
describe 'test attribute "results"' do
|
41
|
+
it 'should work' do
|
42
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
43
|
+
end
|
44
|
+
end
|
45
|
+
|
46
|
+
end
|