finch-api 0.1.0.pre.alpha.30 → 0.1.0.pre.alpha.32
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 +48 -0
- data/README.md +1 -1
- data/lib/finch_api/errors.rb +25 -11
- data/lib/finch_api/file_part.rb +10 -7
- data/lib/finch_api/internal/individuals_page.rb +1 -1
- data/lib/finch_api/internal/page.rb +1 -1
- data/lib/finch_api/internal/responses_page.rb +1 -1
- data/lib/finch_api/internal/single_page.rb +1 -1
- data/lib/finch_api/internal/transport/base_client.rb +11 -7
- data/lib/finch_api/internal/transport/pooled_net_requester.rb +34 -31
- data/lib/finch_api/internal/type/base_page.rb +1 -1
- data/lib/finch_api/internal/type/file_input.rb +7 -4
- data/lib/finch_api/internal/util.rb +8 -7
- data/lib/finch_api/models/connect/session_new_params.rb +66 -50
- data/lib/finch_api/models/connect/session_reauthenticate_params.rb +10 -10
- data/lib/finch_api/models/create_access_token_response.rb +9 -1
- data/lib/finch_api/models/hris/benefit_contribution.rb +124 -29
- data/lib/finch_api/models/hris/benefit_create_params.rb +9 -1
- data/lib/finch_api/models/hris/benefit_list_params.rb +9 -1
- data/lib/finch_api/models/hris/benefit_list_supported_benefits_params.rb +9 -1
- data/lib/finch_api/models/hris/benefit_retrieve_params.rb +9 -1
- data/lib/finch_api/models/hris/benefit_update_params.rb +9 -1
- data/lib/finch_api/models/hris/benefits/individual_benefit.rb +222 -6
- data/lib/finch_api/models/hris/benefits/individual_enroll_many_params.rb +40 -2
- data/lib/finch_api/models/hris/benefits/individual_enrolled_ids_params.rb +9 -1
- data/lib/finch_api/models/hris/benefits/individual_retrieve_many_benefits_params.rb +9 -1
- data/lib/finch_api/models/hris/benefits/individual_unenroll_many_params.rb +9 -1
- data/lib/finch_api/models/hris/company/pay_statement_item/rule_create_params.rb +9 -1
- data/lib/finch_api/models/hris/company/pay_statement_item/rule_delete_params.rb +9 -1
- data/lib/finch_api/models/hris/company/pay_statement_item/rule_list_params.rb +9 -1
- data/lib/finch_api/models/hris/company/pay_statement_item/rule_update_params.rb +10 -1
- data/lib/finch_api/models/hris/company/pay_statement_item_list_params.rb +9 -1
- data/lib/finch_api/models/hris/company_retrieve_params.rb +9 -1
- data/lib/finch_api/models/hris/directory_list_individuals_params.rb +9 -1
- data/lib/finch_api/models/hris/directory_list_params.rb +9 -1
- data/lib/finch_api/models/hris/document_list_params.rb +9 -1
- data/lib/finch_api/models/hris/document_response.rb +11 -11
- data/lib/finch_api/models/hris/document_retreive_params.rb +9 -1
- data/lib/finch_api/models/hris/employment_retrieve_many_params.rb +9 -1
- data/lib/finch_api/models/hris/individual_retrieve_many_params.rb +11 -1
- data/lib/finch_api/models/hris/pay_statement.rb +11 -15
- data/lib/finch_api/models/hris/pay_statement_retrieve_many_params.rb +9 -1
- data/lib/finch_api/models/hris/payment_list_params.rb +9 -1
- data/lib/finch_api/models/hris/supported_benefit.rb +1 -0
- data/lib/finch_api/models/hris/w42005.rb +20 -20
- data/lib/finch_api/models/hris/w42020.rb +30 -30
- data/lib/finch_api/models/introspection.rb +38 -23
- data/lib/finch_api/models/jobs/automated_list_params.rb +1 -14
- data/lib/finch_api/models/jobs/automated_retrieve_params.rb +1 -14
- data/lib/finch_api/models/jobs/manual_retrieve_params.rb +1 -14
- data/lib/finch_api/models/payroll/pay_group_list_params.rb +11 -1
- data/lib/finch_api/models/payroll/pay_group_retrieve_params.rb +9 -1
- data/lib/finch_api/models/provider.rb +42 -1092
- data/lib/finch_api/models/provider_list_response.rb +143 -0
- data/lib/finch_api/models/request_forwarding_forward_params.rb +10 -6
- data/lib/finch_api/models/request_forwarding_forward_response.rb +69 -48
- data/lib/finch_api/resources/connect/sessions.rb +12 -12
- data/lib/finch_api/resources/hris/benefits/individuals.rb +24 -10
- data/lib/finch_api/resources/hris/benefits.rb +37 -16
- data/lib/finch_api/resources/hris/company/pay_statement_item/rules.rb +38 -15
- data/lib/finch_api/resources/hris/company/pay_statement_item.rb +3 -1
- data/lib/finch_api/resources/hris/company.rb +6 -2
- data/lib/finch_api/resources/hris/directory.rb +3 -1
- data/lib/finch_api/resources/hris/documents.rb +9 -3
- data/lib/finch_api/resources/hris/employments.rb +7 -3
- data/lib/finch_api/resources/hris/individuals.rb +10 -4
- data/lib/finch_api/resources/hris/pay_statements.rb +7 -3
- data/lib/finch_api/resources/hris/payments.rb +3 -1
- data/lib/finch_api/resources/jobs/automated.rb +3 -16
- data/lib/finch_api/resources/jobs/manual.rb +2 -10
- data/lib/finch_api/resources/payroll/pay_groups.rb +12 -3
- data/lib/finch_api/resources/providers.rb +2 -2
- data/lib/finch_api/resources/request_forwarding.rb +2 -2
- data/lib/finch_api/version.rb +1 -1
- data/lib/finch_api.rb +1 -0
- data/rbi/finch_api/errors.rbi +29 -2
- data/rbi/finch_api/file_part.rbi +1 -1
- data/rbi/finch_api/internal/transport/base_client.rbi +4 -5
- data/rbi/finch_api/internal/type/base_page.rbi +1 -1
- data/rbi/finch_api/internal/util.rbi +1 -1
- data/rbi/finch_api/models/connect/session_new_params.rbi +124 -98
- data/rbi/finch_api/models/connect/session_reauthenticate_params.rbi +23 -23
- data/rbi/finch_api/models/create_access_token_response.rbi +8 -0
- data/rbi/finch_api/models/hris/benefit_contribution.rbi +270 -52
- data/rbi/finch_api/models/hris/benefit_create_params.rbi +11 -0
- data/rbi/finch_api/models/hris/benefit_list_params.rbi +24 -5
- data/rbi/finch_api/models/hris/benefit_list_supported_benefits_params.rbi +24 -5
- data/rbi/finch_api/models/hris/benefit_retrieve_params.rbi +24 -5
- data/rbi/finch_api/models/hris/benefit_update_params.rbi +15 -1
- data/rbi/finch_api/models/hris/benefits/individual_benefit.rbi +515 -20
- data/rbi/finch_api/models/hris/benefits/individual_enroll_many_params.rbi +87 -0
- data/rbi/finch_api/models/hris/benefits/individual_enrolled_ids_params.rbi +22 -5
- data/rbi/finch_api/models/hris/benefits/individual_retrieve_many_benefits_params.rbi +11 -0
- data/rbi/finch_api/models/hris/benefits/individual_unenroll_many_params.rbi +11 -0
- data/rbi/finch_api/models/hris/company/pay_statement_item/rule_create_params.rbi +11 -0
- data/rbi/finch_api/models/hris/company/pay_statement_item/rule_delete_params.rbi +22 -5
- data/rbi/finch_api/models/hris/company/pay_statement_item/rule_list_params.rbi +22 -5
- data/rbi/finch_api/models/hris/company/pay_statement_item/rule_update_params.rbi +15 -1
- data/rbi/finch_api/models/hris/company/pay_statement_item_list_params.rbi +11 -0
- data/rbi/finch_api/models/hris/company_retrieve_params.rbi +24 -5
- data/rbi/finch_api/models/hris/directory_list_individuals_params.rbi +11 -0
- data/rbi/finch_api/models/hris/directory_list_params.rbi +11 -0
- data/rbi/finch_api/models/hris/document_list_params.rbi +11 -0
- data/rbi/finch_api/models/hris/document_response.rbi +14 -29
- data/rbi/finch_api/models/hris/document_retreive_params.rbi +24 -5
- data/rbi/finch_api/models/hris/employment_retrieve_many_params.rbi +11 -0
- data/rbi/finch_api/models/hris/individual_retrieve_many_params.rbi +16 -1
- data/rbi/finch_api/models/hris/pay_statement.rbi +9 -34
- data/rbi/finch_api/models/hris/pay_statement_retrieve_many_params.rbi +11 -0
- data/rbi/finch_api/models/hris/payment_list_params.rbi +11 -0
- data/rbi/finch_api/models/hris/supported_benefit.rbi +5 -0
- data/rbi/finch_api/models/hris/w42005.rbi +28 -38
- data/rbi/finch_api/models/hris/w42020.rbi +37 -43
- data/rbi/finch_api/models/introspection.rbi +57 -33
- data/rbi/finch_api/models/jobs/automated_list_params.rbi +0 -15
- data/rbi/finch_api/models/jobs/automated_retrieve_params.rbi +5 -25
- data/rbi/finch_api/models/jobs/manual_retrieve_params.rbi +5 -25
- data/rbi/finch_api/models/payroll/pay_group_list_params.rbi +11 -0
- data/rbi/finch_api/models/payroll/pay_group_retrieve_params.rbi +24 -5
- data/rbi/finch_api/models/provider.rbi +75 -2507
- data/rbi/finch_api/models/provider_list_response.rbi +280 -0
- data/rbi/finch_api/models/request_forwarding_forward_params.rbi +6 -6
- data/rbi/finch_api/models/request_forwarding_forward_response.rbi +93 -60
- data/rbi/finch_api/resources/connect/sessions.rbi +22 -14
- data/rbi/finch_api/resources/hris/benefits/individuals.rbi +20 -3
- data/rbi/finch_api/resources/hris/benefits.rbi +39 -12
- data/rbi/finch_api/resources/hris/company/pay_statement_item/rules.rbi +35 -8
- data/rbi/finch_api/resources/hris/company/pay_statement_item.rbi +3 -0
- data/rbi/finch_api/resources/hris/company.rbi +9 -4
- data/rbi/finch_api/resources/hris/directory.rbi +3 -0
- data/rbi/finch_api/resources/hris/documents.rbi +6 -0
- data/rbi/finch_api/resources/hris/employments.rbi +4 -1
- data/rbi/finch_api/resources/hris/individuals.rbi +10 -1
- data/rbi/finch_api/resources/hris/pay_statements.rbi +4 -1
- data/rbi/finch_api/resources/hris/payments.rbi +3 -0
- data/rbi/finch_api/resources/jobs/automated.rbi +1 -14
- data/rbi/finch_api/resources/jobs/manual.rbi +1 -9
- data/rbi/finch_api/resources/payroll/pay_groups.rbi +15 -2
- data/rbi/finch_api/resources/providers.rbi +1 -1
- data/rbi/finch_api/resources/request_forwarding.rbi +2 -2
- data/sig/finch_api/errors.rbs +7 -0
- data/sig/finch_api/file_part.rbs +1 -1
- data/sig/finch_api/models/connect/session_new_params.rbs +45 -45
- data/sig/finch_api/models/connect/session_reauthenticate_params.rbs +15 -15
- data/sig/finch_api/models/create_access_token_response.rbs +5 -0
- data/sig/finch_api/models/hris/benefit_contribution.rbs +107 -21
- data/sig/finch_api/models/hris/benefit_create_params.rbs +7 -0
- data/sig/finch_api/models/hris/benefit_list_params.rbs +14 -3
- data/sig/finch_api/models/hris/benefit_list_supported_benefits_params.rbs +14 -3
- data/sig/finch_api/models/hris/benefit_retrieve_params.rbs +14 -3
- data/sig/finch_api/models/hris/benefit_update_params.rbs +8 -1
- data/sig/finch_api/models/hris/benefits/individual_benefit.rbs +201 -8
- data/sig/finch_api/models/hris/benefits/individual_enroll_many_params.rbs +30 -1
- data/sig/finch_api/models/hris/benefits/individual_enrolled_ids_params.rbs +14 -3
- data/sig/finch_api/models/hris/benefits/individual_retrieve_many_benefits_params.rbs +7 -1
- data/sig/finch_api/models/hris/benefits/individual_unenroll_many_params.rbs +7 -1
- data/sig/finch_api/models/hris/benfit_contribution.rbs +1 -1
- data/sig/finch_api/models/hris/company/pay_statement_item/rule_create_params.rbs +7 -0
- data/sig/finch_api/models/hris/company/pay_statement_item/rule_delete_params.rbs +14 -3
- data/sig/finch_api/models/hris/company/pay_statement_item/rule_list_params.rbs +14 -3
- data/sig/finch_api/models/hris/company/pay_statement_item/rule_update_params.rbs +7 -1
- data/sig/finch_api/models/hris/company/pay_statement_item_list_params.rbs +7 -0
- data/sig/finch_api/models/hris/company_retrieve_params.rbs +14 -3
- data/sig/finch_api/models/hris/directory_list_individuals_params.rbs +7 -1
- data/sig/finch_api/models/hris/directory_list_params.rbs +7 -1
- data/sig/finch_api/models/hris/document_list_params.rbs +7 -0
- data/sig/finch_api/models/hris/document_response.rbs +11 -19
- data/sig/finch_api/models/hris/document_retreive_params.rbs +14 -3
- data/sig/finch_api/models/hris/employment_retrieve_many_params.rbs +8 -1
- data/sig/finch_api/models/hris/individual_retrieve_many_params.rbs +7 -0
- data/sig/finch_api/models/hris/pay_statement.rbs +12 -12
- data/sig/finch_api/models/hris/pay_statement_retrieve_many_params.rbs +8 -1
- data/sig/finch_api/models/hris/payment_list_params.rbs +7 -1
- data/sig/finch_api/models/hris/supported_benefit.rbs +2 -1
- data/sig/finch_api/models/hris/w42005.rbs +23 -37
- data/sig/finch_api/models/hris/w42020.rbs +35 -45
- data/sig/finch_api/models/introspection.rbs +29 -20
- data/sig/finch_api/models/jobs/automated_list_params.rbs +1 -7
- data/sig/finch_api/models/jobs/automated_retrieve_params.rbs +3 -13
- data/sig/finch_api/models/jobs/manual_retrieve_params.rbs +3 -13
- data/sig/finch_api/models/payroll/pay_group_list_params.rbs +11 -1
- data/sig/finch_api/models/payroll/pay_group_retrieve_params.rbs +14 -3
- data/sig/finch_api/models/provider.rbs +31 -1366
- data/sig/finch_api/models/provider_list_response.rbs +128 -0
- data/sig/finch_api/models/request_forwarding_forward_params.rbs +8 -8
- data/sig/finch_api/models/request_forwarding_forward_response.rbs +40 -30
- data/sig/finch_api/resources/connect/sessions.rbs +9 -9
- data/sig/finch_api/resources/hris/benefits/individuals.rbs +4 -0
- data/sig/finch_api/resources/hris/benefits.rbs +5 -0
- data/sig/finch_api/resources/hris/company/pay_statement_item/rules.rbs +4 -0
- data/sig/finch_api/resources/hris/company/pay_statement_item.rbs +1 -0
- data/sig/finch_api/resources/hris/company.rbs +1 -0
- data/sig/finch_api/resources/hris/directory.rbs +1 -0
- data/sig/finch_api/resources/hris/documents.rbs +2 -0
- data/sig/finch_api/resources/hris/employments.rbs +1 -0
- data/sig/finch_api/resources/hris/individuals.rbs +1 -0
- data/sig/finch_api/resources/hris/pay_statements.rbs +1 -0
- data/sig/finch_api/resources/hris/payments.rbs +1 -0
- data/sig/finch_api/resources/jobs/automated.rbs +0 -2
- data/sig/finch_api/resources/jobs/manual.rbs +0 -1
- data/sig/finch_api/resources/payroll/pay_groups.rbs +2 -0
- data/sig/finch_api/resources/providers.rbs +1 -1
- data/sig/finch_api/resources/request_forwarding.rbs +2 -2
- metadata +5 -2
|
@@ -41,8 +41,8 @@ module FinchAPI
|
|
|
41
41
|
{
|
|
42
42
|
annual_maximum: Integer?,
|
|
43
43
|
catch_up: bool?,
|
|
44
|
-
company_contribution: FinchAPI::HRIS::
|
|
45
|
-
employee_deduction: FinchAPI::HRIS::
|
|
44
|
+
company_contribution: FinchAPI::Models::HRIS::Benefits::IndividualBenefit::Body::UnionMember0::company_contribution?,
|
|
45
|
+
employee_deduction: FinchAPI::Models::HRIS::Benefits::IndividualBenefit::Body::UnionMember0::employee_deduction?,
|
|
46
46
|
hsa_contribution_limit: FinchAPI::Models::HRIS::Benefits::IndividualBenefit::Body::UnionMember0::hsa_contribution_limit?
|
|
47
47
|
}
|
|
48
48
|
|
|
@@ -51,28 +51,221 @@ module FinchAPI
|
|
|
51
51
|
|
|
52
52
|
attr_accessor catch_up: bool?
|
|
53
53
|
|
|
54
|
-
attr_accessor company_contribution: FinchAPI::HRIS::
|
|
54
|
+
attr_accessor company_contribution: FinchAPI::Models::HRIS::Benefits::IndividualBenefit::Body::UnionMember0::company_contribution?
|
|
55
55
|
|
|
56
|
-
attr_accessor employee_deduction: FinchAPI::HRIS::
|
|
56
|
+
attr_accessor employee_deduction: FinchAPI::Models::HRIS::Benefits::IndividualBenefit::Body::UnionMember0::employee_deduction?
|
|
57
57
|
|
|
58
58
|
attr_accessor hsa_contribution_limit: FinchAPI::Models::HRIS::Benefits::IndividualBenefit::Body::UnionMember0::hsa_contribution_limit?
|
|
59
59
|
|
|
60
60
|
def initialize: (
|
|
61
61
|
annual_maximum: Integer?,
|
|
62
62
|
catch_up: bool?,
|
|
63
|
-
company_contribution: FinchAPI::HRIS::
|
|
64
|
-
employee_deduction: FinchAPI::HRIS::
|
|
63
|
+
company_contribution: FinchAPI::Models::HRIS::Benefits::IndividualBenefit::Body::UnionMember0::company_contribution?,
|
|
64
|
+
employee_deduction: FinchAPI::Models::HRIS::Benefits::IndividualBenefit::Body::UnionMember0::employee_deduction?,
|
|
65
65
|
?hsa_contribution_limit: FinchAPI::Models::HRIS::Benefits::IndividualBenefit::Body::UnionMember0::hsa_contribution_limit?
|
|
66
66
|
) -> void
|
|
67
67
|
|
|
68
68
|
def to_hash: -> {
|
|
69
69
|
annual_maximum: Integer?,
|
|
70
70
|
catch_up: bool?,
|
|
71
|
-
company_contribution: FinchAPI::HRIS::
|
|
72
|
-
employee_deduction: FinchAPI::HRIS::
|
|
71
|
+
company_contribution: FinchAPI::Models::HRIS::Benefits::IndividualBenefit::Body::UnionMember0::company_contribution?,
|
|
72
|
+
employee_deduction: FinchAPI::Models::HRIS::Benefits::IndividualBenefit::Body::UnionMember0::employee_deduction?,
|
|
73
73
|
hsa_contribution_limit: FinchAPI::Models::HRIS::Benefits::IndividualBenefit::Body::UnionMember0::hsa_contribution_limit?
|
|
74
74
|
}
|
|
75
75
|
|
|
76
|
+
type company_contribution =
|
|
77
|
+
FinchAPI::HRIS::Benefits::IndividualBenefit::Body::UnionMember0::CompanyContribution::UnionMember0
|
|
78
|
+
| FinchAPI::HRIS::Benefits::IndividualBenefit::Body::UnionMember0::CompanyContribution::UnionMember1
|
|
79
|
+
| FinchAPI::HRIS::Benefits::IndividualBenefit::Body::UnionMember0::CompanyContribution::UnionMember2
|
|
80
|
+
|
|
81
|
+
module CompanyContribution
|
|
82
|
+
extend FinchAPI::Internal::Type::Union
|
|
83
|
+
|
|
84
|
+
type union_member0 =
|
|
85
|
+
{
|
|
86
|
+
amount: Integer,
|
|
87
|
+
type: FinchAPI::Models::HRIS::Benefits::IndividualBenefit::Body::UnionMember0::CompanyContribution::UnionMember0::type_
|
|
88
|
+
}
|
|
89
|
+
|
|
90
|
+
class UnionMember0 < FinchAPI::Internal::Type::BaseModel
|
|
91
|
+
attr_accessor amount: Integer
|
|
92
|
+
|
|
93
|
+
attr_accessor type: FinchAPI::Models::HRIS::Benefits::IndividualBenefit::Body::UnionMember0::CompanyContribution::UnionMember0::type_
|
|
94
|
+
|
|
95
|
+
def initialize: (
|
|
96
|
+
amount: Integer,
|
|
97
|
+
type: FinchAPI::Models::HRIS::Benefits::IndividualBenefit::Body::UnionMember0::CompanyContribution::UnionMember0::type_
|
|
98
|
+
) -> void
|
|
99
|
+
|
|
100
|
+
def to_hash: -> {
|
|
101
|
+
amount: Integer,
|
|
102
|
+
type: FinchAPI::Models::HRIS::Benefits::IndividualBenefit::Body::UnionMember0::CompanyContribution::UnionMember0::type_
|
|
103
|
+
}
|
|
104
|
+
|
|
105
|
+
type type_ = :fixed
|
|
106
|
+
|
|
107
|
+
module Type
|
|
108
|
+
extend FinchAPI::Internal::Type::Enum
|
|
109
|
+
|
|
110
|
+
FIXED: :fixed
|
|
111
|
+
|
|
112
|
+
def self?.values: -> ::Array[FinchAPI::Models::HRIS::Benefits::IndividualBenefit::Body::UnionMember0::CompanyContribution::UnionMember0::type_]
|
|
113
|
+
end
|
|
114
|
+
end
|
|
115
|
+
|
|
116
|
+
type union_member1 =
|
|
117
|
+
{
|
|
118
|
+
amount: Integer,
|
|
119
|
+
type: FinchAPI::Models::HRIS::Benefits::IndividualBenefit::Body::UnionMember0::CompanyContribution::UnionMember1::type_
|
|
120
|
+
}
|
|
121
|
+
|
|
122
|
+
class UnionMember1 < FinchAPI::Internal::Type::BaseModel
|
|
123
|
+
attr_accessor amount: Integer
|
|
124
|
+
|
|
125
|
+
attr_accessor type: FinchAPI::Models::HRIS::Benefits::IndividualBenefit::Body::UnionMember0::CompanyContribution::UnionMember1::type_
|
|
126
|
+
|
|
127
|
+
def initialize: (
|
|
128
|
+
amount: Integer,
|
|
129
|
+
type: FinchAPI::Models::HRIS::Benefits::IndividualBenefit::Body::UnionMember0::CompanyContribution::UnionMember1::type_
|
|
130
|
+
) -> void
|
|
131
|
+
|
|
132
|
+
def to_hash: -> {
|
|
133
|
+
amount: Integer,
|
|
134
|
+
type: FinchAPI::Models::HRIS::Benefits::IndividualBenefit::Body::UnionMember0::CompanyContribution::UnionMember1::type_
|
|
135
|
+
}
|
|
136
|
+
|
|
137
|
+
type type_ = :percent
|
|
138
|
+
|
|
139
|
+
module Type
|
|
140
|
+
extend FinchAPI::Internal::Type::Enum
|
|
141
|
+
|
|
142
|
+
PERCENT: :percent
|
|
143
|
+
|
|
144
|
+
def self?.values: -> ::Array[FinchAPI::Models::HRIS::Benefits::IndividualBenefit::Body::UnionMember0::CompanyContribution::UnionMember1::type_]
|
|
145
|
+
end
|
|
146
|
+
end
|
|
147
|
+
|
|
148
|
+
type union_member2 =
|
|
149
|
+
{
|
|
150
|
+
tiers: ::Array[FinchAPI::HRIS::Benefits::IndividualBenefit::Body::UnionMember0::CompanyContribution::UnionMember2::Tier],
|
|
151
|
+
type: FinchAPI::Models::HRIS::Benefits::IndividualBenefit::Body::UnionMember0::CompanyContribution::UnionMember2::type_
|
|
152
|
+
}
|
|
153
|
+
|
|
154
|
+
class UnionMember2 < FinchAPI::Internal::Type::BaseModel
|
|
155
|
+
attr_accessor tiers: ::Array[FinchAPI::HRIS::Benefits::IndividualBenefit::Body::UnionMember0::CompanyContribution::UnionMember2::Tier]
|
|
156
|
+
|
|
157
|
+
attr_accessor type: FinchAPI::Models::HRIS::Benefits::IndividualBenefit::Body::UnionMember0::CompanyContribution::UnionMember2::type_
|
|
158
|
+
|
|
159
|
+
def initialize: (
|
|
160
|
+
tiers: ::Array[FinchAPI::HRIS::Benefits::IndividualBenefit::Body::UnionMember0::CompanyContribution::UnionMember2::Tier],
|
|
161
|
+
type: FinchAPI::Models::HRIS::Benefits::IndividualBenefit::Body::UnionMember0::CompanyContribution::UnionMember2::type_
|
|
162
|
+
) -> void
|
|
163
|
+
|
|
164
|
+
def to_hash: -> {
|
|
165
|
+
tiers: ::Array[FinchAPI::HRIS::Benefits::IndividualBenefit::Body::UnionMember0::CompanyContribution::UnionMember2::Tier],
|
|
166
|
+
type: FinchAPI::Models::HRIS::Benefits::IndividualBenefit::Body::UnionMember0::CompanyContribution::UnionMember2::type_
|
|
167
|
+
}
|
|
168
|
+
|
|
169
|
+
type tier = { match: Integer, threshold: Integer }
|
|
170
|
+
|
|
171
|
+
class Tier < FinchAPI::Internal::Type::BaseModel
|
|
172
|
+
attr_accessor match: Integer
|
|
173
|
+
|
|
174
|
+
attr_accessor threshold: Integer
|
|
175
|
+
|
|
176
|
+
def initialize: (match: Integer, threshold: Integer) -> void
|
|
177
|
+
|
|
178
|
+
def to_hash: -> { match: Integer, threshold: Integer }
|
|
179
|
+
end
|
|
180
|
+
|
|
181
|
+
type type_ = :tiered
|
|
182
|
+
|
|
183
|
+
module Type
|
|
184
|
+
extend FinchAPI::Internal::Type::Enum
|
|
185
|
+
|
|
186
|
+
TIERED: :tiered
|
|
187
|
+
|
|
188
|
+
def self?.values: -> ::Array[FinchAPI::Models::HRIS::Benefits::IndividualBenefit::Body::UnionMember0::CompanyContribution::UnionMember2::type_]
|
|
189
|
+
end
|
|
190
|
+
end
|
|
191
|
+
|
|
192
|
+
def self?.variants: -> ::Array[FinchAPI::Models::HRIS::Benefits::IndividualBenefit::Body::UnionMember0::company_contribution]
|
|
193
|
+
end
|
|
194
|
+
|
|
195
|
+
type employee_deduction =
|
|
196
|
+
FinchAPI::HRIS::Benefits::IndividualBenefit::Body::UnionMember0::EmployeeDeduction::UnionMember0
|
|
197
|
+
| FinchAPI::HRIS::Benefits::IndividualBenefit::Body::UnionMember0::EmployeeDeduction::UnionMember1
|
|
198
|
+
|
|
199
|
+
module EmployeeDeduction
|
|
200
|
+
extend FinchAPI::Internal::Type::Union
|
|
201
|
+
|
|
202
|
+
type union_member0 =
|
|
203
|
+
{
|
|
204
|
+
amount: Integer,
|
|
205
|
+
type: FinchAPI::Models::HRIS::Benefits::IndividualBenefit::Body::UnionMember0::EmployeeDeduction::UnionMember0::type_
|
|
206
|
+
}
|
|
207
|
+
|
|
208
|
+
class UnionMember0 < FinchAPI::Internal::Type::BaseModel
|
|
209
|
+
attr_accessor amount: Integer
|
|
210
|
+
|
|
211
|
+
attr_accessor type: FinchAPI::Models::HRIS::Benefits::IndividualBenefit::Body::UnionMember0::EmployeeDeduction::UnionMember0::type_
|
|
212
|
+
|
|
213
|
+
def initialize: (
|
|
214
|
+
amount: Integer,
|
|
215
|
+
type: FinchAPI::Models::HRIS::Benefits::IndividualBenefit::Body::UnionMember0::EmployeeDeduction::UnionMember0::type_
|
|
216
|
+
) -> void
|
|
217
|
+
|
|
218
|
+
def to_hash: -> {
|
|
219
|
+
amount: Integer,
|
|
220
|
+
type: FinchAPI::Models::HRIS::Benefits::IndividualBenefit::Body::UnionMember0::EmployeeDeduction::UnionMember0::type_
|
|
221
|
+
}
|
|
222
|
+
|
|
223
|
+
type type_ = :fixed
|
|
224
|
+
|
|
225
|
+
module Type
|
|
226
|
+
extend FinchAPI::Internal::Type::Enum
|
|
227
|
+
|
|
228
|
+
FIXED: :fixed
|
|
229
|
+
|
|
230
|
+
def self?.values: -> ::Array[FinchAPI::Models::HRIS::Benefits::IndividualBenefit::Body::UnionMember0::EmployeeDeduction::UnionMember0::type_]
|
|
231
|
+
end
|
|
232
|
+
end
|
|
233
|
+
|
|
234
|
+
type union_member1 =
|
|
235
|
+
{
|
|
236
|
+
amount: Integer,
|
|
237
|
+
type: FinchAPI::Models::HRIS::Benefits::IndividualBenefit::Body::UnionMember0::EmployeeDeduction::UnionMember1::type_
|
|
238
|
+
}
|
|
239
|
+
|
|
240
|
+
class UnionMember1 < FinchAPI::Internal::Type::BaseModel
|
|
241
|
+
attr_accessor amount: Integer
|
|
242
|
+
|
|
243
|
+
attr_accessor type: FinchAPI::Models::HRIS::Benefits::IndividualBenefit::Body::UnionMember0::EmployeeDeduction::UnionMember1::type_
|
|
244
|
+
|
|
245
|
+
def initialize: (
|
|
246
|
+
amount: Integer,
|
|
247
|
+
type: FinchAPI::Models::HRIS::Benefits::IndividualBenefit::Body::UnionMember0::EmployeeDeduction::UnionMember1::type_
|
|
248
|
+
) -> void
|
|
249
|
+
|
|
250
|
+
def to_hash: -> {
|
|
251
|
+
amount: Integer,
|
|
252
|
+
type: FinchAPI::Models::HRIS::Benefits::IndividualBenefit::Body::UnionMember0::EmployeeDeduction::UnionMember1::type_
|
|
253
|
+
}
|
|
254
|
+
|
|
255
|
+
type type_ = :percent
|
|
256
|
+
|
|
257
|
+
module Type
|
|
258
|
+
extend FinchAPI::Internal::Type::Enum
|
|
259
|
+
|
|
260
|
+
PERCENT: :percent
|
|
261
|
+
|
|
262
|
+
def self?.values: -> ::Array[FinchAPI::Models::HRIS::Benefits::IndividualBenefit::Body::UnionMember0::EmployeeDeduction::UnionMember1::type_]
|
|
263
|
+
end
|
|
264
|
+
end
|
|
265
|
+
|
|
266
|
+
def self?.variants: -> ::Array[FinchAPI::Models::HRIS::Benefits::IndividualBenefit::Body::UnionMember0::employee_deduction]
|
|
267
|
+
end
|
|
268
|
+
|
|
76
269
|
type hsa_contribution_limit = :individual | :family
|
|
77
270
|
|
|
78
271
|
module HsaContributionLimit
|
|
@@ -4,6 +4,7 @@ module FinchAPI
|
|
|
4
4
|
module Benefits
|
|
5
5
|
type individual_enroll_many_params =
|
|
6
6
|
{
|
|
7
|
+
entity_ids: ::Array[String],
|
|
7
8
|
individuals: ::Array[FinchAPI::HRIS::Benefits::IndividualEnrollManyParams::Individual]
|
|
8
9
|
}
|
|
9
10
|
& FinchAPI::Internal::Type::request_parameters
|
|
@@ -12,6 +13,10 @@ module FinchAPI
|
|
|
12
13
|
extend FinchAPI::Internal::Type::RequestParameters::Converter
|
|
13
14
|
include FinchAPI::Internal::Type::RequestParameters
|
|
14
15
|
|
|
16
|
+
attr_reader entity_ids: ::Array[String]?
|
|
17
|
+
|
|
18
|
+
def entity_ids=: (::Array[String]) -> ::Array[String]
|
|
19
|
+
|
|
15
20
|
attr_reader individuals: ::Array[FinchAPI::HRIS::Benefits::IndividualEnrollManyParams::Individual]?
|
|
16
21
|
|
|
17
22
|
def individuals=: (
|
|
@@ -19,11 +24,13 @@ module FinchAPI
|
|
|
19
24
|
) -> ::Array[FinchAPI::HRIS::Benefits::IndividualEnrollManyParams::Individual]
|
|
20
25
|
|
|
21
26
|
def initialize: (
|
|
27
|
+
?entity_ids: ::Array[String],
|
|
22
28
|
?individuals: ::Array[FinchAPI::HRIS::Benefits::IndividualEnrollManyParams::Individual],
|
|
23
29
|
?request_options: FinchAPI::request_opts
|
|
24
30
|
) -> void
|
|
25
31
|
|
|
26
32
|
def to_hash: -> {
|
|
33
|
+
entity_ids: ::Array[String],
|
|
27
34
|
individuals: ::Array[FinchAPI::HRIS::Benefits::IndividualEnrollManyParams::Individual],
|
|
28
35
|
request_options: FinchAPI::RequestOptions
|
|
29
36
|
}
|
|
@@ -126,6 +133,7 @@ module FinchAPI
|
|
|
126
133
|
type company_contribution =
|
|
127
134
|
{
|
|
128
135
|
amount: Integer,
|
|
136
|
+
tiers: ::Array[FinchAPI::HRIS::Benefits::IndividualEnrollManyParams::Individual::Configuration::CompanyContribution::Tier],
|
|
129
137
|
type: FinchAPI::Models::HRIS::Benefits::IndividualEnrollManyParams::Individual::Configuration::CompanyContribution::type_
|
|
130
138
|
}
|
|
131
139
|
|
|
@@ -134,6 +142,12 @@ module FinchAPI
|
|
|
134
142
|
|
|
135
143
|
def amount=: (Integer) -> Integer
|
|
136
144
|
|
|
145
|
+
attr_reader tiers: ::Array[FinchAPI::HRIS::Benefits::IndividualEnrollManyParams::Individual::Configuration::CompanyContribution::Tier]?
|
|
146
|
+
|
|
147
|
+
def tiers=: (
|
|
148
|
+
::Array[FinchAPI::HRIS::Benefits::IndividualEnrollManyParams::Individual::Configuration::CompanyContribution::Tier]
|
|
149
|
+
) -> ::Array[FinchAPI::HRIS::Benefits::IndividualEnrollManyParams::Individual::Configuration::CompanyContribution::Tier]
|
|
150
|
+
|
|
137
151
|
attr_reader type: FinchAPI::Models::HRIS::Benefits::IndividualEnrollManyParams::Individual::Configuration::CompanyContribution::type_?
|
|
138
152
|
|
|
139
153
|
def type=: (
|
|
@@ -142,21 +156,36 @@ module FinchAPI
|
|
|
142
156
|
|
|
143
157
|
def initialize: (
|
|
144
158
|
?amount: Integer,
|
|
159
|
+
?tiers: ::Array[FinchAPI::HRIS::Benefits::IndividualEnrollManyParams::Individual::Configuration::CompanyContribution::Tier],
|
|
145
160
|
?type: FinchAPI::Models::HRIS::Benefits::IndividualEnrollManyParams::Individual::Configuration::CompanyContribution::type_
|
|
146
161
|
) -> void
|
|
147
162
|
|
|
148
163
|
def to_hash: -> {
|
|
149
164
|
amount: Integer,
|
|
165
|
+
tiers: ::Array[FinchAPI::HRIS::Benefits::IndividualEnrollManyParams::Individual::Configuration::CompanyContribution::Tier],
|
|
150
166
|
type: FinchAPI::Models::HRIS::Benefits::IndividualEnrollManyParams::Individual::Configuration::CompanyContribution::type_
|
|
151
167
|
}
|
|
152
168
|
|
|
153
|
-
type
|
|
169
|
+
type tier = { match: Integer, threshold: Integer }
|
|
170
|
+
|
|
171
|
+
class Tier < FinchAPI::Internal::Type::BaseModel
|
|
172
|
+
attr_accessor match: Integer
|
|
173
|
+
|
|
174
|
+
attr_accessor threshold: Integer
|
|
175
|
+
|
|
176
|
+
def initialize: (match: Integer, threshold: Integer) -> void
|
|
177
|
+
|
|
178
|
+
def to_hash: -> { match: Integer, threshold: Integer }
|
|
179
|
+
end
|
|
180
|
+
|
|
181
|
+
type type_ = :fixed | :percent | :tiered
|
|
154
182
|
|
|
155
183
|
module Type
|
|
156
184
|
extend FinchAPI::Internal::Type::Enum
|
|
157
185
|
|
|
158
186
|
FIXED: :fixed
|
|
159
187
|
PERCENT: :percent
|
|
188
|
+
TIERED: :tiered
|
|
160
189
|
|
|
161
190
|
def self?.values: -> ::Array[FinchAPI::Models::HRIS::Benefits::IndividualEnrollManyParams::Individual::Configuration::CompanyContribution::type_]
|
|
162
191
|
end
|
|
@@ -3,15 +3,26 @@ module FinchAPI
|
|
|
3
3
|
module HRIS
|
|
4
4
|
module Benefits
|
|
5
5
|
type individual_enrolled_ids_params =
|
|
6
|
-
{
|
|
6
|
+
{ entity_ids: ::Array[String] }
|
|
7
|
+
& FinchAPI::Internal::Type::request_parameters
|
|
7
8
|
|
|
8
9
|
class IndividualEnrolledIDsParams < FinchAPI::Internal::Type::BaseModel
|
|
9
10
|
extend FinchAPI::Internal::Type::RequestParameters::Converter
|
|
10
11
|
include FinchAPI::Internal::Type::RequestParameters
|
|
11
12
|
|
|
12
|
-
|
|
13
|
+
attr_reader entity_ids: ::Array[String]?
|
|
13
14
|
|
|
14
|
-
def
|
|
15
|
+
def entity_ids=: (::Array[String]) -> ::Array[String]
|
|
16
|
+
|
|
17
|
+
def initialize: (
|
|
18
|
+
?entity_ids: ::Array[String],
|
|
19
|
+
?request_options: FinchAPI::request_opts
|
|
20
|
+
) -> void
|
|
21
|
+
|
|
22
|
+
def to_hash: -> {
|
|
23
|
+
entity_ids: ::Array[String],
|
|
24
|
+
request_options: FinchAPI::RequestOptions
|
|
25
|
+
}
|
|
15
26
|
end
|
|
16
27
|
end
|
|
17
28
|
end
|
|
@@ -3,23 +3,29 @@ module FinchAPI
|
|
|
3
3
|
module HRIS
|
|
4
4
|
module Benefits
|
|
5
5
|
type individual_retrieve_many_benefits_params =
|
|
6
|
-
{ individual_ids: String }
|
|
6
|
+
{ entity_ids: ::Array[String], individual_ids: String }
|
|
7
7
|
& FinchAPI::Internal::Type::request_parameters
|
|
8
8
|
|
|
9
9
|
class IndividualRetrieveManyBenefitsParams < FinchAPI::Internal::Type::BaseModel
|
|
10
10
|
extend FinchAPI::Internal::Type::RequestParameters::Converter
|
|
11
11
|
include FinchAPI::Internal::Type::RequestParameters
|
|
12
12
|
|
|
13
|
+
attr_reader entity_ids: ::Array[String]?
|
|
14
|
+
|
|
15
|
+
def entity_ids=: (::Array[String]) -> ::Array[String]
|
|
16
|
+
|
|
13
17
|
attr_reader individual_ids: String?
|
|
14
18
|
|
|
15
19
|
def individual_ids=: (String) -> String
|
|
16
20
|
|
|
17
21
|
def initialize: (
|
|
22
|
+
?entity_ids: ::Array[String],
|
|
18
23
|
?individual_ids: String,
|
|
19
24
|
?request_options: FinchAPI::request_opts
|
|
20
25
|
) -> void
|
|
21
26
|
|
|
22
27
|
def to_hash: -> {
|
|
28
|
+
entity_ids: ::Array[String],
|
|
23
29
|
individual_ids: String,
|
|
24
30
|
request_options: FinchAPI::RequestOptions
|
|
25
31
|
}
|
|
@@ -3,23 +3,29 @@ module FinchAPI
|
|
|
3
3
|
module HRIS
|
|
4
4
|
module Benefits
|
|
5
5
|
type individual_unenroll_many_params =
|
|
6
|
-
{ individual_ids: ::Array[String] }
|
|
6
|
+
{ entity_ids: ::Array[String], individual_ids: ::Array[String] }
|
|
7
7
|
& FinchAPI::Internal::Type::request_parameters
|
|
8
8
|
|
|
9
9
|
class IndividualUnenrollManyParams < FinchAPI::Internal::Type::BaseModel
|
|
10
10
|
extend FinchAPI::Internal::Type::RequestParameters::Converter
|
|
11
11
|
include FinchAPI::Internal::Type::RequestParameters
|
|
12
12
|
|
|
13
|
+
attr_reader entity_ids: ::Array[String]?
|
|
14
|
+
|
|
15
|
+
def entity_ids=: (::Array[String]) -> ::Array[String]
|
|
16
|
+
|
|
13
17
|
attr_reader individual_ids: ::Array[String]?
|
|
14
18
|
|
|
15
19
|
def individual_ids=: (::Array[String]) -> ::Array[String]
|
|
16
20
|
|
|
17
21
|
def initialize: (
|
|
22
|
+
?entity_ids: ::Array[String],
|
|
18
23
|
?individual_ids: ::Array[String],
|
|
19
24
|
?request_options: FinchAPI::request_opts
|
|
20
25
|
) -> void
|
|
21
26
|
|
|
22
27
|
def to_hash: -> {
|
|
28
|
+
entity_ids: ::Array[String],
|
|
23
29
|
individual_ids: ::Array[String],
|
|
24
30
|
request_options: FinchAPI::RequestOptions
|
|
25
31
|
}
|
|
@@ -5,6 +5,7 @@ module FinchAPI
|
|
|
5
5
|
module PayStatementItem
|
|
6
6
|
type rule_create_params =
|
|
7
7
|
{
|
|
8
|
+
entity_ids: ::Array[String],
|
|
8
9
|
attributes: FinchAPI::HRIS::Company::PayStatementItem::RuleCreateParams::Attributes,
|
|
9
10
|
conditions: ::Array[FinchAPI::HRIS::Company::PayStatementItem::RuleCreateParams::Condition],
|
|
10
11
|
effective_end_date: String?,
|
|
@@ -17,6 +18,10 @@ module FinchAPI
|
|
|
17
18
|
extend FinchAPI::Internal::Type::RequestParameters::Converter
|
|
18
19
|
include FinchAPI::Internal::Type::RequestParameters
|
|
19
20
|
|
|
21
|
+
attr_reader entity_ids: ::Array[String]?
|
|
22
|
+
|
|
23
|
+
def entity_ids=: (::Array[String]) -> ::Array[String]
|
|
24
|
+
|
|
20
25
|
attr_reader attributes: FinchAPI::HRIS::Company::PayStatementItem::RuleCreateParams::Attributes?
|
|
21
26
|
|
|
22
27
|
def attributes=: (
|
|
@@ -40,6 +45,7 @@ module FinchAPI
|
|
|
40
45
|
) -> FinchAPI::Models::HRIS::Company::PayStatementItem::RuleCreateParams::entity_type
|
|
41
46
|
|
|
42
47
|
def initialize: (
|
|
48
|
+
?entity_ids: ::Array[String],
|
|
43
49
|
?attributes: FinchAPI::HRIS::Company::PayStatementItem::RuleCreateParams::Attributes,
|
|
44
50
|
?conditions: ::Array[FinchAPI::HRIS::Company::PayStatementItem::RuleCreateParams::Condition],
|
|
45
51
|
?effective_end_date: String?,
|
|
@@ -49,6 +55,7 @@ module FinchAPI
|
|
|
49
55
|
) -> void
|
|
50
56
|
|
|
51
57
|
def to_hash: -> {
|
|
58
|
+
entity_ids: ::Array[String],
|
|
52
59
|
attributes: FinchAPI::HRIS::Company::PayStatementItem::RuleCreateParams::Attributes,
|
|
53
60
|
conditions: ::Array[FinchAPI::HRIS::Company::PayStatementItem::RuleCreateParams::Condition],
|
|
54
61
|
effective_end_date: String?,
|
|
@@ -4,15 +4,26 @@ module FinchAPI
|
|
|
4
4
|
module Company
|
|
5
5
|
module PayStatementItem
|
|
6
6
|
type rule_delete_params =
|
|
7
|
-
{
|
|
7
|
+
{ entity_ids: ::Array[String] }
|
|
8
|
+
& FinchAPI::Internal::Type::request_parameters
|
|
8
9
|
|
|
9
10
|
class RuleDeleteParams < FinchAPI::Internal::Type::BaseModel
|
|
10
11
|
extend FinchAPI::Internal::Type::RequestParameters::Converter
|
|
11
12
|
include FinchAPI::Internal::Type::RequestParameters
|
|
12
13
|
|
|
13
|
-
|
|
14
|
+
attr_reader entity_ids: ::Array[String]?
|
|
14
15
|
|
|
15
|
-
def
|
|
16
|
+
def entity_ids=: (::Array[String]) -> ::Array[String]
|
|
17
|
+
|
|
18
|
+
def initialize: (
|
|
19
|
+
?entity_ids: ::Array[String],
|
|
20
|
+
?request_options: FinchAPI::request_opts
|
|
21
|
+
) -> void
|
|
22
|
+
|
|
23
|
+
def to_hash: -> {
|
|
24
|
+
entity_ids: ::Array[String],
|
|
25
|
+
request_options: FinchAPI::RequestOptions
|
|
26
|
+
}
|
|
16
27
|
end
|
|
17
28
|
end
|
|
18
29
|
end
|
|
@@ -4,15 +4,26 @@ module FinchAPI
|
|
|
4
4
|
module Company
|
|
5
5
|
module PayStatementItem
|
|
6
6
|
type rule_list_params =
|
|
7
|
-
{
|
|
7
|
+
{ entity_ids: ::Array[String] }
|
|
8
|
+
& FinchAPI::Internal::Type::request_parameters
|
|
8
9
|
|
|
9
10
|
class RuleListParams < FinchAPI::Internal::Type::BaseModel
|
|
10
11
|
extend FinchAPI::Internal::Type::RequestParameters::Converter
|
|
11
12
|
include FinchAPI::Internal::Type::RequestParameters
|
|
12
13
|
|
|
13
|
-
|
|
14
|
+
attr_reader entity_ids: ::Array[String]?
|
|
14
15
|
|
|
15
|
-
def
|
|
16
|
+
def entity_ids=: (::Array[String]) -> ::Array[String]
|
|
17
|
+
|
|
18
|
+
def initialize: (
|
|
19
|
+
?entity_ids: ::Array[String],
|
|
20
|
+
?request_options: FinchAPI::request_opts
|
|
21
|
+
) -> void
|
|
22
|
+
|
|
23
|
+
def to_hash: -> {
|
|
24
|
+
entity_ids: ::Array[String],
|
|
25
|
+
request_options: FinchAPI::RequestOptions
|
|
26
|
+
}
|
|
16
27
|
end
|
|
17
28
|
end
|
|
18
29
|
end
|
|
@@ -4,23 +4,29 @@ module FinchAPI
|
|
|
4
4
|
module Company
|
|
5
5
|
module PayStatementItem
|
|
6
6
|
type rule_update_params =
|
|
7
|
-
{ optional_property: top }
|
|
7
|
+
{ entity_ids: ::Array[String], optional_property: top }
|
|
8
8
|
& FinchAPI::Internal::Type::request_parameters
|
|
9
9
|
|
|
10
10
|
class RuleUpdateParams < FinchAPI::Internal::Type::BaseModel
|
|
11
11
|
extend FinchAPI::Internal::Type::RequestParameters::Converter
|
|
12
12
|
include FinchAPI::Internal::Type::RequestParameters
|
|
13
13
|
|
|
14
|
+
attr_reader entity_ids: ::Array[String]?
|
|
15
|
+
|
|
16
|
+
def entity_ids=: (::Array[String]) -> ::Array[String]
|
|
17
|
+
|
|
14
18
|
attr_reader optional_property: top?
|
|
15
19
|
|
|
16
20
|
def optional_property=: (top) -> top
|
|
17
21
|
|
|
18
22
|
def initialize: (
|
|
23
|
+
?entity_ids: ::Array[String],
|
|
19
24
|
?optional_property: top,
|
|
20
25
|
?request_options: FinchAPI::request_opts
|
|
21
26
|
) -> void
|
|
22
27
|
|
|
23
28
|
def to_hash: -> {
|
|
29
|
+
entity_ids: ::Array[String],
|
|
24
30
|
optional_property: top,
|
|
25
31
|
request_options: FinchAPI::RequestOptions
|
|
26
32
|
}
|
|
@@ -6,6 +6,7 @@ module FinchAPI
|
|
|
6
6
|
{
|
|
7
7
|
categories: ::Array[FinchAPI::Models::HRIS::Company::PayStatementItemListParams::category],
|
|
8
8
|
end_date: Date,
|
|
9
|
+
entity_ids: ::Array[String],
|
|
9
10
|
name: String,
|
|
10
11
|
start_date: Date,
|
|
11
12
|
type: String
|
|
@@ -26,6 +27,10 @@ module FinchAPI
|
|
|
26
27
|
|
|
27
28
|
def end_date=: (Date) -> Date
|
|
28
29
|
|
|
30
|
+
attr_reader entity_ids: ::Array[String]?
|
|
31
|
+
|
|
32
|
+
def entity_ids=: (::Array[String]) -> ::Array[String]
|
|
33
|
+
|
|
29
34
|
attr_reader name: String?
|
|
30
35
|
|
|
31
36
|
def name=: (String) -> String
|
|
@@ -41,6 +46,7 @@ module FinchAPI
|
|
|
41
46
|
def initialize: (
|
|
42
47
|
?categories: ::Array[FinchAPI::Models::HRIS::Company::PayStatementItemListParams::category],
|
|
43
48
|
?end_date: Date,
|
|
49
|
+
?entity_ids: ::Array[String],
|
|
44
50
|
?name: String,
|
|
45
51
|
?start_date: Date,
|
|
46
52
|
?type: String,
|
|
@@ -50,6 +56,7 @@ module FinchAPI
|
|
|
50
56
|
def to_hash: -> {
|
|
51
57
|
categories: ::Array[FinchAPI::Models::HRIS::Company::PayStatementItemListParams::category],
|
|
52
58
|
end_date: Date,
|
|
59
|
+
entity_ids: ::Array[String],
|
|
53
60
|
name: String,
|
|
54
61
|
start_date: Date,
|
|
55
62
|
type: String,
|
|
@@ -2,15 +2,26 @@ module FinchAPI
|
|
|
2
2
|
module Models
|
|
3
3
|
module HRIS
|
|
4
4
|
type company_retrieve_params =
|
|
5
|
-
{
|
|
5
|
+
{ entity_ids: ::Array[String] }
|
|
6
|
+
& FinchAPI::Internal::Type::request_parameters
|
|
6
7
|
|
|
7
8
|
class CompanyRetrieveParams < FinchAPI::Internal::Type::BaseModel
|
|
8
9
|
extend FinchAPI::Internal::Type::RequestParameters::Converter
|
|
9
10
|
include FinchAPI::Internal::Type::RequestParameters
|
|
10
11
|
|
|
11
|
-
|
|
12
|
+
attr_reader entity_ids: ::Array[String]?
|
|
12
13
|
|
|
13
|
-
def
|
|
14
|
+
def entity_ids=: (::Array[String]) -> ::Array[String]
|
|
15
|
+
|
|
16
|
+
def initialize: (
|
|
17
|
+
?entity_ids: ::Array[String],
|
|
18
|
+
?request_options: FinchAPI::request_opts
|
|
19
|
+
) -> void
|
|
20
|
+
|
|
21
|
+
def to_hash: -> {
|
|
22
|
+
entity_ids: ::Array[String],
|
|
23
|
+
request_options: FinchAPI::RequestOptions
|
|
24
|
+
}
|
|
14
25
|
end
|
|
15
26
|
end
|
|
16
27
|
end
|
|
@@ -2,13 +2,17 @@ module FinchAPI
|
|
|
2
2
|
module Models
|
|
3
3
|
module HRIS
|
|
4
4
|
type directory_list_individuals_params =
|
|
5
|
-
{ limit: Integer, offset: Integer }
|
|
5
|
+
{ entity_ids: ::Array[String], limit: Integer, offset: Integer }
|
|
6
6
|
& FinchAPI::Internal::Type::request_parameters
|
|
7
7
|
|
|
8
8
|
class DirectoryListIndividualsParams < FinchAPI::Internal::Type::BaseModel
|
|
9
9
|
extend FinchAPI::Internal::Type::RequestParameters::Converter
|
|
10
10
|
include FinchAPI::Internal::Type::RequestParameters
|
|
11
11
|
|
|
12
|
+
attr_reader entity_ids: ::Array[String]?
|
|
13
|
+
|
|
14
|
+
def entity_ids=: (::Array[String]) -> ::Array[String]
|
|
15
|
+
|
|
12
16
|
attr_reader limit: Integer?
|
|
13
17
|
|
|
14
18
|
def limit=: (Integer) -> Integer
|
|
@@ -18,12 +22,14 @@ module FinchAPI
|
|
|
18
22
|
def offset=: (Integer) -> Integer
|
|
19
23
|
|
|
20
24
|
def initialize: (
|
|
25
|
+
?entity_ids: ::Array[String],
|
|
21
26
|
?limit: Integer,
|
|
22
27
|
?offset: Integer,
|
|
23
28
|
?request_options: FinchAPI::request_opts
|
|
24
29
|
) -> void
|
|
25
30
|
|
|
26
31
|
def to_hash: -> {
|
|
32
|
+
entity_ids: ::Array[String],
|
|
27
33
|
limit: Integer,
|
|
28
34
|
offset: Integer,
|
|
29
35
|
request_options: FinchAPI::RequestOptions
|