Advertisement
Guest User

Untitled

a guest
Oct 15th, 2019
123
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.67 KB | None | 0 0
  1. const benefitDataWithMatching = {
  2. firstName: 'Jacob',
  3. lastName: 'Tompkins',
  4. empStatusCode: 1,
  5. payAmount: '1800',
  6. payAmountPerCode: 2,
  7. categoryCode: 2,
  8. benefitType: 'Roth403B',
  9. provider: 'test',
  10. effectiveDate: '2019-09-27',
  11. details: {
  12. catchUp: 'yes',
  13. isExistingPlan: 'existing',
  14. isEmployerMatch: 'yes',
  15. contributionRates: [{ id:1,firstPercent:10,secondPercent:50 }, { id:2,firstPercent:10,secondPercent:50 }]
  16. },
  17. addedOn: 2019-09-27T08:54:48.216Z,
  18. employeeDeduction: '200',
  19. employerDeduction: null,
  20. companyPayFrequency: 'Monthly'
  21. }
  22.  
  23. const benefitDataWithFlatDollarAmount = {
  24. firstName: 'Jacob',
  25. lastName: 'Tompkins',
  26. empStatusCode: 1,
  27. payAmount: '1800',
  28. payAmountPerCode: 2,
  29. categoryCode: 1,
  30. benefitType: 'HSA',
  31. provider: 'kdkdk',
  32. effectiveDate: '2019-11-12',
  33. details: {
  34. maxContribution: '3000',
  35. catchUp: 'yes',
  36. contributionType: 'percentage',
  37. contributionPerPayPeriod: '6'
  38. },
  39. addedOn: 2019-09-27T03:05:33.834Z,
  40. employeeDeduction: '300',
  41. employerDeduction: null,
  42. companyPayFrequency: 'Monthly'
  43. }
  44.  
  45. const benefitDataWithPercentageAmount = {
  46. firstName: 'Jacob',
  47. lastName: 'Tompkins',
  48. empStatusCode: 1,
  49. payAmount: '1800',
  50. payAmountPerCode: 2,
  51. categoryCode: 1,
  52. benefitType: 'HSA',
  53. provider: 'kdkdk',
  54. effectiveDate: '2019-11-12',
  55. details: {
  56. maxContribution: '1000',
  57. catchUp: 'no',
  58. contributionType: 'dollar',
  59. contributionPerPayPeriod: '600'
  60. },
  61. addedOn: 2019-09-27T03:06:32.506Z,
  62. employeeDeduction: '90',
  63. employerDeduction: null,
  64. companyPayFrequency: 'Monthly'
  65. }
  66.  
  67. export default {
  68. benefitDataWithPercentageAmount,
  69. benefitDataWithMatching,
  70. benefitDataWithFlatDollarAmount
  71. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement