merge_hris_client 1.0.2 → 2.0.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +59 -19
- data/docs/AccountDetails.md +30 -0
- data/docs/AccountDetailsAndActions.md +32 -0
- data/docs/AccountDetailsAndActionsIntegration.md +32 -0
- data/docs/AccountDetailsAndActionsStatusEnum.md +15 -0
- data/docs/AccountDetailsApi.md +76 -0
- data/docs/AccountIntegration.md +4 -4
- data/docs/AccountTokenApi.md +2 -2
- data/docs/AccountTypeEnum.md +15 -0
- data/docs/AvailableActionsApi.md +2 -2
- data/docs/BankInfo.md +34 -0
- data/docs/BankInfoApi.md +189 -0
- data/docs/Benefit.md +2 -2
- data/docs/BenefitsApi.md +6 -82
- data/docs/CategoriesEnum.md +15 -0
- data/docs/{StateEnum.md → CategoryEnum.md} +2 -2
- data/docs/CompaniesApi.md +6 -4
- data/docs/DataPassthroughRequest.md +7 -3
- data/docs/DebugModeLog.md +22 -0
- data/docs/DebugModelLogSummary.md +22 -0
- data/docs/Deduction.md +2 -2
- data/docs/DeductionsApi.md +179 -0
- data/docs/DeleteAccountApi.md +3 -2
- data/docs/Earning.md +3 -3
- data/docs/EarningTypeEnum.md +15 -0
- data/docs/Employee.md +20 -14
- data/docs/EmployeeEndpointRequest.md +18 -0
- data/docs/EmployeePayrollRun.md +5 -5
- data/docs/EmployeePayrollRunsApi.md +17 -7
- data/docs/EmployeeRequest.md +21 -13
- data/docs/EmployeeResponse.md +24 -0
- data/docs/EmployeesApi.md +101 -17
- data/docs/Employment.md +3 -1
- data/docs/EmploymentsApi.md +12 -82
- data/docs/EncodingEnum.md +15 -0
- data/docs/EndUserDetailsRequest.md +4 -2
- data/docs/ErrorValidationProblem.md +24 -0
- data/docs/ForceResyncApi.md +79 -0
- data/docs/GenerateKeyApi.md +2 -2
- data/docs/Group.md +28 -0
- data/docs/GroupTypeEnum.md +15 -0
- data/docs/GroupsApi.md +177 -0
- data/docs/IgnoreCommonModel.md +20 -0
- data/docs/IgnoreCommonModelRequest.md +20 -0
- data/docs/IssuesApi.md +16 -14
- data/docs/LinkTokenApi.md +3 -3
- data/docs/LinkedAccountsApi.md +103 -0
- data/docs/Location.md +4 -0
- data/docs/LocationTypeEnum.md +15 -0
- data/docs/LocationsApi.md +6 -4
- data/docs/MultipartFormFieldRequest.md +26 -0
- data/docs/PaginatedAccountDetailsAndActionsList.md +22 -0
- data/docs/PaginatedBankInfoList.md +22 -0
- data/docs/PaginatedDeductionList.md +22 -0
- data/docs/PaginatedGroupList.md +22 -0
- data/docs/PaginatedIssueList.md +2 -2
- data/docs/PaginatedPayGroupList.md +22 -0
- data/docs/PaginatedSyncStatusList.md +2 -2
- data/docs/PassthroughApi.md +2 -2
- data/docs/PayGroup.md +24 -0
- data/docs/PayGroupsApi.md +177 -0
- data/docs/PayrollRun.md +3 -3
- data/docs/PayrollRunsApi.md +17 -5
- data/docs/PolicyTypeEnum.md +15 -0
- data/docs/{NullEnum.md → ReasonEnum.md} +2 -2
- data/docs/RegenerateKeyApi.md +2 -2
- data/docs/RequestFormatEnum.md +15 -0
- data/docs/SyncStatusApi.md +3 -75
- data/docs/Tax.md +2 -2
- data/docs/Team.md +1 -1
- data/docs/TeamsApi.md +12 -6
- data/docs/TimeOff.md +5 -5
- data/docs/TimeOffApi.md +92 -6
- data/docs/TimeOffBalance.md +5 -3
- data/docs/{TimeOffBalanceApi.md → TimeOffBalancesApi.md} +26 -22
- data/docs/TimeOffEndpointRequest.md +18 -0
- data/docs/TimeOffRequest.md +36 -0
- data/docs/TimeOffResponse.md +24 -0
- data/docs/ValidationProblemSource.md +18 -0
- data/docs/WarningValidationProblem.md +24 -0
- data/lib/merge_hris_client/api/account_details_api.rb +77 -0
- data/lib/merge_hris_client/api/bank_info_api.rb +217 -0
- data/lib/merge_hris_client/api/benefits_api.rb +3 -69
- data/lib/merge_hris_client/api/companies_api.rb +3 -0
- data/lib/merge_hris_client/api/deductions_api.rb +185 -0
- data/lib/merge_hris_client/api/employee_payroll_runs_api.rb +17 -2
- data/lib/merge_hris_client/api/employees_api.rb +103 -15
- data/lib/merge_hris_client/api/employments_api.rb +24 -69
- data/lib/merge_hris_client/api/force_resync_api.rb +84 -0
- data/lib/merge_hris_client/api/groups_api.rb +182 -0
- data/lib/merge_hris_client/api/issues_api.rb +10 -10
- data/lib/merge_hris_client/api/linked_accounts_api.rb +117 -0
- data/lib/merge_hris_client/api/locations_api.rb +3 -0
- data/lib/merge_hris_client/api/pay_groups_api.rb +182 -0
- data/lib/merge_hris_client/api/payroll_runs_api.rb +22 -0
- data/lib/merge_hris_client/api/sync_status_api.rb +4 -66
- data/lib/merge_hris_client/api/teams_api.rb +17 -0
- data/lib/merge_hris_client/api/time_off_api.rb +95 -2
- data/lib/merge_hris_client/api/time_off_balances_api.rb +206 -0
- data/lib/merge_hris_client/configuration.rb +6 -4
- data/lib/merge_hris_client/models/account_details.rb +273 -0
- data/lib/merge_hris_client/models/account_details_and_actions.rb +302 -0
- data/lib/merge_hris_client/models/account_details_and_actions_integration.rb +310 -0
- data/lib/merge_hris_client/models/account_details_and_actions_status_enum.rb +37 -0
- data/lib/merge_hris_client/models/account_integration.rb +6 -28
- data/lib/merge_hris_client/models/account_token.rb +1 -1
- data/lib/merge_hris_client/models/account_type_enum.rb +36 -0
- data/lib/merge_hris_client/models/available_actions.rb +1 -1
- data/lib/merge_hris_client/models/bank_info.rb +322 -0
- data/lib/merge_hris_client/models/benefit.rb +2 -3
- data/lib/merge_hris_client/models/categories_enum.rb +37 -0
- data/lib/merge_hris_client/models/category_enum.rb +37 -0
- data/lib/merge_hris_client/models/company.rb +1 -1
- data/lib/merge_hris_client/models/country_enum.rb +1 -0
- data/lib/merge_hris_client/models/data_passthrough_request.rb +79 -9
- data/lib/merge_hris_client/models/debug_mode_log.rb +251 -0
- data/lib/merge_hris_client/models/debug_model_log_summary.rb +251 -0
- data/lib/merge_hris_client/models/deduction.rb +1 -2
- data/lib/merge_hris_client/models/earning.rb +4 -8
- data/lib/merge_hris_client/models/earning_type_enum.rb +38 -0
- data/lib/merge_hris_client/models/employee.rb +43 -14
- data/lib/merge_hris_client/models/employee_endpoint_request.rb +223 -0
- data/lib/merge_hris_client/models/employee_payroll_run.rb +1 -3
- data/lib/merge_hris_client/models/employee_request.rb +55 -14
- data/lib/merge_hris_client/models/employee_response.rb +266 -0
- data/lib/merge_hris_client/models/employment.rb +12 -2
- data/lib/merge_hris_client/models/employment_status_enum.rb +1 -1
- data/lib/merge_hris_client/models/employment_type_enum.rb +1 -1
- data/lib/merge_hris_client/models/encoding_enum.rb +36 -0
- data/lib/merge_hris_client/models/end_user_details_request.rb +113 -28
- data/lib/merge_hris_client/models/error_validation_problem.rb +260 -0
- data/lib/merge_hris_client/models/ethnicity_enum.rb +1 -1
- data/lib/merge_hris_client/models/flsa_status_enum.rb +1 -1
- data/lib/merge_hris_client/models/gender_enum.rb +1 -1
- data/lib/merge_hris_client/models/generate_remote_key_request.rb +20 -1
- data/lib/merge_hris_client/models/{benefit_request.rb → group.rb} +48 -49
- data/lib/merge_hris_client/models/group_type_enum.rb +38 -0
- data/lib/merge_hris_client/models/ignore_common_model.rb +247 -0
- data/lib/merge_hris_client/models/ignore_common_model_request.rb +256 -0
- data/lib/merge_hris_client/models/issue.rb +1 -1
- data/lib/merge_hris_client/models/issue_status_enum.rb +1 -1
- data/lib/merge_hris_client/models/link_token.rb +1 -1
- data/lib/merge_hris_client/models/location.rb +24 -2
- data/lib/merge_hris_client/models/location_type_enum.rb +36 -0
- data/lib/merge_hris_client/models/marital_status_enum.rb +2 -2
- data/lib/merge_hris_client/models/method_enum.rb +1 -1
- data/lib/merge_hris_client/models/model_operation.rb +1 -1
- data/lib/merge_hris_client/models/multipart_form_field_request.rb +341 -0
- data/lib/merge_hris_client/models/paginated_account_details_and_actions_list.rb +240 -0
- data/lib/merge_hris_client/models/paginated_bank_info_list.rb +240 -0
- data/lib/merge_hris_client/models/paginated_benefit_list.rb +1 -1
- data/lib/merge_hris_client/models/paginated_company_list.rb +1 -1
- data/lib/merge_hris_client/models/paginated_deduction_list.rb +240 -0
- data/lib/merge_hris_client/models/paginated_employee_list.rb +1 -1
- data/lib/merge_hris_client/models/paginated_employee_payroll_run_list.rb +1 -1
- data/lib/merge_hris_client/models/paginated_employment_list.rb +1 -1
- data/lib/merge_hris_client/models/paginated_group_list.rb +240 -0
- data/lib/merge_hris_client/models/paginated_issue_list.rb +1 -1
- data/lib/merge_hris_client/models/paginated_location_list.rb +1 -1
- data/lib/merge_hris_client/models/paginated_pay_group_list.rb +240 -0
- data/lib/merge_hris_client/models/paginated_payroll_run_list.rb +1 -1
- data/lib/merge_hris_client/models/paginated_sync_status_list.rb +1 -1
- data/lib/merge_hris_client/models/paginated_team_list.rb +1 -1
- data/lib/merge_hris_client/models/paginated_time_off_balance_list.rb +1 -1
- data/lib/merge_hris_client/models/paginated_time_off_list.rb +1 -1
- data/lib/merge_hris_client/models/pay_currency_enum.rb +1 -1
- data/lib/merge_hris_client/models/pay_frequency_enum.rb +1 -2
- data/lib/merge_hris_client/models/pay_group.rb +253 -0
- data/lib/merge_hris_client/models/pay_period_enum.rb +1 -1
- data/lib/merge_hris_client/models/payroll_run.rb +1 -1
- data/lib/merge_hris_client/models/policy_type_enum.rb +40 -0
- data/lib/merge_hris_client/models/reason_enum.rb +37 -0
- data/lib/merge_hris_client/models/remote_data.rb +1 -1
- data/lib/merge_hris_client/models/remote_data_request.rb +20 -1
- data/lib/merge_hris_client/models/remote_key.rb +1 -1
- data/lib/merge_hris_client/models/remote_key_for_regeneration_request.rb +20 -1
- data/lib/merge_hris_client/models/remote_response.rb +1 -1
- data/lib/merge_hris_client/models/request_format_enum.rb +37 -0
- data/lib/merge_hris_client/models/request_type_enum.rb +3 -1
- data/lib/merge_hris_client/models/run_state_enum.rb +1 -1
- data/lib/merge_hris_client/models/run_type_enum.rb +1 -11
- data/lib/merge_hris_client/models/sync_status.rb +1 -1
- data/lib/merge_hris_client/models/sync_status_status_enum.rb +3 -2
- data/lib/merge_hris_client/models/tax.rb +3 -7
- data/lib/merge_hris_client/models/team.rb +1 -2
- data/lib/merge_hris_client/models/time_off.rb +1 -3
- data/lib/merge_hris_client/models/time_off_balance.rb +15 -5
- data/lib/merge_hris_client/models/time_off_endpoint_request.rb +223 -0
- data/lib/merge_hris_client/models/{employment_request.rb → time_off_request.rb} +79 -70
- data/lib/merge_hris_client/models/time_off_response.rb +266 -0
- data/lib/merge_hris_client/models/time_off_status_enum.rb +1 -1
- data/lib/merge_hris_client/models/units_enum.rb +1 -1
- data/lib/merge_hris_client/models/validation_problem_source.rb +223 -0
- data/lib/merge_hris_client/models/warning_validation_problem.rb +260 -0
- data/lib/merge_hris_client/version.rb +1 -1
- data/lib/merge_hris_client.rb +43 -5
- data/pull_request_template.md +3 -1
- data/spec/api/account_details_api_spec.rb +45 -0
- data/spec/api/account_token_api_spec.rb +1 -1
- data/spec/api/available_actions_api_spec.rb +1 -1
- data/spec/api/bank_info_api_spec.rb +74 -0
- data/spec/api/benefits_api_spec.rb +4 -1
- data/spec/api/companies_api_spec.rb +4 -1
- data/spec/api/deductions_api_spec.rb +69 -0
- data/spec/api/employee_payroll_runs_api_spec.rb +9 -2
- data/spec/api/employees_api_spec.rb +35 -1
- data/spec/api/employments_api_spec.rb +7 -1
- data/spec/api/force_resync_api_spec.rb +46 -0
- data/spec/api/groups_api_spec.rb +68 -0
- data/spec/api/issues_api_spec.rb +5 -5
- data/spec/api/link_token_api_spec.rb +2 -2
- data/spec/api/linked_accounts_api_spec.rb +57 -0
- data/spec/api/locations_api_spec.rb +4 -1
- data/spec/api/passthrough_api_spec.rb +2 -3
- data/spec/api/pay_groups_api_spec.rb +68 -0
- data/spec/api/payroll_runs_api_spec.rb +9 -1
- data/spec/api/regenerate_key_api_spec.rb +2 -2
- data/spec/api/sync_status_api_spec.rb +2 -13
- data/spec/api/teams_api_spec.rb +7 -1
- data/spec/api/time_off_api_spec.rb +21 -2
- data/spec/api/{time_off_balance_api_spec.rb → time_off_balances_api_spec.rb} +13 -11
- data/spec/models/account_details_and_actions_integration_spec.rb +76 -0
- data/spec/models/account_details_and_actions_spec.rb +76 -0
- data/spec/models/account_details_and_actions_status_enum_spec.rb +28 -0
- data/spec/models/account_details_spec.rb +70 -0
- data/spec/models/account_integration_spec.rb +7 -1
- data/spec/models/account_token_spec.rb +7 -1
- data/spec/models/account_type_enum_spec.rb +28 -0
- data/spec/models/available_actions_spec.rb +13 -1
- data/spec/models/{employment_request_spec.rb → bank_info_spec.rb} +15 -15
- data/spec/models/benefit_plan_type_enum_spec.rb +1 -1
- data/spec/models/benefit_spec.rb +7 -1
- data/spec/models/categories_enum_spec.rb +28 -0
- data/spec/models/category_enum_spec.rb +28 -0
- data/spec/models/company_spec.rb +7 -1
- data/spec/models/country_enum_spec.rb +1 -1
- data/spec/models/data_passthrough_request_spec.rb +13 -1
- data/spec/models/debug_mode_log_spec.rb +46 -0
- data/spec/models/debug_model_log_summary_spec.rb +46 -0
- data/spec/models/deduction_spec.rb +7 -1
- data/spec/models/earning_spec.rb +7 -1
- data/spec/models/earning_type_enum_spec.rb +28 -0
- data/spec/models/{remote_key_for_regeneration_spec.rb → employee_endpoint_request_spec.rb} +8 -8
- data/spec/models/employee_payroll_run_spec.rb +7 -1
- data/spec/models/employee_request_spec.rb +30 -0
- data/spec/models/{end_user_details_spec.rb → employee_response_spec.rb} +11 -15
- data/spec/models/employee_spec.rb +37 -1
- data/spec/models/employment_spec.rb +13 -1
- data/spec/models/employment_status_enum_spec.rb +1 -1
- data/spec/models/employment_type_enum_spec.rb +1 -1
- data/spec/models/encoding_enum_spec.rb +28 -0
- data/spec/models/end_user_details_request_spec.rb +13 -5
- data/spec/models/error_validation_problem_spec.rb +52 -0
- data/spec/models/ethnicity_enum_spec.rb +1 -1
- data/spec/models/flsa_status_enum_spec.rb +1 -1
- data/spec/models/gender_enum_spec.rb +1 -1
- data/spec/models/{benefit_request_spec.rb → group_spec.rb} +12 -12
- data/spec/models/group_type_enum_spec.rb +28 -0
- data/spec/models/ignore_common_model_request_spec.rb +40 -0
- data/spec/models/ignore_common_model_spec.rb +40 -0
- data/spec/models/link_token_spec.rb +1 -1
- data/spec/models/location_spec.rb +19 -1
- data/spec/models/location_type_enum_spec.rb +28 -0
- data/spec/models/marital_status_enum_spec.rb +1 -1
- data/spec/models/method_enum_spec.rb +1 -1
- data/spec/models/model_operation_spec.rb +13 -1
- data/spec/models/multipart_form_field_request_spec.rb +58 -0
- data/spec/models/paginated_account_details_and_actions_list_spec.rb +46 -0
- data/spec/models/paginated_bank_info_list_spec.rb +46 -0
- data/spec/models/paginated_benefit_list_spec.rb +1 -1
- data/spec/models/paginated_company_list_spec.rb +1 -1
- data/spec/models/paginated_deduction_list_spec.rb +46 -0
- data/spec/models/paginated_employee_list_spec.rb +1 -1
- data/spec/models/paginated_employee_payroll_run_list_spec.rb +1 -1
- data/spec/models/paginated_employment_list_spec.rb +1 -1
- data/spec/models/paginated_group_list_spec.rb +46 -0
- data/spec/models/paginated_location_list_spec.rb +1 -1
- data/spec/models/paginated_pay_group_list_spec.rb +46 -0
- data/spec/models/paginated_payroll_run_list_spec.rb +1 -1
- data/spec/models/paginated_team_list_spec.rb +1 -1
- data/spec/models/paginated_time_off_list_spec.rb +1 -1
- data/spec/models/pay_currency_enum_spec.rb +1 -1
- data/spec/models/pay_frequency_enum_spec.rb +1 -1
- data/spec/models/{data_passthrough_spec.rb → pay_group_spec.rb} +11 -11
- data/spec/models/pay_period_enum_spec.rb +1 -1
- data/spec/models/payroll_run_spec.rb +7 -1
- data/spec/models/policy_type_enum_spec.rb +28 -0
- data/spec/models/{state_enum_spec.rb → reason_enum_spec.rb} +7 -7
- data/spec/models/remote_data_spec.rb +1 -1
- data/spec/models/remote_key_for_regeneration_request_spec.rb +1 -1
- data/spec/models/remote_key_spec.rb +1 -1
- data/spec/models/remote_response_spec.rb +1 -1
- data/spec/models/request_format_enum_spec.rb +28 -0
- data/spec/models/request_type_enum_spec.rb +1 -1
- data/spec/models/run_state_enum_spec.rb +1 -1
- data/spec/models/run_type_enum_spec.rb +1 -1
- data/spec/models/tax_spec.rb +7 -1
- data/spec/models/team_spec.rb +13 -1
- data/spec/models/time_off_balance_spec.rb +6 -0
- data/spec/models/time_off_endpoint_request_spec.rb +34 -0
- data/spec/models/time_off_request_spec.rb +88 -0
- data/spec/models/time_off_response_spec.rb +52 -0
- data/spec/models/time_off_spec.rb +19 -1
- data/spec/models/time_off_status_enum_spec.rb +1 -1
- data/spec/models/type_enum_spec.rb +1 -1
- data/spec/models/units_enum_spec.rb +1 -1
- data/spec/models/validation_problem_source_spec.rb +34 -0
- data/spec/models/warning_validation_problem_spec.rb +52 -0
- data/test_ruby.rb +11 -14
- metadata +175 -29
- data/docs/BenefitRequest.md +0 -28
- data/docs/DataPassthrough.md +0 -24
- data/docs/EmploymentRequest.md +0 -34
- data/docs/EndUserDetails.md +0 -24
- data/docs/RemoteKeyForRegeneration.md +0 -18
- data/merge_hris_client-1.0.0.gem +0 -0
- data/merge_hris_client-1.0.1.gem +0 -0
@@ -22,7 +22,6 @@ module MergeHRISClient
|
|
22
22
|
# The employee's number that appears in the remote UI. Note: This is distinct from the remote_id field, which is a unique identifier for the employee set by the remote API, and is not exposed to the user.
|
23
23
|
attr_accessor :employee_number
|
24
24
|
|
25
|
-
# The ID of the employee's company.
|
26
25
|
attr_accessor :company
|
27
26
|
|
28
27
|
# The employee's first name.
|
@@ -31,9 +30,11 @@ module MergeHRISClient
|
|
31
30
|
# The employee's last name.
|
32
31
|
attr_accessor :last_name
|
33
32
|
|
34
|
-
# The employee's full name, to use for display purposes.
|
33
|
+
# The employee's full name, to use for display purposes. If a preferred first name is available, the full name will include the preferred first name.
|
35
34
|
attr_accessor :display_full_name
|
36
35
|
|
36
|
+
attr_accessor :groups
|
37
|
+
|
37
38
|
# The employee's work email.
|
38
39
|
attr_accessor :work_email
|
39
40
|
|
@@ -43,18 +44,19 @@ module MergeHRISClient
|
|
43
44
|
# The employee's mobile phone number.
|
44
45
|
attr_accessor :mobile_phone_number
|
45
46
|
|
46
|
-
#
|
47
|
+
# Array of `Employment` IDs for this Employee.
|
48
|
+
attr_accessor :employments
|
49
|
+
|
47
50
|
attr_accessor :home_location
|
48
51
|
|
49
|
-
# The employee's work address.
|
50
52
|
attr_accessor :work_location
|
51
53
|
|
52
|
-
# The employee ID of the employee's manager.
|
53
54
|
attr_accessor :manager
|
54
55
|
|
55
|
-
# The employee's team.
|
56
56
|
attr_accessor :team
|
57
57
|
|
58
|
+
attr_accessor :pay_group
|
59
|
+
|
58
60
|
# The employee's social security number.
|
59
61
|
attr_accessor :ssn
|
60
62
|
|
@@ -70,10 +72,10 @@ module MergeHRISClient
|
|
70
72
|
# The employee's date of birth.
|
71
73
|
attr_accessor :date_of_birth
|
72
74
|
|
73
|
-
# The employee
|
75
|
+
# The date that the employee was hired, usually the day that an offer letter is signed. If an employee has multiple hire dates from previous employments, this represents the most recent hire date. Note: If you're looking for the employee's start date, refer to the start_date field.
|
74
76
|
attr_accessor :hire_date
|
75
77
|
|
76
|
-
# The employee
|
78
|
+
# The date that the employee started working. If an employee has multiple start dates from previous employments, this represents the most recent start date.
|
77
79
|
attr_accessor :start_date
|
78
80
|
|
79
81
|
# The employment status of the employee.
|
@@ -85,6 +87,9 @@ module MergeHRISClient
|
|
85
87
|
# The URL of the employee's avatar image.
|
86
88
|
attr_accessor :avatar
|
87
89
|
|
90
|
+
# Custom fields configured for a given model.
|
91
|
+
attr_accessor :custom_fields
|
92
|
+
|
88
93
|
# Attribute mapping from ruby-style variable name to JSON key.
|
89
94
|
def self.attribute_map
|
90
95
|
{
|
@@ -94,13 +99,16 @@ module MergeHRISClient
|
|
94
99
|
:'first_name' => :'first_name',
|
95
100
|
:'last_name' => :'last_name',
|
96
101
|
:'display_full_name' => :'display_full_name',
|
102
|
+
:'groups' => :'groups',
|
97
103
|
:'work_email' => :'work_email',
|
98
104
|
:'personal_email' => :'personal_email',
|
99
105
|
:'mobile_phone_number' => :'mobile_phone_number',
|
106
|
+
:'employments' => :'employments',
|
100
107
|
:'home_location' => :'home_location',
|
101
108
|
:'work_location' => :'work_location',
|
102
109
|
:'manager' => :'manager',
|
103
110
|
:'team' => :'team',
|
111
|
+
:'pay_group' => :'pay_group',
|
104
112
|
:'ssn' => :'ssn',
|
105
113
|
:'gender' => :'gender',
|
106
114
|
:'ethnicity' => :'ethnicity',
|
@@ -110,7 +118,8 @@ module MergeHRISClient
|
|
110
118
|
:'start_date' => :'start_date',
|
111
119
|
:'employment_status' => :'employment_status',
|
112
120
|
:'termination_date' => :'termination_date',
|
113
|
-
:'avatar' => :'avatar'
|
121
|
+
:'avatar' => :'avatar',
|
122
|
+
:'custom_fields' => :'custom_fields'
|
114
123
|
}
|
115
124
|
end
|
116
125
|
|
@@ -128,13 +137,16 @@ module MergeHRISClient
|
|
128
137
|
:'first_name' => :'String',
|
129
138
|
:'last_name' => :'String',
|
130
139
|
:'display_full_name' => :'String',
|
140
|
+
:'groups' => :'Array<String>',
|
131
141
|
:'work_email' => :'String',
|
132
142
|
:'personal_email' => :'String',
|
133
143
|
:'mobile_phone_number' => :'String',
|
144
|
+
:'employments' => :'Array<String>',
|
134
145
|
:'home_location' => :'String',
|
135
146
|
:'work_location' => :'String',
|
136
147
|
:'manager' => :'String',
|
137
148
|
:'team' => :'String',
|
149
|
+
:'pay_group' => :'String',
|
138
150
|
:'ssn' => :'String',
|
139
151
|
:'gender' => :'GenderEnum',
|
140
152
|
:'ethnicity' => :'EthnicityEnum',
|
@@ -144,7 +156,8 @@ module MergeHRISClient
|
|
144
156
|
:'start_date' => :'Time',
|
145
157
|
:'employment_status' => :'EmploymentStatusEnum',
|
146
158
|
:'termination_date' => :'Time',
|
147
|
-
:'avatar' => :'String'
|
159
|
+
:'avatar' => :'String',
|
160
|
+
:'custom_fields' => :'Hash<String, AnyType>'
|
148
161
|
}
|
149
162
|
end
|
150
163
|
|
@@ -164,6 +177,7 @@ module MergeHRISClient
|
|
164
177
|
:'work_location',
|
165
178
|
:'manager',
|
166
179
|
:'team',
|
180
|
+
:'pay_group',
|
167
181
|
:'ssn',
|
168
182
|
:'gender',
|
169
183
|
:'ethnicity',
|
@@ -173,7 +187,8 @@ module MergeHRISClient
|
|
173
187
|
:'start_date',
|
174
188
|
:'employment_status',
|
175
189
|
:'termination_date',
|
176
|
-
:'avatar'
|
190
|
+
:'avatar',
|
191
|
+
:'custom_fields'
|
177
192
|
])
|
178
193
|
end
|
179
194
|
|
@@ -216,6 +231,12 @@ module MergeHRISClient
|
|
216
231
|
self.display_full_name = attributes[:'display_full_name']
|
217
232
|
end
|
218
233
|
|
234
|
+
if attributes.key?(:'groups')
|
235
|
+
if (value = attributes[:'groups']).is_a?(Array)
|
236
|
+
self.groups = value
|
237
|
+
end
|
238
|
+
end
|
239
|
+
|
219
240
|
if attributes.key?(:'work_email')
|
220
241
|
self.work_email = attributes[:'work_email']
|
221
242
|
end
|
@@ -228,6 +249,12 @@ module MergeHRISClient
|
|
228
249
|
self.mobile_phone_number = attributes[:'mobile_phone_number']
|
229
250
|
end
|
230
251
|
|
252
|
+
if attributes.key?(:'employments')
|
253
|
+
if (value = attributes[:'employments']).is_a?(Array)
|
254
|
+
self.employments = value
|
255
|
+
end
|
256
|
+
end
|
257
|
+
|
231
258
|
if attributes.key?(:'home_location')
|
232
259
|
self.home_location = attributes[:'home_location']
|
233
260
|
end
|
@@ -244,6 +271,10 @@ module MergeHRISClient
|
|
244
271
|
self.team = attributes[:'team']
|
245
272
|
end
|
246
273
|
|
274
|
+
if attributes.key?(:'pay_group')
|
275
|
+
self.pay_group = attributes[:'pay_group']
|
276
|
+
end
|
277
|
+
|
247
278
|
if attributes.key?(:'ssn')
|
248
279
|
self.ssn = attributes[:'ssn']
|
249
280
|
end
|
@@ -283,6 +314,12 @@ module MergeHRISClient
|
|
283
314
|
if attributes.key?(:'avatar')
|
284
315
|
self.avatar = attributes[:'avatar']
|
285
316
|
end
|
317
|
+
|
318
|
+
if attributes.key?(:'custom_fields')
|
319
|
+
if (value = attributes[:'custom_fields']).is_a?(Hash)
|
320
|
+
self.custom_fields = value
|
321
|
+
end
|
322
|
+
end
|
286
323
|
end
|
287
324
|
|
288
325
|
# Show invalid properties with the reasons. Usually used together with valid?
|
@@ -369,13 +406,16 @@ module MergeHRISClient
|
|
369
406
|
first_name == o.first_name &&
|
370
407
|
last_name == o.last_name &&
|
371
408
|
display_full_name == o.display_full_name &&
|
409
|
+
groups == o.groups &&
|
372
410
|
work_email == o.work_email &&
|
373
411
|
personal_email == o.personal_email &&
|
374
412
|
mobile_phone_number == o.mobile_phone_number &&
|
413
|
+
employments == o.employments &&
|
375
414
|
home_location == o.home_location &&
|
376
415
|
work_location == o.work_location &&
|
377
416
|
manager == o.manager &&
|
378
417
|
team == o.team &&
|
418
|
+
pay_group == o.pay_group &&
|
379
419
|
ssn == o.ssn &&
|
380
420
|
gender == o.gender &&
|
381
421
|
ethnicity == o.ethnicity &&
|
@@ -385,7 +425,8 @@ module MergeHRISClient
|
|
385
425
|
start_date == o.start_date &&
|
386
426
|
employment_status == o.employment_status &&
|
387
427
|
termination_date == o.termination_date &&
|
388
|
-
avatar == o.avatar
|
428
|
+
avatar == o.avatar &&
|
429
|
+
custom_fields == o.custom_fields
|
389
430
|
end
|
390
431
|
|
391
432
|
# @see the `==` method
|
@@ -397,7 +438,7 @@ module MergeHRISClient
|
|
397
438
|
# Calculates hash code according to all attributes.
|
398
439
|
# @return [Integer] Hash code
|
399
440
|
def hash
|
400
|
-
[remote_id, employee_number, company, first_name, last_name, display_full_name, work_email, personal_email, mobile_phone_number, home_location, work_location, manager, team, ssn, gender, ethnicity, marital_status, date_of_birth, hire_date, start_date, employment_status, termination_date, avatar].hash
|
441
|
+
[remote_id, employee_number, company, first_name, last_name, display_full_name, groups, work_email, personal_email, mobile_phone_number, employments, home_location, work_location, manager, team, pay_group, ssn, gender, ethnicity, marital_status, date_of_birth, hire_date, start_date, employment_status, termination_date, avatar, custom_fields].hash
|
401
442
|
end
|
402
443
|
|
403
444
|
# Builds the object from hash
|
@@ -440,7 +481,7 @@ module MergeHRISClient
|
|
440
481
|
when :Date
|
441
482
|
Date.parse(value)
|
442
483
|
when :String
|
443
|
-
value
|
484
|
+
value
|
444
485
|
when :Integer
|
445
486
|
value.to_i
|
446
487
|
when :Float
|
@@ -0,0 +1,266 @@
|
|
1
|
+
=begin
|
2
|
+
#Merge HRIS API
|
3
|
+
|
4
|
+
#The unified API for building rich integrations with multiple HR Information 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 'date'
|
14
|
+
require 'time'
|
15
|
+
|
16
|
+
module MergeHRISClient
|
17
|
+
class EmployeeResponse
|
18
|
+
attr_accessor :model
|
19
|
+
|
20
|
+
attr_accessor :warnings
|
21
|
+
|
22
|
+
attr_accessor :errors
|
23
|
+
|
24
|
+
attr_accessor :logs
|
25
|
+
|
26
|
+
# Attribute mapping from ruby-style variable name to JSON key.
|
27
|
+
def self.attribute_map
|
28
|
+
{
|
29
|
+
:'model' => :'model',
|
30
|
+
:'warnings' => :'warnings',
|
31
|
+
:'errors' => :'errors',
|
32
|
+
:'logs' => :'logs'
|
33
|
+
}
|
34
|
+
end
|
35
|
+
|
36
|
+
# Returns all the JSON keys this model knows about
|
37
|
+
def self.acceptable_attributes
|
38
|
+
attribute_map.values
|
39
|
+
end
|
40
|
+
|
41
|
+
# Attribute type mapping.
|
42
|
+
def self.openapi_types
|
43
|
+
{
|
44
|
+
:'model' => :'Employee',
|
45
|
+
:'warnings' => :'Array<WarningValidationProblem>',
|
46
|
+
:'errors' => :'Array<ErrorValidationProblem>',
|
47
|
+
:'logs' => :'Array<DebugModeLog>'
|
48
|
+
}
|
49
|
+
end
|
50
|
+
|
51
|
+
# List of attributes with nullable: true
|
52
|
+
def self.openapi_nullable
|
53
|
+
Set.new([
|
54
|
+
])
|
55
|
+
end
|
56
|
+
|
57
|
+
# Initializes the object
|
58
|
+
# @param [Hash] attributes Model attributes in the form of hash
|
59
|
+
def initialize(attributes = {})
|
60
|
+
if (!attributes.is_a?(Hash))
|
61
|
+
fail ArgumentError, "The input argument (attributes) must be a hash in `MergeHRISClient::EmployeeResponse` initialize method"
|
62
|
+
end
|
63
|
+
|
64
|
+
# check to see if the attribute exists and convert string to symbol for hash key
|
65
|
+
attributes = attributes.each_with_object({}) { |(k, v), h|
|
66
|
+
if (!self.class.attribute_map.key?(k.to_sym))
|
67
|
+
fail ArgumentError, "`#{k}` is not a valid attribute in `MergeHRISClient::EmployeeResponse`. Please check the name to make sure it's valid. List of attributes: " + self.class.attribute_map.keys.inspect
|
68
|
+
end
|
69
|
+
h[k.to_sym] = v
|
70
|
+
}
|
71
|
+
|
72
|
+
if attributes.key?(:'model')
|
73
|
+
self.model = attributes[:'model']
|
74
|
+
end
|
75
|
+
|
76
|
+
if attributes.key?(:'warnings')
|
77
|
+
if (value = attributes[:'warnings']).is_a?(Array)
|
78
|
+
self.warnings = value
|
79
|
+
end
|
80
|
+
end
|
81
|
+
|
82
|
+
if attributes.key?(:'errors')
|
83
|
+
if (value = attributes[:'errors']).is_a?(Array)
|
84
|
+
self.errors = value
|
85
|
+
end
|
86
|
+
end
|
87
|
+
|
88
|
+
if attributes.key?(:'logs')
|
89
|
+
if (value = attributes[:'logs']).is_a?(Array)
|
90
|
+
self.logs = value
|
91
|
+
end
|
92
|
+
end
|
93
|
+
end
|
94
|
+
|
95
|
+
# Show invalid properties with the reasons. Usually used together with valid?
|
96
|
+
# @return Array for valid properties with the reasons
|
97
|
+
def list_invalid_properties
|
98
|
+
invalid_properties = Array.new
|
99
|
+
if @model.nil?
|
100
|
+
invalid_properties.push('invalid value for "model", model cannot be nil.')
|
101
|
+
end
|
102
|
+
|
103
|
+
if @warnings.nil?
|
104
|
+
invalid_properties.push('invalid value for "warnings", warnings cannot be nil.')
|
105
|
+
end
|
106
|
+
|
107
|
+
if @errors.nil?
|
108
|
+
invalid_properties.push('invalid value for "errors", errors cannot be nil.')
|
109
|
+
end
|
110
|
+
|
111
|
+
invalid_properties
|
112
|
+
end
|
113
|
+
|
114
|
+
# Check to see if the all the properties in the model are valid
|
115
|
+
# @return true if the model is valid
|
116
|
+
def valid?
|
117
|
+
return false if @model.nil?
|
118
|
+
return false if @warnings.nil?
|
119
|
+
return false if @errors.nil?
|
120
|
+
true
|
121
|
+
end
|
122
|
+
|
123
|
+
# Checks equality by comparing each attribute.
|
124
|
+
# @param [Object] Object to be compared
|
125
|
+
def ==(o)
|
126
|
+
return true if self.equal?(o)
|
127
|
+
self.class == o.class &&
|
128
|
+
model == o.model &&
|
129
|
+
warnings == o.warnings &&
|
130
|
+
errors == o.errors &&
|
131
|
+
logs == o.logs
|
132
|
+
end
|
133
|
+
|
134
|
+
# @see the `==` method
|
135
|
+
# @param [Object] Object to be compared
|
136
|
+
def eql?(o)
|
137
|
+
self == o
|
138
|
+
end
|
139
|
+
|
140
|
+
# Calculates hash code according to all attributes.
|
141
|
+
# @return [Integer] Hash code
|
142
|
+
def hash
|
143
|
+
[model, warnings, errors, logs].hash
|
144
|
+
end
|
145
|
+
|
146
|
+
# Builds the object from hash
|
147
|
+
# @param [Hash] attributes Model attributes in the form of hash
|
148
|
+
# @return [Object] Returns the model itself
|
149
|
+
def self.build_from_hash(attributes)
|
150
|
+
new.build_from_hash(attributes)
|
151
|
+
end
|
152
|
+
|
153
|
+
# Builds the object from hash
|
154
|
+
# @param [Hash] attributes Model attributes in the form of hash
|
155
|
+
# @return [Object] Returns the model itself
|
156
|
+
def build_from_hash(attributes)
|
157
|
+
return nil unless attributes.is_a?(Hash)
|
158
|
+
self.class.openapi_types.each_pair do |key, type|
|
159
|
+
if attributes[self.class.attribute_map[key]].nil? && self.class.openapi_nullable.include?(key)
|
160
|
+
self.send("#{key}=", nil)
|
161
|
+
elsif type =~ /\AArray<(.*)>/i
|
162
|
+
# check to ensure the input is an array given that the attribute
|
163
|
+
# is documented as an array but the input is not
|
164
|
+
if attributes[self.class.attribute_map[key]].is_a?(Array)
|
165
|
+
self.send("#{key}=", attributes[self.class.attribute_map[key]].map { |v| _deserialize($1, v) })
|
166
|
+
end
|
167
|
+
elsif !attributes[self.class.attribute_map[key]].nil?
|
168
|
+
self.send("#{key}=", _deserialize(type, attributes[self.class.attribute_map[key]]))
|
169
|
+
end
|
170
|
+
end
|
171
|
+
|
172
|
+
self
|
173
|
+
end
|
174
|
+
|
175
|
+
# Deserializes the data based on type
|
176
|
+
# @param string type Data type
|
177
|
+
# @param string value Value to be deserialized
|
178
|
+
# @return [Object] Deserialized data
|
179
|
+
def _deserialize(type, value)
|
180
|
+
case type.to_sym
|
181
|
+
when :Time
|
182
|
+
Time.parse(value)
|
183
|
+
when :Date
|
184
|
+
Date.parse(value)
|
185
|
+
when :String
|
186
|
+
value
|
187
|
+
when :Integer
|
188
|
+
value.to_i
|
189
|
+
when :Float
|
190
|
+
value.to_f
|
191
|
+
when :Boolean
|
192
|
+
if value.to_s =~ /\A(true|t|yes|y|1)\z/i
|
193
|
+
true
|
194
|
+
else
|
195
|
+
false
|
196
|
+
end
|
197
|
+
when :Object
|
198
|
+
# generic object (usually a Hash), return directly
|
199
|
+
value
|
200
|
+
when /\AArray<(?<inner_type>.+)>\z/
|
201
|
+
inner_type = Regexp.last_match[:inner_type]
|
202
|
+
value.map { |v| _deserialize(inner_type, v) }
|
203
|
+
when /\AHash<(?<k_type>.+?), (?<v_type>.+)>\z/
|
204
|
+
k_type = Regexp.last_match[:k_type]
|
205
|
+
v_type = Regexp.last_match[:v_type]
|
206
|
+
{}.tap do |hash|
|
207
|
+
value.each do |k, v|
|
208
|
+
hash[_deserialize(k_type, k)] = _deserialize(v_type, v)
|
209
|
+
end
|
210
|
+
end
|
211
|
+
else # model
|
212
|
+
# models (e.g. Pet) or oneOf
|
213
|
+
klass = MergeHRISClient.const_get(type)
|
214
|
+
klass.respond_to?(:openapi_one_of) ? klass.build(value) : klass.build_from_hash(value)
|
215
|
+
end
|
216
|
+
end
|
217
|
+
|
218
|
+
# Returns the string representation of the object
|
219
|
+
# @return [String] String presentation of the object
|
220
|
+
def to_s
|
221
|
+
to_hash.to_s
|
222
|
+
end
|
223
|
+
|
224
|
+
# to_body is an alias to to_hash (backward compatibility)
|
225
|
+
# @return [Hash] Returns the object in the form of hash
|
226
|
+
def to_body
|
227
|
+
to_hash
|
228
|
+
end
|
229
|
+
|
230
|
+
# Returns the object in the form of hash
|
231
|
+
# @return [Hash] Returns the object in the form of hash
|
232
|
+
def to_hash
|
233
|
+
hash = {}
|
234
|
+
self.class.attribute_map.each_pair do |attr, param|
|
235
|
+
value = self.send(attr)
|
236
|
+
if value.nil?
|
237
|
+
is_nullable = self.class.openapi_nullable.include?(attr)
|
238
|
+
next if !is_nullable || (is_nullable && !instance_variable_defined?(:"@#{attr}"))
|
239
|
+
end
|
240
|
+
|
241
|
+
hash[param] = _to_hash(value)
|
242
|
+
end
|
243
|
+
hash
|
244
|
+
end
|
245
|
+
|
246
|
+
# Outputs non-array value in the form of hash
|
247
|
+
# For object, use to_hash. Otherwise, just return the value
|
248
|
+
# @param [Object] value Any valid value
|
249
|
+
# @return [Hash] Returns the value in the form of hash
|
250
|
+
def _to_hash(value)
|
251
|
+
if value.is_a?(Array)
|
252
|
+
value.compact.map { |v| _to_hash(v) }
|
253
|
+
elsif value.is_a?(Hash)
|
254
|
+
{}.tap do |hash|
|
255
|
+
value.each { |k, v| hash[k] = _to_hash(v) }
|
256
|
+
end
|
257
|
+
elsif value.respond_to? :to_hash
|
258
|
+
value.to_hash
|
259
|
+
else
|
260
|
+
value
|
261
|
+
end
|
262
|
+
end
|
263
|
+
|
264
|
+
end
|
265
|
+
|
266
|
+
end
|
@@ -21,6 +21,8 @@ module MergeHRISClient
|
|
21
21
|
# The third-party API ID of the matching object.
|
22
22
|
attr_accessor :remote_id
|
23
23
|
|
24
|
+
attr_accessor :employee
|
25
|
+
|
24
26
|
# The position's title.
|
25
27
|
attr_accessor :job_title
|
26
28
|
|
@@ -52,6 +54,7 @@ module MergeHRISClient
|
|
52
54
|
{
|
53
55
|
:'id' => :'id',
|
54
56
|
:'remote_id' => :'remote_id',
|
57
|
+
:'employee' => :'employee',
|
55
58
|
:'job_title' => :'job_title',
|
56
59
|
:'pay_rate' => :'pay_rate',
|
57
60
|
:'pay_period' => :'pay_period',
|
@@ -74,6 +77,7 @@ module MergeHRISClient
|
|
74
77
|
{
|
75
78
|
:'id' => :'String',
|
76
79
|
:'remote_id' => :'String',
|
80
|
+
:'employee' => :'String',
|
77
81
|
:'job_title' => :'String',
|
78
82
|
:'pay_rate' => :'Float',
|
79
83
|
:'pay_period' => :'PayPeriodEnum',
|
@@ -90,6 +94,7 @@ module MergeHRISClient
|
|
90
94
|
def self.openapi_nullable
|
91
95
|
Set.new([
|
92
96
|
:'remote_id',
|
97
|
+
:'employee',
|
93
98
|
:'job_title',
|
94
99
|
:'pay_rate',
|
95
100
|
:'pay_period',
|
@@ -125,6 +130,10 @@ module MergeHRISClient
|
|
125
130
|
self.remote_id = attributes[:'remote_id']
|
126
131
|
end
|
127
132
|
|
133
|
+
if attributes.key?(:'employee')
|
134
|
+
self.employee = attributes[:'employee']
|
135
|
+
end
|
136
|
+
|
128
137
|
if attributes.key?(:'job_title')
|
129
138
|
self.job_title = attributes[:'job_title']
|
130
139
|
end
|
@@ -184,6 +193,7 @@ module MergeHRISClient
|
|
184
193
|
self.class == o.class &&
|
185
194
|
id == o.id &&
|
186
195
|
remote_id == o.remote_id &&
|
196
|
+
employee == o.employee &&
|
187
197
|
job_title == o.job_title &&
|
188
198
|
pay_rate == o.pay_rate &&
|
189
199
|
pay_period == o.pay_period &&
|
@@ -204,7 +214,7 @@ module MergeHRISClient
|
|
204
214
|
# Calculates hash code according to all attributes.
|
205
215
|
# @return [Integer] Hash code
|
206
216
|
def hash
|
207
|
-
[id, remote_id, job_title, pay_rate, pay_period, pay_frequency, pay_currency, flsa_status, effective_date, employment_type, remote_data].hash
|
217
|
+
[id, remote_id, employee, job_title, pay_rate, pay_period, pay_frequency, pay_currency, flsa_status, effective_date, employment_type, remote_data].hash
|
208
218
|
end
|
209
219
|
|
210
220
|
# Builds the object from hash
|
@@ -247,7 +257,7 @@ module MergeHRISClient
|
|
247
257
|
when :Date
|
248
258
|
Date.parse(value)
|
249
259
|
when :String
|
250
|
-
value
|
260
|
+
value
|
251
261
|
when :Integer
|
252
262
|
value.to_i
|
253
263
|
when :Float
|
@@ -30,8 +30,8 @@ module MergeHRISClient
|
|
30
30
|
# @param [String] The enum value in the form of the string
|
31
31
|
# @return [String] The enum value
|
32
32
|
def build_from_hash(value)
|
33
|
-
constantValues = EmploymentStatusEnum.constants.select { |c| EmploymentStatusEnum::const_get(c) == value }
|
34
33
|
value
|
35
34
|
end
|
36
35
|
end
|
36
|
+
|
37
37
|
end
|
@@ -32,8 +32,8 @@ module MergeHRISClient
|
|
32
32
|
# @param [String] The enum value in the form of the string
|
33
33
|
# @return [String] The enum value
|
34
34
|
def build_from_hash(value)
|
35
|
-
constantValues = EmploymentTypeEnum.constants.select { |c| EmploymentTypeEnum::const_get(c) == value }
|
36
35
|
value
|
37
36
|
end
|
38
37
|
end
|
38
|
+
|
39
39
|
end
|
@@ -0,0 +1,36 @@
|
|
1
|
+
=begin
|
2
|
+
#Merge HRIS API
|
3
|
+
|
4
|
+
#The unified API for building rich integrations with multiple HR Information 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 'date'
|
14
|
+
require 'time'
|
15
|
+
|
16
|
+
module MergeHRISClient
|
17
|
+
class EncodingEnum
|
18
|
+
RAW = "RAW".freeze
|
19
|
+
BASE64 = "BASE64".freeze
|
20
|
+
|
21
|
+
# Builds the enum from string
|
22
|
+
# @param [String] The enum value in the form of the string
|
23
|
+
# @return [String] The enum value
|
24
|
+
def self.build_from_hash(value)
|
25
|
+
new.build_from_hash(value)
|
26
|
+
end
|
27
|
+
|
28
|
+
# Builds the enum from string
|
29
|
+
# @param [String] The enum value in the form of the string
|
30
|
+
# @return [String] The enum value
|
31
|
+
def build_from_hash(value)
|
32
|
+
value
|
33
|
+
end
|
34
|
+
end
|
35
|
+
|
36
|
+
end
|