finch-api 0.1.0.pre.alpha.42 → 0.1.0.pre.alpha.43
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/CHANGELOG.md +65 -0
- data/README.md +3 -3
- data/lib/finch_api/client.rb +22 -4
- data/lib/finch_api/internal/transport/base_client.rb +30 -3
- data/lib/finch_api/internal/transport/pooled_net_requester.rb +1 -1
- data/lib/finch_api/internal/util.rb +54 -8
- data/lib/finch_api/models/account_disconnect_entity_params.rb +22 -0
- data/lib/finch_api/models/base_webhook_event.rb +9 -1
- data/lib/finch_api/models/connect/session_new_params.rb +5 -3
- data/lib/finch_api/models/connect/session_reauthenticate_params.rb +5 -3
- data/lib/finch_api/models/create_access_token_response.rb +10 -1
- data/lib/finch_api/models/disconnect_entity_response.rb +17 -0
- data/lib/finch_api/models/hris/benefit_contribution.rb +24 -23
- data/lib/finch_api/models/hris/benefit_register_params.rb +47 -0
- data/lib/finch_api/models/hris/benefit_retrieve_params.rb +8 -1
- data/lib/finch_api/models/hris/benefit_update_params.rb +8 -1
- data/lib/finch_api/models/hris/benefits/individual_benefit.rb +63 -59
- data/lib/finch_api/models/hris/benefits/individual_enroll_many_params.rb +8 -1
- data/lib/finch_api/models/hris/benefits/individual_enrolled_ids_params.rb +8 -1
- data/lib/finch_api/models/hris/benefits/individual_retrieve_many_benefits_params.rb +8 -1
- data/lib/finch_api/models/hris/benefits/individual_unenroll_many_params.rb +8 -1
- data/lib/finch_api/models/hris/company/pay_statement_item/rule_delete_params.rb +8 -1
- data/lib/finch_api/models/hris/company/pay_statement_item/rule_update_params.rb +8 -1
- data/lib/finch_api/models/hris/document_retreive_params.rb +8 -1
- data/lib/finch_api/models/hris/employment_data.rb +76 -37
- data/lib/finch_api/models/hris/employment_data_response.rb +2 -2
- data/lib/finch_api/models/hris/individual.rb +38 -28
- data/lib/finch_api/models/hris/individual_response.rb +2 -2
- data/lib/finch_api/models/hris/register_company_benefit_response.rb +26 -0
- data/lib/finch_api/models/introspection.rb +27 -1
- data/lib/finch_api/models/job_completion_event.rb +3 -0
- data/lib/finch_api/models/jobs/automated_create_params.rb +53 -29
- data/lib/finch_api/models/jobs/automated_retrieve_params.rb +7 -1
- data/lib/finch_api/models/jobs/manual_retrieve_params.rb +7 -1
- data/lib/finch_api/models/payroll/pay_group_retrieve_params.rb +8 -1
- data/lib/finch_api/models/sandbox/directory_create_params.rb +55 -4
- data/lib/finch_api/models/sandbox/employment_update_params.rb +58 -4
- data/lib/finch_api/models/sandbox/employment_update_response.rb +53 -4
- data/lib/finch_api/models/sandbox/individual_update_params.rb +8 -1
- data/lib/finch_api/models.rb +4 -0
- data/lib/finch_api/resources/access_tokens.rb +1 -0
- data/lib/finch_api/resources/account.rb +26 -0
- data/lib/finch_api/resources/connect/sessions.rb +4 -2
- data/lib/finch_api/resources/hris/benefits/individuals.rb +13 -5
- data/lib/finch_api/resources/hris/benefits.rb +50 -7
- data/lib/finch_api/resources/hris/company/pay_statement_item/rules.rb +14 -6
- data/lib/finch_api/resources/hris/company/pay_statement_item.rb +3 -1
- data/lib/finch_api/resources/hris/company.rb +3 -1
- data/lib/finch_api/resources/hris/directory.rb +3 -1
- data/lib/finch_api/resources/hris/documents.rb +6 -2
- data/lib/finch_api/resources/hris/employments.rb +4 -2
- data/lib/finch_api/resources/hris/individuals.rb +4 -2
- data/lib/finch_api/resources/hris/pay_statements.rb +4 -2
- data/lib/finch_api/resources/hris/payments.rb +3 -1
- data/lib/finch_api/resources/jobs/automated.rb +8 -7
- data/lib/finch_api/resources/jobs/manual.rb +1 -0
- data/lib/finch_api/resources/payroll/pay_groups.rb +6 -2
- data/lib/finch_api/resources/providers.rb +1 -0
- data/lib/finch_api/resources/request_forwarding.rb +1 -0
- data/lib/finch_api/resources/sandbox/company.rb +1 -0
- data/lib/finch_api/resources/sandbox/connections/accounts.rb +2 -0
- data/lib/finch_api/resources/sandbox/connections.rb +1 -0
- data/lib/finch_api/resources/sandbox/directory.rb +1 -0
- data/lib/finch_api/resources/sandbox/employment.rb +4 -1
- data/lib/finch_api/resources/sandbox/individual.rb +1 -0
- data/lib/finch_api/resources/sandbox/jobs/configuration.rb +2 -0
- data/lib/finch_api/resources/sandbox/jobs.rb +1 -0
- data/lib/finch_api/resources/sandbox/payment.rb +1 -0
- data/lib/finch_api/version.rb +1 -1
- data/lib/finch_api.rb +4 -0
- data/rbi/finch_api/client.rbi +12 -2
- data/rbi/finch_api/internal/transport/base_client.rbi +6 -1
- data/rbi/finch_api/internal/util.rbi +29 -1
- data/rbi/finch_api/models/account_disconnect_entity_params.rbi +46 -0
- data/rbi/finch_api/models/base_webhook_event.rbi +18 -3
- data/rbi/finch_api/models/connect/session_new_params.rbi +11 -3
- data/rbi/finch_api/models/connect/session_reauthenticate_params.rbi +11 -3
- data/rbi/finch_api/models/create_access_token_response.rbi +13 -3
- data/rbi/finch_api/models/disconnect_entity_response.rbi +27 -0
- data/rbi/finch_api/models/hris/benefit_contribution.rbi +33 -31
- data/rbi/finch_api/models/hris/benefit_register_params.rbi +76 -0
- data/rbi/finch_api/models/hris/benefit_retrieve_params.rbi +6 -0
- data/rbi/finch_api/models/hris/benefit_update_params.rbi +6 -0
- data/rbi/finch_api/models/hris/benefits/individual_benefit.rbi +71 -71
- data/rbi/finch_api/models/hris/benefits/individual_enroll_many_params.rbi +6 -0
- data/rbi/finch_api/models/hris/benefits/individual_enrolled_ids_params.rbi +6 -0
- data/rbi/finch_api/models/hris/benefits/individual_retrieve_many_benefits_params.rbi +6 -0
- data/rbi/finch_api/models/hris/benefits/individual_unenroll_many_params.rbi +6 -0
- data/rbi/finch_api/models/hris/company/pay_statement_item/rule_delete_params.rbi +6 -0
- data/rbi/finch_api/models/hris/company/pay_statement_item/rule_update_params.rbi +6 -0
- data/rbi/finch_api/models/hris/document_retreive_params.rbi +6 -0
- data/rbi/finch_api/models/hris/employment_data.rbi +121 -56
- data/rbi/finch_api/models/hris/employment_data_response.rbi +1 -1
- data/rbi/finch_api/models/hris/individual.rbi +54 -47
- data/rbi/finch_api/models/hris/individual_response.rbi +1 -1
- data/rbi/finch_api/models/hris/register_company_benefit_response.rbi +38 -0
- data/rbi/finch_api/models/introspection.rbi +66 -3
- data/rbi/finch_api/models/job_completion_event.rbi +15 -0
- data/rbi/finch_api/models/jobs/automated_create_params.rbi +126 -56
- data/rbi/finch_api/models/jobs/automated_retrieve_params.rbi +13 -5
- data/rbi/finch_api/models/jobs/manual_retrieve_params.rbi +13 -5
- data/rbi/finch_api/models/payroll/pay_group_retrieve_params.rbi +6 -0
- data/rbi/finch_api/models/sandbox/directory_create_params.rbi +122 -9
- data/rbi/finch_api/models/sandbox/employment_update_params.rbi +128 -9
- data/rbi/finch_api/models/sandbox/employment_update_response.rbi +122 -9
- data/rbi/finch_api/models/sandbox/individual_update_params.rbi +6 -0
- data/rbi/finch_api/models.rbi +5 -0
- data/rbi/finch_api/resources/account.rbi +15 -0
- data/rbi/finch_api/resources/connect/sessions.rbi +6 -2
- data/rbi/finch_api/resources/hris/benefits.rbi +24 -0
- data/rbi/finch_api/resources/jobs/automated.rbi +6 -8
- data/rbi/finch_api/resources/sandbox/employment.rbi +7 -0
- data/sig/finch_api/client.rbs +6 -1
- data/sig/finch_api/internal/transport/base_client.rbs +2 -0
- data/sig/finch_api/internal/util.rbs +14 -0
- data/sig/finch_api/models/account_disconnect_entity_params.rbs +24 -0
- data/sig/finch_api/models/base_webhook_event.rbs +14 -3
- data/sig/finch_api/models/connect/session_new_params.rbs +2 -0
- data/sig/finch_api/models/connect/session_reauthenticate_params.rbs +2 -0
- data/sig/finch_api/models/create_access_token_response.rbs +8 -3
- data/sig/finch_api/models/disconnect_entity_response.rbs +13 -0
- data/sig/finch_api/models/hris/benefit_contribution.rbs +28 -28
- data/sig/finch_api/models/hris/benefit_register_params.rbs +47 -0
- data/sig/finch_api/models/hris/benefit_retrieve_params.rbs +5 -1
- data/sig/finch_api/models/hris/benefit_update_params.rbs +5 -1
- data/sig/finch_api/models/hris/benefits/individual_benefit.rbs +62 -62
- data/sig/finch_api/models/hris/benefits/individual_enroll_many_params.rbs +5 -0
- data/sig/finch_api/models/hris/benefits/individual_enrolled_ids_params.rbs +5 -1
- data/sig/finch_api/models/hris/benefits/individual_retrieve_many_benefits_params.rbs +9 -1
- data/sig/finch_api/models/hris/benefits/individual_unenroll_many_params.rbs +9 -1
- data/sig/finch_api/models/hris/company/pay_statement_item/rule_delete_params.rbs +5 -1
- data/sig/finch_api/models/hris/company/pay_statement_item/rule_update_params.rbs +9 -1
- data/sig/finch_api/models/hris/document_retreive_params.rbs +5 -1
- data/sig/finch_api/models/hris/employment_data.rbs +56 -39
- data/sig/finch_api/models/hris/individual.rbs +31 -31
- data/sig/finch_api/models/hris/register_company_benefit_response.rbs +18 -0
- data/sig/finch_api/models/introspection.rbs +44 -3
- data/sig/finch_api/models/job_completion_event.rbs +6 -0
- data/sig/finch_api/models/jobs/automated_create_params.rbs +47 -22
- data/sig/finch_api/models/jobs/automated_retrieve_params.rbs +11 -3
- data/sig/finch_api/models/jobs/manual_retrieve_params.rbs +11 -3
- data/sig/finch_api/models/payroll/pay_group_retrieve_params.rbs +5 -1
- data/sig/finch_api/models/sandbox/directory_create_params.rbs +40 -5
- data/sig/finch_api/models/sandbox/employment_update_params.rbs +45 -5
- data/sig/finch_api/models/sandbox/employment_update_response.rbs +40 -5
- data/sig/finch_api/models/sandbox/individual_update_params.rbs +5 -0
- data/sig/finch_api/models.rbs +4 -0
- data/sig/finch_api/resources/account.rbs +5 -0
- data/sig/finch_api/resources/hris/benefits.rbs +8 -0
- data/sig/finch_api/resources/jobs/automated.rbs +1 -2
- data/sig/finch_api/resources/sandbox/employment.rbs +1 -0
- metadata +14 -2
|
@@ -0,0 +1,76 @@
|
|
|
1
|
+
# typed: strong
|
|
2
|
+
|
|
3
|
+
module FinchAPI
|
|
4
|
+
module Models
|
|
5
|
+
module HRIS
|
|
6
|
+
class BenefitRegisterParams < FinchAPI::Internal::Type::BaseModel
|
|
7
|
+
extend FinchAPI::Internal::Type::RequestParameters::Converter
|
|
8
|
+
include FinchAPI::Internal::Type::RequestParameters
|
|
9
|
+
|
|
10
|
+
OrHash =
|
|
11
|
+
T.type_alias do
|
|
12
|
+
T.any(
|
|
13
|
+
FinchAPI::HRIS::BenefitRegisterParams,
|
|
14
|
+
FinchAPI::Internal::AnyHash
|
|
15
|
+
)
|
|
16
|
+
end
|
|
17
|
+
|
|
18
|
+
# The entity IDs to specify which entities' data to access.
|
|
19
|
+
sig { returns(T.nilable(T::Array[String])) }
|
|
20
|
+
attr_reader :entity_ids
|
|
21
|
+
|
|
22
|
+
sig { params(entity_ids: T::Array[String]).void }
|
|
23
|
+
attr_writer :entity_ids
|
|
24
|
+
|
|
25
|
+
sig { returns(T.nilable(String)) }
|
|
26
|
+
attr_reader :description
|
|
27
|
+
|
|
28
|
+
sig { params(description: String).void }
|
|
29
|
+
attr_writer :description
|
|
30
|
+
|
|
31
|
+
# The frequency of the benefit deduction/contribution.
|
|
32
|
+
sig { returns(T.nilable(FinchAPI::HRIS::BenefitFrequency::OrSymbol)) }
|
|
33
|
+
attr_accessor :frequency
|
|
34
|
+
|
|
35
|
+
# Type of benefit.
|
|
36
|
+
sig { returns(T.nilable(FinchAPI::HRIS::BenefitType::OrSymbol)) }
|
|
37
|
+
attr_accessor :type
|
|
38
|
+
|
|
39
|
+
sig do
|
|
40
|
+
params(
|
|
41
|
+
entity_ids: T::Array[String],
|
|
42
|
+
description: String,
|
|
43
|
+
frequency: T.nilable(FinchAPI::HRIS::BenefitFrequency::OrSymbol),
|
|
44
|
+
type: T.nilable(FinchAPI::HRIS::BenefitType::OrSymbol),
|
|
45
|
+
request_options: FinchAPI::RequestOptions::OrHash
|
|
46
|
+
).returns(T.attached_class)
|
|
47
|
+
end
|
|
48
|
+
def self.new(
|
|
49
|
+
# The entity IDs to specify which entities' data to access.
|
|
50
|
+
entity_ids: nil,
|
|
51
|
+
description: nil,
|
|
52
|
+
# The frequency of the benefit deduction/contribution.
|
|
53
|
+
frequency: nil,
|
|
54
|
+
# Type of benefit.
|
|
55
|
+
type: nil,
|
|
56
|
+
request_options: {}
|
|
57
|
+
)
|
|
58
|
+
end
|
|
59
|
+
|
|
60
|
+
sig do
|
|
61
|
+
override.returns(
|
|
62
|
+
{
|
|
63
|
+
entity_ids: T::Array[String],
|
|
64
|
+
description: String,
|
|
65
|
+
frequency: T.nilable(FinchAPI::HRIS::BenefitFrequency::OrSymbol),
|
|
66
|
+
type: T.nilable(FinchAPI::HRIS::BenefitType::OrSymbol),
|
|
67
|
+
request_options: FinchAPI::RequestOptions
|
|
68
|
+
}
|
|
69
|
+
)
|
|
70
|
+
end
|
|
71
|
+
def to_hash
|
|
72
|
+
end
|
|
73
|
+
end
|
|
74
|
+
end
|
|
75
|
+
end
|
|
76
|
+
end
|
|
@@ -15,6 +15,9 @@ module FinchAPI
|
|
|
15
15
|
)
|
|
16
16
|
end
|
|
17
17
|
|
|
18
|
+
sig { returns(String) }
|
|
19
|
+
attr_accessor :benefit_id
|
|
20
|
+
|
|
18
21
|
# The entity IDs to specify which entities' data to access.
|
|
19
22
|
sig { returns(T.nilable(T::Array[String])) }
|
|
20
23
|
attr_reader :entity_ids
|
|
@@ -24,11 +27,13 @@ module FinchAPI
|
|
|
24
27
|
|
|
25
28
|
sig do
|
|
26
29
|
params(
|
|
30
|
+
benefit_id: String,
|
|
27
31
|
entity_ids: T::Array[String],
|
|
28
32
|
request_options: FinchAPI::RequestOptions::OrHash
|
|
29
33
|
).returns(T.attached_class)
|
|
30
34
|
end
|
|
31
35
|
def self.new(
|
|
36
|
+
benefit_id:,
|
|
32
37
|
# The entity IDs to specify which entities' data to access.
|
|
33
38
|
entity_ids: nil,
|
|
34
39
|
request_options: {}
|
|
@@ -38,6 +43,7 @@ module FinchAPI
|
|
|
38
43
|
sig do
|
|
39
44
|
override.returns(
|
|
40
45
|
{
|
|
46
|
+
benefit_id: String,
|
|
41
47
|
entity_ids: T::Array[String],
|
|
42
48
|
request_options: FinchAPI::RequestOptions
|
|
43
49
|
}
|
|
@@ -15,6 +15,9 @@ module FinchAPI
|
|
|
15
15
|
)
|
|
16
16
|
end
|
|
17
17
|
|
|
18
|
+
sig { returns(String) }
|
|
19
|
+
attr_accessor :benefit_id
|
|
20
|
+
|
|
18
21
|
# The entity IDs to specify which entities' data to access.
|
|
19
22
|
sig { returns(T.nilable(T::Array[String])) }
|
|
20
23
|
attr_reader :entity_ids
|
|
@@ -31,12 +34,14 @@ module FinchAPI
|
|
|
31
34
|
|
|
32
35
|
sig do
|
|
33
36
|
params(
|
|
37
|
+
benefit_id: String,
|
|
34
38
|
entity_ids: T::Array[String],
|
|
35
39
|
description: String,
|
|
36
40
|
request_options: FinchAPI::RequestOptions::OrHash
|
|
37
41
|
).returns(T.attached_class)
|
|
38
42
|
end
|
|
39
43
|
def self.new(
|
|
44
|
+
benefit_id:,
|
|
40
45
|
# The entity IDs to specify which entities' data to access.
|
|
41
46
|
entity_ids: nil,
|
|
42
47
|
# Updated name or description.
|
|
@@ -48,6 +53,7 @@ module FinchAPI
|
|
|
48
53
|
sig do
|
|
49
54
|
override.returns(
|
|
50
55
|
{
|
|
56
|
+
benefit_id: String,
|
|
51
57
|
entity_ids: T::Array[String],
|
|
52
58
|
description: String,
|
|
53
59
|
request_options: FinchAPI::RequestOptions
|
|
@@ -30,7 +30,7 @@ module FinchAPI
|
|
|
30
30
|
params(
|
|
31
31
|
body:
|
|
32
32
|
T.any(
|
|
33
|
-
FinchAPI::HRIS::Benefits::IndividualBenefit::Body::
|
|
33
|
+
FinchAPI::HRIS::Benefits::IndividualBenefit::Body::IndividualBenefit::OrHash,
|
|
34
34
|
FinchAPI::HRIS::Benefits::IndividualBenefit::Body::BatchError::OrHash
|
|
35
35
|
),
|
|
36
36
|
code: Integer,
|
|
@@ -59,16 +59,16 @@ module FinchAPI
|
|
|
59
59
|
Variants =
|
|
60
60
|
T.type_alias do
|
|
61
61
|
T.any(
|
|
62
|
-
FinchAPI::HRIS::Benefits::IndividualBenefit::Body::
|
|
62
|
+
FinchAPI::HRIS::Benefits::IndividualBenefit::Body::IndividualBenefit,
|
|
63
63
|
FinchAPI::HRIS::Benefits::IndividualBenefit::Body::BatchError
|
|
64
64
|
)
|
|
65
65
|
end
|
|
66
66
|
|
|
67
|
-
class
|
|
67
|
+
class IndividualBenefit < FinchAPI::Internal::Type::BaseModel
|
|
68
68
|
OrHash =
|
|
69
69
|
T.type_alias do
|
|
70
70
|
T.any(
|
|
71
|
-
FinchAPI::HRIS::Benefits::IndividualBenefit::Body::
|
|
71
|
+
FinchAPI::HRIS::Benefits::IndividualBenefit::Body::IndividualBenefit,
|
|
72
72
|
FinchAPI::Internal::AnyHash
|
|
73
73
|
)
|
|
74
74
|
end
|
|
@@ -88,7 +88,7 @@ module FinchAPI
|
|
|
88
88
|
sig do
|
|
89
89
|
returns(
|
|
90
90
|
T.nilable(
|
|
91
|
-
FinchAPI::HRIS::Benefits::IndividualBenefit::Body::
|
|
91
|
+
FinchAPI::HRIS::Benefits::IndividualBenefit::Body::IndividualBenefit::CompanyContribution::Variants
|
|
92
92
|
)
|
|
93
93
|
)
|
|
94
94
|
end
|
|
@@ -99,7 +99,7 @@ module FinchAPI
|
|
|
99
99
|
sig do
|
|
100
100
|
returns(
|
|
101
101
|
T.nilable(
|
|
102
|
-
FinchAPI::HRIS::Benefits::IndividualBenefit::Body::
|
|
102
|
+
FinchAPI::HRIS::Benefits::IndividualBenefit::Body::IndividualBenefit::EmployeeDeduction::Variants
|
|
103
103
|
)
|
|
104
104
|
)
|
|
105
105
|
end
|
|
@@ -109,7 +109,7 @@ module FinchAPI
|
|
|
109
109
|
sig do
|
|
110
110
|
returns(
|
|
111
111
|
T.nilable(
|
|
112
|
-
FinchAPI::HRIS::Benefits::IndividualBenefit::Body::
|
|
112
|
+
FinchAPI::HRIS::Benefits::IndividualBenefit::Body::IndividualBenefit::HsaContributionLimit::TaggedSymbol
|
|
113
113
|
)
|
|
114
114
|
)
|
|
115
115
|
end
|
|
@@ -122,21 +122,21 @@ module FinchAPI
|
|
|
122
122
|
company_contribution:
|
|
123
123
|
T.nilable(
|
|
124
124
|
T.any(
|
|
125
|
-
FinchAPI::HRIS::Benefits::IndividualBenefit::Body::
|
|
126
|
-
FinchAPI::HRIS::Benefits::IndividualBenefit::Body::
|
|
127
|
-
FinchAPI::HRIS::Benefits::IndividualBenefit::Body::
|
|
125
|
+
FinchAPI::HRIS::Benefits::IndividualBenefit::Body::IndividualBenefit::CompanyContribution::CompanyContributionFixed::OrHash,
|
|
126
|
+
FinchAPI::HRIS::Benefits::IndividualBenefit::Body::IndividualBenefit::CompanyContribution::CompanyContributionPercent::OrHash,
|
|
127
|
+
FinchAPI::HRIS::Benefits::IndividualBenefit::Body::IndividualBenefit::CompanyContribution::CompanyContributionTiered::OrHash
|
|
128
128
|
)
|
|
129
129
|
),
|
|
130
130
|
employee_deduction:
|
|
131
131
|
T.nilable(
|
|
132
132
|
T.any(
|
|
133
|
-
FinchAPI::HRIS::Benefits::IndividualBenefit::Body::
|
|
134
|
-
FinchAPI::HRIS::Benefits::IndividualBenefit::Body::
|
|
133
|
+
FinchAPI::HRIS::Benefits::IndividualBenefit::Body::IndividualBenefit::EmployeeDeduction::EmployeeDeductionContributionFixed::OrHash,
|
|
134
|
+
FinchAPI::HRIS::Benefits::IndividualBenefit::Body::IndividualBenefit::EmployeeDeduction::EmployeeDeductionContributionPercent::OrHash
|
|
135
135
|
)
|
|
136
136
|
),
|
|
137
137
|
hsa_contribution_limit:
|
|
138
138
|
T.nilable(
|
|
139
|
-
FinchAPI::HRIS::Benefits::IndividualBenefit::Body::
|
|
139
|
+
FinchAPI::HRIS::Benefits::IndividualBenefit::Body::IndividualBenefit::HsaContributionLimit::OrSymbol
|
|
140
140
|
)
|
|
141
141
|
).returns(T.attached_class)
|
|
142
142
|
end
|
|
@@ -165,15 +165,15 @@ module FinchAPI
|
|
|
165
165
|
catch_up: T.nilable(T::Boolean),
|
|
166
166
|
company_contribution:
|
|
167
167
|
T.nilable(
|
|
168
|
-
FinchAPI::HRIS::Benefits::IndividualBenefit::Body::
|
|
168
|
+
FinchAPI::HRIS::Benefits::IndividualBenefit::Body::IndividualBenefit::CompanyContribution::Variants
|
|
169
169
|
),
|
|
170
170
|
employee_deduction:
|
|
171
171
|
T.nilable(
|
|
172
|
-
FinchAPI::HRIS::Benefits::IndividualBenefit::Body::
|
|
172
|
+
FinchAPI::HRIS::Benefits::IndividualBenefit::Body::IndividualBenefit::EmployeeDeduction::Variants
|
|
173
173
|
),
|
|
174
174
|
hsa_contribution_limit:
|
|
175
175
|
T.nilable(
|
|
176
|
-
FinchAPI::HRIS::Benefits::IndividualBenefit::Body::
|
|
176
|
+
FinchAPI::HRIS::Benefits::IndividualBenefit::Body::IndividualBenefit::HsaContributionLimit::TaggedSymbol
|
|
177
177
|
)
|
|
178
178
|
}
|
|
179
179
|
)
|
|
@@ -190,17 +190,17 @@ module FinchAPI
|
|
|
190
190
|
Variants =
|
|
191
191
|
T.type_alias do
|
|
192
192
|
T.any(
|
|
193
|
-
FinchAPI::HRIS::Benefits::IndividualBenefit::Body::
|
|
194
|
-
FinchAPI::HRIS::Benefits::IndividualBenefit::Body::
|
|
195
|
-
FinchAPI::HRIS::Benefits::IndividualBenefit::Body::
|
|
193
|
+
FinchAPI::HRIS::Benefits::IndividualBenefit::Body::IndividualBenefit::CompanyContribution::CompanyContributionFixed,
|
|
194
|
+
FinchAPI::HRIS::Benefits::IndividualBenefit::Body::IndividualBenefit::CompanyContribution::CompanyContributionPercent,
|
|
195
|
+
FinchAPI::HRIS::Benefits::IndividualBenefit::Body::IndividualBenefit::CompanyContribution::CompanyContributionTiered
|
|
196
196
|
)
|
|
197
197
|
end
|
|
198
198
|
|
|
199
|
-
class
|
|
199
|
+
class CompanyContributionFixed < FinchAPI::Internal::Type::BaseModel
|
|
200
200
|
OrHash =
|
|
201
201
|
T.type_alias do
|
|
202
202
|
T.any(
|
|
203
|
-
FinchAPI::HRIS::Benefits::IndividualBenefit::Body::
|
|
203
|
+
FinchAPI::HRIS::Benefits::IndividualBenefit::Body::IndividualBenefit::CompanyContribution::CompanyContributionFixed,
|
|
204
204
|
FinchAPI::Internal::AnyHash
|
|
205
205
|
)
|
|
206
206
|
end
|
|
@@ -214,7 +214,7 @@ module FinchAPI
|
|
|
214
214
|
# (amount in basis points), or "tiered" (multi-tier matching).
|
|
215
215
|
sig do
|
|
216
216
|
returns(
|
|
217
|
-
FinchAPI::HRIS::Benefits::IndividualBenefit::Body::
|
|
217
|
+
FinchAPI::HRIS::Benefits::IndividualBenefit::Body::IndividualBenefit::CompanyContribution::CompanyContributionFixed::Type::TaggedSymbol
|
|
218
218
|
)
|
|
219
219
|
end
|
|
220
220
|
attr_accessor :type
|
|
@@ -223,7 +223,7 @@ module FinchAPI
|
|
|
223
223
|
params(
|
|
224
224
|
amount: Integer,
|
|
225
225
|
type:
|
|
226
|
-
FinchAPI::HRIS::Benefits::IndividualBenefit::Body::
|
|
226
|
+
FinchAPI::HRIS::Benefits::IndividualBenefit::Body::IndividualBenefit::CompanyContribution::CompanyContributionFixed::Type::OrSymbol
|
|
227
227
|
).returns(T.attached_class)
|
|
228
228
|
end
|
|
229
229
|
def self.new(
|
|
@@ -241,7 +241,7 @@ module FinchAPI
|
|
|
241
241
|
{
|
|
242
242
|
amount: Integer,
|
|
243
243
|
type:
|
|
244
|
-
FinchAPI::HRIS::Benefits::IndividualBenefit::Body::
|
|
244
|
+
FinchAPI::HRIS::Benefits::IndividualBenefit::Body::IndividualBenefit::CompanyContribution::CompanyContributionFixed::Type::TaggedSymbol
|
|
245
245
|
}
|
|
246
246
|
)
|
|
247
247
|
end
|
|
@@ -257,7 +257,7 @@ module FinchAPI
|
|
|
257
257
|
T.type_alias do
|
|
258
258
|
T.all(
|
|
259
259
|
Symbol,
|
|
260
|
-
FinchAPI::HRIS::Benefits::IndividualBenefit::Body::
|
|
260
|
+
FinchAPI::HRIS::Benefits::IndividualBenefit::Body::IndividualBenefit::CompanyContribution::CompanyContributionFixed::Type
|
|
261
261
|
)
|
|
262
262
|
end
|
|
263
263
|
OrSymbol = T.type_alias { T.any(Symbol, String) }
|
|
@@ -265,13 +265,13 @@ module FinchAPI
|
|
|
265
265
|
FIXED =
|
|
266
266
|
T.let(
|
|
267
267
|
:fixed,
|
|
268
|
-
FinchAPI::HRIS::Benefits::IndividualBenefit::Body::
|
|
268
|
+
FinchAPI::HRIS::Benefits::IndividualBenefit::Body::IndividualBenefit::CompanyContribution::CompanyContributionFixed::Type::TaggedSymbol
|
|
269
269
|
)
|
|
270
270
|
|
|
271
271
|
sig do
|
|
272
272
|
override.returns(
|
|
273
273
|
T::Array[
|
|
274
|
-
FinchAPI::HRIS::Benefits::IndividualBenefit::Body::
|
|
274
|
+
FinchAPI::HRIS::Benefits::IndividualBenefit::Body::IndividualBenefit::CompanyContribution::CompanyContributionFixed::Type::TaggedSymbol
|
|
275
275
|
]
|
|
276
276
|
)
|
|
277
277
|
end
|
|
@@ -280,11 +280,11 @@ module FinchAPI
|
|
|
280
280
|
end
|
|
281
281
|
end
|
|
282
282
|
|
|
283
|
-
class
|
|
283
|
+
class CompanyContributionPercent < FinchAPI::Internal::Type::BaseModel
|
|
284
284
|
OrHash =
|
|
285
285
|
T.type_alias do
|
|
286
286
|
T.any(
|
|
287
|
-
FinchAPI::HRIS::Benefits::IndividualBenefit::Body::
|
|
287
|
+
FinchAPI::HRIS::Benefits::IndividualBenefit::Body::IndividualBenefit::CompanyContribution::CompanyContributionPercent,
|
|
288
288
|
FinchAPI::Internal::AnyHash
|
|
289
289
|
)
|
|
290
290
|
end
|
|
@@ -298,7 +298,7 @@ module FinchAPI
|
|
|
298
298
|
# (amount in basis points), or "tiered" (multi-tier matching).
|
|
299
299
|
sig do
|
|
300
300
|
returns(
|
|
301
|
-
FinchAPI::HRIS::Benefits::IndividualBenefit::Body::
|
|
301
|
+
FinchAPI::HRIS::Benefits::IndividualBenefit::Body::IndividualBenefit::CompanyContribution::CompanyContributionPercent::Type::TaggedSymbol
|
|
302
302
|
)
|
|
303
303
|
end
|
|
304
304
|
attr_accessor :type
|
|
@@ -307,7 +307,7 @@ module FinchAPI
|
|
|
307
307
|
params(
|
|
308
308
|
amount: Integer,
|
|
309
309
|
type:
|
|
310
|
-
FinchAPI::HRIS::Benefits::IndividualBenefit::Body::
|
|
310
|
+
FinchAPI::HRIS::Benefits::IndividualBenefit::Body::IndividualBenefit::CompanyContribution::CompanyContributionPercent::Type::OrSymbol
|
|
311
311
|
).returns(T.attached_class)
|
|
312
312
|
end
|
|
313
313
|
def self.new(
|
|
@@ -325,7 +325,7 @@ module FinchAPI
|
|
|
325
325
|
{
|
|
326
326
|
amount: Integer,
|
|
327
327
|
type:
|
|
328
|
-
FinchAPI::HRIS::Benefits::IndividualBenefit::Body::
|
|
328
|
+
FinchAPI::HRIS::Benefits::IndividualBenefit::Body::IndividualBenefit::CompanyContribution::CompanyContributionPercent::Type::TaggedSymbol
|
|
329
329
|
}
|
|
330
330
|
)
|
|
331
331
|
end
|
|
@@ -341,7 +341,7 @@ module FinchAPI
|
|
|
341
341
|
T.type_alias do
|
|
342
342
|
T.all(
|
|
343
343
|
Symbol,
|
|
344
|
-
FinchAPI::HRIS::Benefits::IndividualBenefit::Body::
|
|
344
|
+
FinchAPI::HRIS::Benefits::IndividualBenefit::Body::IndividualBenefit::CompanyContribution::CompanyContributionPercent::Type
|
|
345
345
|
)
|
|
346
346
|
end
|
|
347
347
|
OrSymbol = T.type_alias { T.any(Symbol, String) }
|
|
@@ -349,13 +349,13 @@ module FinchAPI
|
|
|
349
349
|
PERCENT =
|
|
350
350
|
T.let(
|
|
351
351
|
:percent,
|
|
352
|
-
FinchAPI::HRIS::Benefits::IndividualBenefit::Body::
|
|
352
|
+
FinchAPI::HRIS::Benefits::IndividualBenefit::Body::IndividualBenefit::CompanyContribution::CompanyContributionPercent::Type::TaggedSymbol
|
|
353
353
|
)
|
|
354
354
|
|
|
355
355
|
sig do
|
|
356
356
|
override.returns(
|
|
357
357
|
T::Array[
|
|
358
|
-
FinchAPI::HRIS::Benefits::IndividualBenefit::Body::
|
|
358
|
+
FinchAPI::HRIS::Benefits::IndividualBenefit::Body::IndividualBenefit::CompanyContribution::CompanyContributionPercent::Type::TaggedSymbol
|
|
359
359
|
]
|
|
360
360
|
)
|
|
361
361
|
end
|
|
@@ -364,11 +364,11 @@ module FinchAPI
|
|
|
364
364
|
end
|
|
365
365
|
end
|
|
366
366
|
|
|
367
|
-
class
|
|
367
|
+
class CompanyContributionTiered < FinchAPI::Internal::Type::BaseModel
|
|
368
368
|
OrHash =
|
|
369
369
|
T.type_alias do
|
|
370
370
|
T.any(
|
|
371
|
-
FinchAPI::HRIS::Benefits::IndividualBenefit::Body::
|
|
371
|
+
FinchAPI::HRIS::Benefits::IndividualBenefit::Body::IndividualBenefit::CompanyContribution::CompanyContributionTiered,
|
|
372
372
|
FinchAPI::Internal::AnyHash
|
|
373
373
|
)
|
|
374
374
|
end
|
|
@@ -378,7 +378,7 @@ module FinchAPI
|
|
|
378
378
|
sig do
|
|
379
379
|
returns(
|
|
380
380
|
T::Array[
|
|
381
|
-
FinchAPI::HRIS::Benefits::IndividualBenefit::Body::
|
|
381
|
+
FinchAPI::HRIS::Benefits::IndividualBenefit::Body::IndividualBenefit::CompanyContribution::CompanyContributionTiered::Tier
|
|
382
382
|
]
|
|
383
383
|
)
|
|
384
384
|
end
|
|
@@ -388,7 +388,7 @@ module FinchAPI
|
|
|
388
388
|
# (amount in basis points), or "tiered" (multi-tier matching).
|
|
389
389
|
sig do
|
|
390
390
|
returns(
|
|
391
|
-
FinchAPI::HRIS::Benefits::IndividualBenefit::Body::
|
|
391
|
+
FinchAPI::HRIS::Benefits::IndividualBenefit::Body::IndividualBenefit::CompanyContribution::CompanyContributionTiered::Type::TaggedSymbol
|
|
392
392
|
)
|
|
393
393
|
end
|
|
394
394
|
attr_accessor :type
|
|
@@ -397,10 +397,10 @@ module FinchAPI
|
|
|
397
397
|
params(
|
|
398
398
|
tiers:
|
|
399
399
|
T::Array[
|
|
400
|
-
FinchAPI::HRIS::Benefits::IndividualBenefit::Body::
|
|
400
|
+
FinchAPI::HRIS::Benefits::IndividualBenefit::Body::IndividualBenefit::CompanyContribution::CompanyContributionTiered::Tier::OrHash
|
|
401
401
|
],
|
|
402
402
|
type:
|
|
403
|
-
FinchAPI::HRIS::Benefits::IndividualBenefit::Body::
|
|
403
|
+
FinchAPI::HRIS::Benefits::IndividualBenefit::Body::IndividualBenefit::CompanyContribution::CompanyContributionTiered::Type::OrSymbol
|
|
404
404
|
).returns(T.attached_class)
|
|
405
405
|
end
|
|
406
406
|
def self.new(
|
|
@@ -418,10 +418,10 @@ module FinchAPI
|
|
|
418
418
|
{
|
|
419
419
|
tiers:
|
|
420
420
|
T::Array[
|
|
421
|
-
FinchAPI::HRIS::Benefits::IndividualBenefit::Body::
|
|
421
|
+
FinchAPI::HRIS::Benefits::IndividualBenefit::Body::IndividualBenefit::CompanyContribution::CompanyContributionTiered::Tier
|
|
422
422
|
],
|
|
423
423
|
type:
|
|
424
|
-
FinchAPI::HRIS::Benefits::IndividualBenefit::Body::
|
|
424
|
+
FinchAPI::HRIS::Benefits::IndividualBenefit::Body::IndividualBenefit::CompanyContribution::CompanyContributionTiered::Type::TaggedSymbol
|
|
425
425
|
}
|
|
426
426
|
)
|
|
427
427
|
end
|
|
@@ -432,7 +432,7 @@ module FinchAPI
|
|
|
432
432
|
OrHash =
|
|
433
433
|
T.type_alias do
|
|
434
434
|
T.any(
|
|
435
|
-
FinchAPI::HRIS::Benefits::IndividualBenefit::Body::
|
|
435
|
+
FinchAPI::HRIS::Benefits::IndividualBenefit::Body::IndividualBenefit::CompanyContribution::CompanyContributionTiered::Tier,
|
|
436
436
|
FinchAPI::Internal::AnyHash
|
|
437
437
|
)
|
|
438
438
|
end
|
|
@@ -467,7 +467,7 @@ module FinchAPI
|
|
|
467
467
|
T.type_alias do
|
|
468
468
|
T.all(
|
|
469
469
|
Symbol,
|
|
470
|
-
FinchAPI::HRIS::Benefits::IndividualBenefit::Body::
|
|
470
|
+
FinchAPI::HRIS::Benefits::IndividualBenefit::Body::IndividualBenefit::CompanyContribution::CompanyContributionTiered::Type
|
|
471
471
|
)
|
|
472
472
|
end
|
|
473
473
|
OrSymbol = T.type_alias { T.any(Symbol, String) }
|
|
@@ -475,13 +475,13 @@ module FinchAPI
|
|
|
475
475
|
TIERED =
|
|
476
476
|
T.let(
|
|
477
477
|
:tiered,
|
|
478
|
-
FinchAPI::HRIS::Benefits::IndividualBenefit::Body::
|
|
478
|
+
FinchAPI::HRIS::Benefits::IndividualBenefit::Body::IndividualBenefit::CompanyContribution::CompanyContributionTiered::Type::TaggedSymbol
|
|
479
479
|
)
|
|
480
480
|
|
|
481
481
|
sig do
|
|
482
482
|
override.returns(
|
|
483
483
|
T::Array[
|
|
484
|
-
FinchAPI::HRIS::Benefits::IndividualBenefit::Body::
|
|
484
|
+
FinchAPI::HRIS::Benefits::IndividualBenefit::Body::IndividualBenefit::CompanyContribution::CompanyContributionTiered::Type::TaggedSymbol
|
|
485
485
|
]
|
|
486
486
|
)
|
|
487
487
|
end
|
|
@@ -493,7 +493,7 @@ module FinchAPI
|
|
|
493
493
|
sig do
|
|
494
494
|
override.returns(
|
|
495
495
|
T::Array[
|
|
496
|
-
FinchAPI::HRIS::Benefits::IndividualBenefit::Body::
|
|
496
|
+
FinchAPI::HRIS::Benefits::IndividualBenefit::Body::IndividualBenefit::CompanyContribution::Variants
|
|
497
497
|
]
|
|
498
498
|
)
|
|
499
499
|
end
|
|
@@ -509,16 +509,16 @@ module FinchAPI
|
|
|
509
509
|
Variants =
|
|
510
510
|
T.type_alias do
|
|
511
511
|
T.any(
|
|
512
|
-
FinchAPI::HRIS::Benefits::IndividualBenefit::Body::
|
|
513
|
-
FinchAPI::HRIS::Benefits::IndividualBenefit::Body::
|
|
512
|
+
FinchAPI::HRIS::Benefits::IndividualBenefit::Body::IndividualBenefit::EmployeeDeduction::EmployeeDeductionContributionFixed,
|
|
513
|
+
FinchAPI::HRIS::Benefits::IndividualBenefit::Body::IndividualBenefit::EmployeeDeduction::EmployeeDeductionContributionPercent
|
|
514
514
|
)
|
|
515
515
|
end
|
|
516
516
|
|
|
517
|
-
class
|
|
517
|
+
class EmployeeDeductionContributionFixed < FinchAPI::Internal::Type::BaseModel
|
|
518
518
|
OrHash =
|
|
519
519
|
T.type_alias do
|
|
520
520
|
T.any(
|
|
521
|
-
FinchAPI::HRIS::Benefits::IndividualBenefit::Body::
|
|
521
|
+
FinchAPI::HRIS::Benefits::IndividualBenefit::Body::IndividualBenefit::EmployeeDeduction::EmployeeDeductionContributionFixed,
|
|
522
522
|
FinchAPI::Internal::AnyHash
|
|
523
523
|
)
|
|
524
524
|
end
|
|
@@ -532,7 +532,7 @@ module FinchAPI
|
|
|
532
532
|
# (amount in basis points).
|
|
533
533
|
sig do
|
|
534
534
|
returns(
|
|
535
|
-
FinchAPI::HRIS::Benefits::IndividualBenefit::Body::
|
|
535
|
+
FinchAPI::HRIS::Benefits::IndividualBenefit::Body::IndividualBenefit::EmployeeDeduction::EmployeeDeductionContributionFixed::Type::TaggedSymbol
|
|
536
536
|
)
|
|
537
537
|
end
|
|
538
538
|
attr_accessor :type
|
|
@@ -541,7 +541,7 @@ module FinchAPI
|
|
|
541
541
|
params(
|
|
542
542
|
amount: Integer,
|
|
543
543
|
type:
|
|
544
|
-
FinchAPI::HRIS::Benefits::IndividualBenefit::Body::
|
|
544
|
+
FinchAPI::HRIS::Benefits::IndividualBenefit::Body::IndividualBenefit::EmployeeDeduction::EmployeeDeductionContributionFixed::Type::OrSymbol
|
|
545
545
|
).returns(T.attached_class)
|
|
546
546
|
end
|
|
547
547
|
def self.new(
|
|
@@ -559,7 +559,7 @@ module FinchAPI
|
|
|
559
559
|
{
|
|
560
560
|
amount: Integer,
|
|
561
561
|
type:
|
|
562
|
-
FinchAPI::HRIS::Benefits::IndividualBenefit::Body::
|
|
562
|
+
FinchAPI::HRIS::Benefits::IndividualBenefit::Body::IndividualBenefit::EmployeeDeduction::EmployeeDeductionContributionFixed::Type::TaggedSymbol
|
|
563
563
|
}
|
|
564
564
|
)
|
|
565
565
|
end
|
|
@@ -575,7 +575,7 @@ module FinchAPI
|
|
|
575
575
|
T.type_alias do
|
|
576
576
|
T.all(
|
|
577
577
|
Symbol,
|
|
578
|
-
FinchAPI::HRIS::Benefits::IndividualBenefit::Body::
|
|
578
|
+
FinchAPI::HRIS::Benefits::IndividualBenefit::Body::IndividualBenefit::EmployeeDeduction::EmployeeDeductionContributionFixed::Type
|
|
579
579
|
)
|
|
580
580
|
end
|
|
581
581
|
OrSymbol = T.type_alias { T.any(Symbol, String) }
|
|
@@ -583,13 +583,13 @@ module FinchAPI
|
|
|
583
583
|
FIXED =
|
|
584
584
|
T.let(
|
|
585
585
|
:fixed,
|
|
586
|
-
FinchAPI::HRIS::Benefits::IndividualBenefit::Body::
|
|
586
|
+
FinchAPI::HRIS::Benefits::IndividualBenefit::Body::IndividualBenefit::EmployeeDeduction::EmployeeDeductionContributionFixed::Type::TaggedSymbol
|
|
587
587
|
)
|
|
588
588
|
|
|
589
589
|
sig do
|
|
590
590
|
override.returns(
|
|
591
591
|
T::Array[
|
|
592
|
-
FinchAPI::HRIS::Benefits::IndividualBenefit::Body::
|
|
592
|
+
FinchAPI::HRIS::Benefits::IndividualBenefit::Body::IndividualBenefit::EmployeeDeduction::EmployeeDeductionContributionFixed::Type::TaggedSymbol
|
|
593
593
|
]
|
|
594
594
|
)
|
|
595
595
|
end
|
|
@@ -598,11 +598,11 @@ module FinchAPI
|
|
|
598
598
|
end
|
|
599
599
|
end
|
|
600
600
|
|
|
601
|
-
class
|
|
601
|
+
class EmployeeDeductionContributionPercent < FinchAPI::Internal::Type::BaseModel
|
|
602
602
|
OrHash =
|
|
603
603
|
T.type_alias do
|
|
604
604
|
T.any(
|
|
605
|
-
FinchAPI::HRIS::Benefits::IndividualBenefit::Body::
|
|
605
|
+
FinchAPI::HRIS::Benefits::IndividualBenefit::Body::IndividualBenefit::EmployeeDeduction::EmployeeDeductionContributionPercent,
|
|
606
606
|
FinchAPI::Internal::AnyHash
|
|
607
607
|
)
|
|
608
608
|
end
|
|
@@ -616,7 +616,7 @@ module FinchAPI
|
|
|
616
616
|
# (amount in basis points).
|
|
617
617
|
sig do
|
|
618
618
|
returns(
|
|
619
|
-
FinchAPI::HRIS::Benefits::IndividualBenefit::Body::
|
|
619
|
+
FinchAPI::HRIS::Benefits::IndividualBenefit::Body::IndividualBenefit::EmployeeDeduction::EmployeeDeductionContributionPercent::Type::TaggedSymbol
|
|
620
620
|
)
|
|
621
621
|
end
|
|
622
622
|
attr_accessor :type
|
|
@@ -625,7 +625,7 @@ module FinchAPI
|
|
|
625
625
|
params(
|
|
626
626
|
amount: Integer,
|
|
627
627
|
type:
|
|
628
|
-
FinchAPI::HRIS::Benefits::IndividualBenefit::Body::
|
|
628
|
+
FinchAPI::HRIS::Benefits::IndividualBenefit::Body::IndividualBenefit::EmployeeDeduction::EmployeeDeductionContributionPercent::Type::OrSymbol
|
|
629
629
|
).returns(T.attached_class)
|
|
630
630
|
end
|
|
631
631
|
def self.new(
|
|
@@ -643,7 +643,7 @@ module FinchAPI
|
|
|
643
643
|
{
|
|
644
644
|
amount: Integer,
|
|
645
645
|
type:
|
|
646
|
-
FinchAPI::HRIS::Benefits::IndividualBenefit::Body::
|
|
646
|
+
FinchAPI::HRIS::Benefits::IndividualBenefit::Body::IndividualBenefit::EmployeeDeduction::EmployeeDeductionContributionPercent::Type::TaggedSymbol
|
|
647
647
|
}
|
|
648
648
|
)
|
|
649
649
|
end
|
|
@@ -659,7 +659,7 @@ module FinchAPI
|
|
|
659
659
|
T.type_alias do
|
|
660
660
|
T.all(
|
|
661
661
|
Symbol,
|
|
662
|
-
FinchAPI::HRIS::Benefits::IndividualBenefit::Body::
|
|
662
|
+
FinchAPI::HRIS::Benefits::IndividualBenefit::Body::IndividualBenefit::EmployeeDeduction::EmployeeDeductionContributionPercent::Type
|
|
663
663
|
)
|
|
664
664
|
end
|
|
665
665
|
OrSymbol = T.type_alias { T.any(Symbol, String) }
|
|
@@ -667,13 +667,13 @@ module FinchAPI
|
|
|
667
667
|
PERCENT =
|
|
668
668
|
T.let(
|
|
669
669
|
:percent,
|
|
670
|
-
FinchAPI::HRIS::Benefits::IndividualBenefit::Body::
|
|
670
|
+
FinchAPI::HRIS::Benefits::IndividualBenefit::Body::IndividualBenefit::EmployeeDeduction::EmployeeDeductionContributionPercent::Type::TaggedSymbol
|
|
671
671
|
)
|
|
672
672
|
|
|
673
673
|
sig do
|
|
674
674
|
override.returns(
|
|
675
675
|
T::Array[
|
|
676
|
-
FinchAPI::HRIS::Benefits::IndividualBenefit::Body::
|
|
676
|
+
FinchAPI::HRIS::Benefits::IndividualBenefit::Body::IndividualBenefit::EmployeeDeduction::EmployeeDeductionContributionPercent::Type::TaggedSymbol
|
|
677
677
|
]
|
|
678
678
|
)
|
|
679
679
|
end
|
|
@@ -685,7 +685,7 @@ module FinchAPI
|
|
|
685
685
|
sig do
|
|
686
686
|
override.returns(
|
|
687
687
|
T::Array[
|
|
688
|
-
FinchAPI::HRIS::Benefits::IndividualBenefit::Body::
|
|
688
|
+
FinchAPI::HRIS::Benefits::IndividualBenefit::Body::IndividualBenefit::EmployeeDeduction::Variants
|
|
689
689
|
]
|
|
690
690
|
)
|
|
691
691
|
end
|
|
@@ -701,7 +701,7 @@ module FinchAPI
|
|
|
701
701
|
T.type_alias do
|
|
702
702
|
T.all(
|
|
703
703
|
Symbol,
|
|
704
|
-
FinchAPI::HRIS::Benefits::IndividualBenefit::Body::
|
|
704
|
+
FinchAPI::HRIS::Benefits::IndividualBenefit::Body::IndividualBenefit::HsaContributionLimit
|
|
705
705
|
)
|
|
706
706
|
end
|
|
707
707
|
OrSymbol = T.type_alias { T.any(Symbol, String) }
|
|
@@ -709,18 +709,18 @@ module FinchAPI
|
|
|
709
709
|
INDIVIDUAL =
|
|
710
710
|
T.let(
|
|
711
711
|
:individual,
|
|
712
|
-
FinchAPI::HRIS::Benefits::IndividualBenefit::Body::
|
|
712
|
+
FinchAPI::HRIS::Benefits::IndividualBenefit::Body::IndividualBenefit::HsaContributionLimit::TaggedSymbol
|
|
713
713
|
)
|
|
714
714
|
FAMILY =
|
|
715
715
|
T.let(
|
|
716
716
|
:family,
|
|
717
|
-
FinchAPI::HRIS::Benefits::IndividualBenefit::Body::
|
|
717
|
+
FinchAPI::HRIS::Benefits::IndividualBenefit::Body::IndividualBenefit::HsaContributionLimit::TaggedSymbol
|
|
718
718
|
)
|
|
719
719
|
|
|
720
720
|
sig do
|
|
721
721
|
override.returns(
|
|
722
722
|
T::Array[
|
|
723
|
-
FinchAPI::HRIS::Benefits::IndividualBenefit::Body::
|
|
723
|
+
FinchAPI::HRIS::Benefits::IndividualBenefit::Body::IndividualBenefit::HsaContributionLimit::TaggedSymbol
|
|
724
724
|
]
|
|
725
725
|
)
|
|
726
726
|
end
|