@mergeapi/merge-node-client 2.0.0 → 2.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (367) hide show
  1. package/.mock/definition/accounting/__package__.yml +3089 -0
  2. package/.mock/definition/accounting/employees.yml +24 -0
  3. package/.mock/definition/accounting/expenseReports.yml +938 -0
  4. package/.mock/definition/accounting/fieldMapping.yml +20 -0
  5. package/.mock/definition/accounting/items.yml +4 -0
  6. package/.mock/definition/accounting/payments.yml +8 -8
  7. package/.mock/definition/accounting/projects.yml +24 -0
  8. package/Client.d.ts +6 -6
  9. package/Client.js +17 -17
  10. package/api/resources/accounting/client/Client.d.ts +3 -0
  11. package/api/resources/accounting/client/Client.js +57 -52
  12. package/api/resources/accounting/resources/employees/client/Client.js +19 -1
  13. package/api/resources/accounting/resources/employees/client/requests/EmployeesListRequest.d.ts +24 -0
  14. package/api/resources/accounting/resources/expenseReports/client/Client.d.ts +118 -0
  15. package/api/resources/accounting/resources/expenseReports/client/Client.js +667 -0
  16. package/api/resources/accounting/resources/expenseReports/client/index.d.ts +1 -0
  17. package/api/resources/accounting/resources/expenseReports/client/index.js +17 -0
  18. package/api/resources/accounting/resources/expenseReports/client/requests/ExpenseReportEndpointRequest.d.ts +23 -0
  19. package/api/resources/accounting/resources/expenseReports/client/requests/ExpenseReportEndpointRequest.js +5 -0
  20. package/api/resources/accounting/resources/expenseReports/client/requests/ExpenseReportsLinesListRequest.d.ts +38 -0
  21. package/api/resources/accounting/resources/expenseReports/client/requests/ExpenseReportsLinesListRequest.js +5 -0
  22. package/api/resources/accounting/resources/expenseReports/client/requests/ExpenseReportsLinesRemoteFieldClassesListRequest.d.ts +37 -0
  23. package/api/resources/accounting/resources/expenseReports/client/requests/ExpenseReportsLinesRemoteFieldClassesListRequest.js +5 -0
  24. package/api/resources/accounting/resources/expenseReports/client/requests/ExpenseReportsListRequest.d.ts +62 -0
  25. package/api/resources/accounting/resources/expenseReports/client/requests/ExpenseReportsListRequest.js +5 -0
  26. package/api/resources/accounting/resources/expenseReports/client/requests/ExpenseReportsRemoteFieldClassesListRequest.d.ts +37 -0
  27. package/api/resources/accounting/resources/expenseReports/client/requests/ExpenseReportsRemoteFieldClassesListRequest.js +5 -0
  28. package/api/resources/accounting/resources/expenseReports/client/requests/ExpenseReportsRetrieveRequest.d.ts +26 -0
  29. package/api/resources/accounting/resources/expenseReports/client/requests/ExpenseReportsRetrieveRequest.js +5 -0
  30. package/api/resources/accounting/resources/expenseReports/client/requests/index.d.ts +6 -0
  31. package/api/resources/accounting/resources/expenseReports/client/requests/index.js +2 -0
  32. package/api/resources/accounting/resources/expenseReports/index.d.ts +2 -0
  33. package/api/resources/accounting/resources/expenseReports/index.js +18 -0
  34. package/api/resources/accounting/resources/expenseReports/types/ExpenseReportsLinesListRequestExpand.d.ts +69 -0
  35. package/api/resources/accounting/resources/expenseReports/types/ExpenseReportsLinesListRequestExpand.js +71 -0
  36. package/api/resources/accounting/resources/expenseReports/types/ExpenseReportsListRequestExpand.d.ts +21 -0
  37. package/api/resources/accounting/resources/expenseReports/types/ExpenseReportsListRequestExpand.js +23 -0
  38. package/api/resources/accounting/resources/expenseReports/types/ExpenseReportsRetrieveRequestExpand.d.ts +21 -0
  39. package/api/resources/accounting/resources/expenseReports/types/ExpenseReportsRetrieveRequestExpand.js +23 -0
  40. package/api/resources/accounting/resources/expenseReports/types/index.d.ts +3 -0
  41. package/api/resources/accounting/resources/expenseReports/types/index.js +19 -0
  42. package/api/resources/accounting/resources/index.d.ts +3 -0
  43. package/api/resources/accounting/resources/index.js +4 -1
  44. package/api/resources/accounting/resources/projects/client/Client.js +19 -1
  45. package/api/resources/accounting/resources/projects/client/requests/ProjectsListRequest.d.ts +24 -0
  46. package/api/resources/accounting/types/ExpenseReport.d.ts +364 -0
  47. package/api/resources/accounting/types/ExpenseReport.js +5 -0
  48. package/api/resources/accounting/types/ExpenseReportCompany.d.ts +8 -0
  49. package/api/resources/accounting/types/ExpenseReportCompany.js +5 -0
  50. package/api/resources/accounting/types/ExpenseReportLine.d.ts +366 -0
  51. package/api/resources/accounting/types/ExpenseReportLine.js +5 -0
  52. package/api/resources/accounting/types/ExpenseReportLineAccount.d.ts +5 -0
  53. package/api/resources/accounting/types/ExpenseReportLineAccount.js +5 -0
  54. package/api/resources/accounting/types/ExpenseReportLineCompany.d.ts +8 -0
  55. package/api/resources/accounting/types/ExpenseReportLineCompany.js +5 -0
  56. package/api/resources/accounting/types/ExpenseReportLineContact.d.ts +5 -0
  57. package/api/resources/accounting/types/ExpenseReportLineContact.js +5 -0
  58. package/api/resources/accounting/types/ExpenseReportLineEmployee.d.ts +8 -0
  59. package/api/resources/accounting/types/ExpenseReportLineEmployee.js +5 -0
  60. package/api/resources/accounting/types/ExpenseReportLineProject.d.ts +5 -0
  61. package/api/resources/accounting/types/ExpenseReportLineProject.js +5 -0
  62. package/api/resources/accounting/types/ExpenseReportLineRequest.d.ts +361 -0
  63. package/api/resources/accounting/types/ExpenseReportLineRequest.js +5 -0
  64. package/api/resources/accounting/types/ExpenseReportLineRequestAccount.d.ts +5 -0
  65. package/api/resources/accounting/types/ExpenseReportLineRequestAccount.js +5 -0
  66. package/api/resources/accounting/types/ExpenseReportLineRequestCompany.d.ts +8 -0
  67. package/api/resources/accounting/types/ExpenseReportLineRequestCompany.js +5 -0
  68. package/api/resources/accounting/types/ExpenseReportLineRequestContact.d.ts +5 -0
  69. package/api/resources/accounting/types/ExpenseReportLineRequestContact.js +5 -0
  70. package/api/resources/accounting/types/ExpenseReportLineRequestEmployee.d.ts +8 -0
  71. package/api/resources/accounting/types/ExpenseReportLineRequestEmployee.js +5 -0
  72. package/api/resources/accounting/types/ExpenseReportLineRequestProject.d.ts +5 -0
  73. package/api/resources/accounting/types/ExpenseReportLineRequestProject.js +5 -0
  74. package/api/resources/accounting/types/ExpenseReportLineRequestTaxRate.d.ts +5 -0
  75. package/api/resources/accounting/types/ExpenseReportLineRequestTaxRate.js +5 -0
  76. package/api/resources/accounting/types/ExpenseReportLineTaxRate.d.ts +5 -0
  77. package/api/resources/accounting/types/ExpenseReportLineTaxRate.js +5 -0
  78. package/api/resources/accounting/types/ExpenseReportRequest.d.ts +354 -0
  79. package/api/resources/accounting/types/ExpenseReportRequest.js +5 -0
  80. package/api/resources/accounting/types/ExpenseReportRequestAccountingPeriod.d.ts +8 -0
  81. package/api/resources/accounting/types/ExpenseReportRequestAccountingPeriod.js +5 -0
  82. package/api/resources/accounting/types/ExpenseReportRequestCompany.d.ts +8 -0
  83. package/api/resources/accounting/types/ExpenseReportRequestCompany.js +5 -0
  84. package/api/resources/accounting/types/ExpenseReportRequestEmployee.d.ts +8 -0
  85. package/api/resources/accounting/types/ExpenseReportRequestEmployee.js +5 -0
  86. package/api/resources/accounting/types/ExpenseReportResponse.d.ts +10 -0
  87. package/api/resources/accounting/types/ExpenseReportResponse.js +5 -0
  88. package/api/resources/accounting/types/ExpenseReportStatus.d.ts +13 -0
  89. package/api/resources/accounting/types/ExpenseReportStatus.js +5 -0
  90. package/api/resources/accounting/types/ExpenseReportStatusEnum.d.ts +16 -0
  91. package/api/resources/accounting/types/ExpenseReportStatusEnum.js +12 -0
  92. package/api/resources/accounting/types/ExternalTargetFieldApiResponse.d.ts +1 -0
  93. package/api/resources/accounting/types/FieldMappingApiInstanceResponse.d.ts +1 -0
  94. package/api/resources/accounting/types/Item.d.ts +9 -0
  95. package/api/resources/accounting/types/ItemType.d.ts +13 -0
  96. package/api/resources/accounting/types/ItemType.js +5 -0
  97. package/api/resources/accounting/types/PaginatedExpenseReportLineList.d.ts +9 -0
  98. package/api/resources/accounting/types/PaginatedExpenseReportLineList.js +5 -0
  99. package/api/resources/accounting/types/PaginatedExpenseReportList.d.ts +9 -0
  100. package/api/resources/accounting/types/PaginatedExpenseReportList.js +5 -0
  101. package/api/resources/accounting/types/index.d.ts +26 -0
  102. package/api/resources/accounting/types/index.js +26 -0
  103. package/api/resources/index.d.ts +2 -2
  104. package/api/resources/index.js +3 -3
  105. package/dist/Client.d.ts +6 -6
  106. package/dist/Client.js +17 -17
  107. package/dist/api/resources/accounting/client/Client.d.ts +3 -0
  108. package/dist/api/resources/accounting/client/Client.js +57 -52
  109. package/dist/api/resources/accounting/resources/employees/client/Client.js +19 -1
  110. package/dist/api/resources/accounting/resources/employees/client/requests/EmployeesListRequest.d.ts +24 -0
  111. package/dist/api/resources/accounting/resources/expenseReports/client/Client.d.ts +118 -0
  112. package/dist/api/resources/accounting/resources/expenseReports/client/Client.js +667 -0
  113. package/dist/api/resources/accounting/resources/expenseReports/client/index.d.ts +1 -0
  114. package/dist/api/resources/accounting/resources/expenseReports/client/index.js +17 -0
  115. package/dist/api/resources/accounting/resources/expenseReports/client/requests/ExpenseReportEndpointRequest.d.ts +23 -0
  116. package/dist/api/resources/accounting/resources/expenseReports/client/requests/ExpenseReportEndpointRequest.js +5 -0
  117. package/dist/api/resources/accounting/resources/expenseReports/client/requests/ExpenseReportsLinesListRequest.d.ts +38 -0
  118. package/dist/api/resources/accounting/resources/expenseReports/client/requests/ExpenseReportsLinesListRequest.js +5 -0
  119. package/dist/api/resources/accounting/resources/expenseReports/client/requests/ExpenseReportsLinesRemoteFieldClassesListRequest.d.ts +37 -0
  120. package/dist/api/resources/accounting/resources/expenseReports/client/requests/ExpenseReportsLinesRemoteFieldClassesListRequest.js +5 -0
  121. package/dist/api/resources/accounting/resources/expenseReports/client/requests/ExpenseReportsListRequest.d.ts +62 -0
  122. package/dist/api/resources/accounting/resources/expenseReports/client/requests/ExpenseReportsListRequest.js +5 -0
  123. package/dist/api/resources/accounting/resources/expenseReports/client/requests/ExpenseReportsRemoteFieldClassesListRequest.d.ts +37 -0
  124. package/dist/api/resources/accounting/resources/expenseReports/client/requests/ExpenseReportsRemoteFieldClassesListRequest.js +5 -0
  125. package/dist/api/resources/accounting/resources/expenseReports/client/requests/ExpenseReportsRetrieveRequest.d.ts +26 -0
  126. package/dist/api/resources/accounting/resources/expenseReports/client/requests/ExpenseReportsRetrieveRequest.js +5 -0
  127. package/dist/api/resources/accounting/resources/expenseReports/client/requests/index.d.ts +6 -0
  128. package/dist/api/resources/accounting/resources/expenseReports/client/requests/index.js +2 -0
  129. package/dist/api/resources/accounting/resources/expenseReports/index.d.ts +2 -0
  130. package/dist/api/resources/accounting/resources/expenseReports/index.js +18 -0
  131. package/dist/api/resources/accounting/resources/expenseReports/types/ExpenseReportsLinesListRequestExpand.d.ts +69 -0
  132. package/dist/api/resources/accounting/resources/expenseReports/types/ExpenseReportsLinesListRequestExpand.js +71 -0
  133. package/dist/api/resources/accounting/resources/expenseReports/types/ExpenseReportsListRequestExpand.d.ts +21 -0
  134. package/dist/api/resources/accounting/resources/expenseReports/types/ExpenseReportsListRequestExpand.js +23 -0
  135. package/dist/api/resources/accounting/resources/expenseReports/types/ExpenseReportsRetrieveRequestExpand.d.ts +21 -0
  136. package/dist/api/resources/accounting/resources/expenseReports/types/ExpenseReportsRetrieveRequestExpand.js +23 -0
  137. package/dist/api/resources/accounting/resources/expenseReports/types/index.d.ts +3 -0
  138. package/dist/api/resources/accounting/resources/expenseReports/types/index.js +19 -0
  139. package/dist/api/resources/accounting/resources/index.d.ts +3 -0
  140. package/dist/api/resources/accounting/resources/index.js +4 -1
  141. package/dist/api/resources/accounting/resources/projects/client/Client.js +19 -1
  142. package/dist/api/resources/accounting/resources/projects/client/requests/ProjectsListRequest.d.ts +24 -0
  143. package/dist/api/resources/accounting/types/ExpenseReport.d.ts +364 -0
  144. package/dist/api/resources/accounting/types/ExpenseReport.js +5 -0
  145. package/dist/api/resources/accounting/types/ExpenseReportCompany.d.ts +8 -0
  146. package/dist/api/resources/accounting/types/ExpenseReportCompany.js +5 -0
  147. package/dist/api/resources/accounting/types/ExpenseReportLine.d.ts +366 -0
  148. package/dist/api/resources/accounting/types/ExpenseReportLine.js +5 -0
  149. package/dist/api/resources/accounting/types/ExpenseReportLineAccount.d.ts +5 -0
  150. package/dist/api/resources/accounting/types/ExpenseReportLineAccount.js +5 -0
  151. package/dist/api/resources/accounting/types/ExpenseReportLineCompany.d.ts +8 -0
  152. package/dist/api/resources/accounting/types/ExpenseReportLineCompany.js +5 -0
  153. package/dist/api/resources/accounting/types/ExpenseReportLineContact.d.ts +5 -0
  154. package/dist/api/resources/accounting/types/ExpenseReportLineContact.js +5 -0
  155. package/dist/api/resources/accounting/types/ExpenseReportLineEmployee.d.ts +8 -0
  156. package/dist/api/resources/accounting/types/ExpenseReportLineEmployee.js +5 -0
  157. package/dist/api/resources/accounting/types/ExpenseReportLineProject.d.ts +5 -0
  158. package/dist/api/resources/accounting/types/ExpenseReportLineProject.js +5 -0
  159. package/dist/api/resources/accounting/types/ExpenseReportLineRequest.d.ts +361 -0
  160. package/dist/api/resources/accounting/types/ExpenseReportLineRequest.js +5 -0
  161. package/dist/api/resources/accounting/types/ExpenseReportLineRequestAccount.d.ts +5 -0
  162. package/dist/api/resources/accounting/types/ExpenseReportLineRequestAccount.js +5 -0
  163. package/dist/api/resources/accounting/types/ExpenseReportLineRequestCompany.d.ts +8 -0
  164. package/dist/api/resources/accounting/types/ExpenseReportLineRequestCompany.js +5 -0
  165. package/dist/api/resources/accounting/types/ExpenseReportLineRequestContact.d.ts +5 -0
  166. package/dist/api/resources/accounting/types/ExpenseReportLineRequestContact.js +5 -0
  167. package/dist/api/resources/accounting/types/ExpenseReportLineRequestEmployee.d.ts +8 -0
  168. package/dist/api/resources/accounting/types/ExpenseReportLineRequestEmployee.js +5 -0
  169. package/dist/api/resources/accounting/types/ExpenseReportLineRequestProject.d.ts +5 -0
  170. package/dist/api/resources/accounting/types/ExpenseReportLineRequestProject.js +5 -0
  171. package/dist/api/resources/accounting/types/ExpenseReportLineRequestTaxRate.d.ts +5 -0
  172. package/dist/api/resources/accounting/types/ExpenseReportLineRequestTaxRate.js +5 -0
  173. package/dist/api/resources/accounting/types/ExpenseReportLineTaxRate.d.ts +5 -0
  174. package/dist/api/resources/accounting/types/ExpenseReportLineTaxRate.js +5 -0
  175. package/dist/api/resources/accounting/types/ExpenseReportRequest.d.ts +354 -0
  176. package/dist/api/resources/accounting/types/ExpenseReportRequest.js +5 -0
  177. package/dist/api/resources/accounting/types/ExpenseReportRequestAccountingPeriod.d.ts +8 -0
  178. package/dist/api/resources/accounting/types/ExpenseReportRequestAccountingPeriod.js +5 -0
  179. package/dist/api/resources/accounting/types/ExpenseReportRequestCompany.d.ts +8 -0
  180. package/dist/api/resources/accounting/types/ExpenseReportRequestCompany.js +5 -0
  181. package/dist/api/resources/accounting/types/ExpenseReportRequestEmployee.d.ts +8 -0
  182. package/dist/api/resources/accounting/types/ExpenseReportRequestEmployee.js +5 -0
  183. package/dist/api/resources/accounting/types/ExpenseReportResponse.d.ts +10 -0
  184. package/dist/api/resources/accounting/types/ExpenseReportResponse.js +5 -0
  185. package/dist/api/resources/accounting/types/ExpenseReportStatus.d.ts +13 -0
  186. package/dist/api/resources/accounting/types/ExpenseReportStatus.js +5 -0
  187. package/dist/api/resources/accounting/types/ExpenseReportStatusEnum.d.ts +16 -0
  188. package/dist/api/resources/accounting/types/ExpenseReportStatusEnum.js +12 -0
  189. package/dist/api/resources/accounting/types/ExternalTargetFieldApiResponse.d.ts +1 -0
  190. package/dist/api/resources/accounting/types/FieldMappingApiInstanceResponse.d.ts +1 -0
  191. package/dist/api/resources/accounting/types/Item.d.ts +9 -0
  192. package/dist/api/resources/accounting/types/ItemType.d.ts +13 -0
  193. package/dist/api/resources/accounting/types/ItemType.js +5 -0
  194. package/dist/api/resources/accounting/types/PaginatedExpenseReportLineList.d.ts +9 -0
  195. package/dist/api/resources/accounting/types/PaginatedExpenseReportLineList.js +5 -0
  196. package/dist/api/resources/accounting/types/PaginatedExpenseReportList.d.ts +9 -0
  197. package/dist/api/resources/accounting/types/PaginatedExpenseReportList.js +5 -0
  198. package/dist/api/resources/accounting/types/index.d.ts +26 -0
  199. package/dist/api/resources/accounting/types/index.js +26 -0
  200. package/dist/api/resources/index.d.ts +2 -2
  201. package/dist/api/resources/index.js +3 -3
  202. package/dist/serialization/resources/accounting/resources/expenseReports/client/index.d.ts +1 -0
  203. package/dist/serialization/resources/accounting/resources/expenseReports/client/index.js +17 -0
  204. package/dist/serialization/resources/accounting/resources/expenseReports/client/requests/ExpenseReportEndpointRequest.d.ts +13 -0
  205. package/dist/serialization/resources/accounting/resources/expenseReports/client/requests/ExpenseReportEndpointRequest.js +44 -0
  206. package/dist/serialization/resources/accounting/resources/expenseReports/client/requests/index.d.ts +1 -0
  207. package/dist/serialization/resources/accounting/resources/expenseReports/client/requests/index.js +5 -0
  208. package/dist/serialization/resources/accounting/resources/expenseReports/index.d.ts +2 -0
  209. package/dist/serialization/resources/accounting/resources/expenseReports/index.js +18 -0
  210. package/dist/serialization/resources/accounting/resources/expenseReports/types/ExpenseReportsLinesListRequestExpand.d.ts +10 -0
  211. package/dist/serialization/resources/accounting/resources/expenseReports/types/ExpenseReportsLinesListRequestExpand.js +105 -0
  212. package/dist/serialization/resources/accounting/resources/expenseReports/types/ExpenseReportsListRequestExpand.d.ts +10 -0
  213. package/dist/serialization/resources/accounting/resources/expenseReports/types/ExpenseReportsListRequestExpand.js +57 -0
  214. package/dist/serialization/resources/accounting/resources/expenseReports/types/ExpenseReportsRetrieveRequestExpand.d.ts +10 -0
  215. package/dist/serialization/resources/accounting/resources/expenseReports/types/ExpenseReportsRetrieveRequestExpand.js +57 -0
  216. package/dist/serialization/resources/accounting/resources/expenseReports/types/index.d.ts +3 -0
  217. package/dist/serialization/resources/accounting/resources/expenseReports/types/index.js +19 -0
  218. package/dist/serialization/resources/accounting/resources/index.d.ts +3 -0
  219. package/dist/serialization/resources/accounting/resources/index.js +4 -1
  220. package/dist/serialization/resources/accounting/types/ExpenseReport.d.ts +36 -0
  221. package/dist/serialization/resources/accounting/types/ExpenseReport.js +67 -0
  222. package/dist/serialization/resources/accounting/types/ExpenseReportCompany.d.ts +11 -0
  223. package/dist/serialization/resources/accounting/types/ExpenseReportCompany.js +42 -0
  224. package/dist/serialization/resources/accounting/types/ExpenseReportLine.d.ts +43 -0
  225. package/dist/serialization/resources/accounting/types/ExpenseReportLine.js +74 -0
  226. package/dist/serialization/resources/accounting/types/ExpenseReportLineAccount.d.ts +11 -0
  227. package/dist/serialization/resources/accounting/types/ExpenseReportLineAccount.js +42 -0
  228. package/dist/serialization/resources/accounting/types/ExpenseReportLineCompany.d.ts +11 -0
  229. package/dist/serialization/resources/accounting/types/ExpenseReportLineCompany.js +42 -0
  230. package/dist/serialization/resources/accounting/types/ExpenseReportLineContact.d.ts +11 -0
  231. package/dist/serialization/resources/accounting/types/ExpenseReportLineContact.js +42 -0
  232. package/dist/serialization/resources/accounting/types/ExpenseReportLineEmployee.d.ts +11 -0
  233. package/dist/serialization/resources/accounting/types/ExpenseReportLineEmployee.js +42 -0
  234. package/dist/serialization/resources/accounting/types/ExpenseReportLineProject.d.ts +11 -0
  235. package/dist/serialization/resources/accounting/types/ExpenseReportLineProject.js +42 -0
  236. package/dist/serialization/resources/accounting/types/ExpenseReportLineRequest.d.ts +41 -0
  237. package/dist/serialization/resources/accounting/types/ExpenseReportLineRequest.js +72 -0
  238. package/dist/serialization/resources/accounting/types/ExpenseReportLineRequestAccount.d.ts +11 -0
  239. package/dist/serialization/resources/accounting/types/ExpenseReportLineRequestAccount.js +42 -0
  240. package/dist/serialization/resources/accounting/types/ExpenseReportLineRequestCompany.d.ts +11 -0
  241. package/dist/serialization/resources/accounting/types/ExpenseReportLineRequestCompany.js +42 -0
  242. package/dist/serialization/resources/accounting/types/ExpenseReportLineRequestContact.d.ts +11 -0
  243. package/dist/serialization/resources/accounting/types/ExpenseReportLineRequestContact.js +42 -0
  244. package/dist/serialization/resources/accounting/types/ExpenseReportLineRequestEmployee.d.ts +11 -0
  245. package/dist/serialization/resources/accounting/types/ExpenseReportLineRequestEmployee.js +42 -0
  246. package/dist/serialization/resources/accounting/types/ExpenseReportLineRequestProject.d.ts +11 -0
  247. package/dist/serialization/resources/accounting/types/ExpenseReportLineRequestProject.js +42 -0
  248. package/dist/serialization/resources/accounting/types/ExpenseReportLineRequestTaxRate.d.ts +11 -0
  249. package/dist/serialization/resources/accounting/types/ExpenseReportLineRequestTaxRate.js +42 -0
  250. package/dist/serialization/resources/accounting/types/ExpenseReportLineTaxRate.d.ts +11 -0
  251. package/dist/serialization/resources/accounting/types/ExpenseReportLineTaxRate.js +42 -0
  252. package/dist/serialization/resources/accounting/types/ExpenseReportRequest.d.ts +30 -0
  253. package/dist/serialization/resources/accounting/types/ExpenseReportRequest.js +61 -0
  254. package/dist/serialization/resources/accounting/types/ExpenseReportRequestAccountingPeriod.d.ts +11 -0
  255. package/dist/serialization/resources/accounting/types/ExpenseReportRequestAccountingPeriod.js +42 -0
  256. package/dist/serialization/resources/accounting/types/ExpenseReportRequestCompany.d.ts +11 -0
  257. package/dist/serialization/resources/accounting/types/ExpenseReportRequestCompany.js +42 -0
  258. package/dist/serialization/resources/accounting/types/ExpenseReportRequestEmployee.d.ts +11 -0
  259. package/dist/serialization/resources/accounting/types/ExpenseReportRequestEmployee.js +42 -0
  260. package/dist/serialization/resources/accounting/types/ExpenseReportResponse.d.ts +19 -0
  261. package/dist/serialization/resources/accounting/types/ExpenseReportResponse.js +50 -0
  262. package/dist/serialization/resources/accounting/types/ExpenseReportStatus.d.ts +11 -0
  263. package/dist/serialization/resources/accounting/types/ExpenseReportStatus.js +42 -0
  264. package/dist/serialization/resources/accounting/types/ExpenseReportStatusEnum.d.ts +10 -0
  265. package/dist/serialization/resources/accounting/types/ExpenseReportStatusEnum.js +41 -0
  266. package/dist/serialization/resources/accounting/types/ExternalTargetFieldApiResponse.d.ts +1 -0
  267. package/dist/serialization/resources/accounting/types/ExternalTargetFieldApiResponse.js +1 -0
  268. package/dist/serialization/resources/accounting/types/FieldMappingApiInstanceResponse.d.ts +1 -0
  269. package/dist/serialization/resources/accounting/types/FieldMappingApiInstanceResponse.js +1 -0
  270. package/dist/serialization/resources/accounting/types/Item.d.ts +2 -0
  271. package/dist/serialization/resources/accounting/types/Item.js +2 -0
  272. package/dist/serialization/resources/accounting/types/ItemType.d.ts +11 -0
  273. package/dist/serialization/resources/accounting/types/ItemType.js +42 -0
  274. package/dist/serialization/resources/accounting/types/PaginatedExpenseReportLineList.d.ts +15 -0
  275. package/dist/serialization/resources/accounting/types/PaginatedExpenseReportLineList.js +46 -0
  276. package/dist/serialization/resources/accounting/types/PaginatedExpenseReportList.d.ts +15 -0
  277. package/dist/serialization/resources/accounting/types/PaginatedExpenseReportList.js +46 -0
  278. package/dist/serialization/resources/accounting/types/index.d.ts +26 -0
  279. package/dist/serialization/resources/accounting/types/index.js +26 -0
  280. package/dist/serialization/resources/index.d.ts +2 -2
  281. package/dist/serialization/resources/index.js +3 -3
  282. package/dist/version.d.ts +1 -1
  283. package/dist/version.js +1 -1
  284. package/package.json +1 -1
  285. package/reference.md +4069 -3614
  286. package/serialization/resources/accounting/resources/expenseReports/client/index.d.ts +1 -0
  287. package/serialization/resources/accounting/resources/expenseReports/client/index.js +17 -0
  288. package/serialization/resources/accounting/resources/expenseReports/client/requests/ExpenseReportEndpointRequest.d.ts +13 -0
  289. package/serialization/resources/accounting/resources/expenseReports/client/requests/ExpenseReportEndpointRequest.js +44 -0
  290. package/serialization/resources/accounting/resources/expenseReports/client/requests/index.d.ts +1 -0
  291. package/serialization/resources/accounting/resources/expenseReports/client/requests/index.js +5 -0
  292. package/serialization/resources/accounting/resources/expenseReports/index.d.ts +2 -0
  293. package/serialization/resources/accounting/resources/expenseReports/index.js +18 -0
  294. package/serialization/resources/accounting/resources/expenseReports/types/ExpenseReportsLinesListRequestExpand.d.ts +10 -0
  295. package/serialization/resources/accounting/resources/expenseReports/types/ExpenseReportsLinesListRequestExpand.js +105 -0
  296. package/serialization/resources/accounting/resources/expenseReports/types/ExpenseReportsListRequestExpand.d.ts +10 -0
  297. package/serialization/resources/accounting/resources/expenseReports/types/ExpenseReportsListRequestExpand.js +57 -0
  298. package/serialization/resources/accounting/resources/expenseReports/types/ExpenseReportsRetrieveRequestExpand.d.ts +10 -0
  299. package/serialization/resources/accounting/resources/expenseReports/types/ExpenseReportsRetrieveRequestExpand.js +57 -0
  300. package/serialization/resources/accounting/resources/expenseReports/types/index.d.ts +3 -0
  301. package/serialization/resources/accounting/resources/expenseReports/types/index.js +19 -0
  302. package/serialization/resources/accounting/resources/index.d.ts +3 -0
  303. package/serialization/resources/accounting/resources/index.js +4 -1
  304. package/serialization/resources/accounting/types/ExpenseReport.d.ts +36 -0
  305. package/serialization/resources/accounting/types/ExpenseReport.js +67 -0
  306. package/serialization/resources/accounting/types/ExpenseReportCompany.d.ts +11 -0
  307. package/serialization/resources/accounting/types/ExpenseReportCompany.js +42 -0
  308. package/serialization/resources/accounting/types/ExpenseReportLine.d.ts +43 -0
  309. package/serialization/resources/accounting/types/ExpenseReportLine.js +74 -0
  310. package/serialization/resources/accounting/types/ExpenseReportLineAccount.d.ts +11 -0
  311. package/serialization/resources/accounting/types/ExpenseReportLineAccount.js +42 -0
  312. package/serialization/resources/accounting/types/ExpenseReportLineCompany.d.ts +11 -0
  313. package/serialization/resources/accounting/types/ExpenseReportLineCompany.js +42 -0
  314. package/serialization/resources/accounting/types/ExpenseReportLineContact.d.ts +11 -0
  315. package/serialization/resources/accounting/types/ExpenseReportLineContact.js +42 -0
  316. package/serialization/resources/accounting/types/ExpenseReportLineEmployee.d.ts +11 -0
  317. package/serialization/resources/accounting/types/ExpenseReportLineEmployee.js +42 -0
  318. package/serialization/resources/accounting/types/ExpenseReportLineProject.d.ts +11 -0
  319. package/serialization/resources/accounting/types/ExpenseReportLineProject.js +42 -0
  320. package/serialization/resources/accounting/types/ExpenseReportLineRequest.d.ts +41 -0
  321. package/serialization/resources/accounting/types/ExpenseReportLineRequest.js +72 -0
  322. package/serialization/resources/accounting/types/ExpenseReportLineRequestAccount.d.ts +11 -0
  323. package/serialization/resources/accounting/types/ExpenseReportLineRequestAccount.js +42 -0
  324. package/serialization/resources/accounting/types/ExpenseReportLineRequestCompany.d.ts +11 -0
  325. package/serialization/resources/accounting/types/ExpenseReportLineRequestCompany.js +42 -0
  326. package/serialization/resources/accounting/types/ExpenseReportLineRequestContact.d.ts +11 -0
  327. package/serialization/resources/accounting/types/ExpenseReportLineRequestContact.js +42 -0
  328. package/serialization/resources/accounting/types/ExpenseReportLineRequestEmployee.d.ts +11 -0
  329. package/serialization/resources/accounting/types/ExpenseReportLineRequestEmployee.js +42 -0
  330. package/serialization/resources/accounting/types/ExpenseReportLineRequestProject.d.ts +11 -0
  331. package/serialization/resources/accounting/types/ExpenseReportLineRequestProject.js +42 -0
  332. package/serialization/resources/accounting/types/ExpenseReportLineRequestTaxRate.d.ts +11 -0
  333. package/serialization/resources/accounting/types/ExpenseReportLineRequestTaxRate.js +42 -0
  334. package/serialization/resources/accounting/types/ExpenseReportLineTaxRate.d.ts +11 -0
  335. package/serialization/resources/accounting/types/ExpenseReportLineTaxRate.js +42 -0
  336. package/serialization/resources/accounting/types/ExpenseReportRequest.d.ts +30 -0
  337. package/serialization/resources/accounting/types/ExpenseReportRequest.js +61 -0
  338. package/serialization/resources/accounting/types/ExpenseReportRequestAccountingPeriod.d.ts +11 -0
  339. package/serialization/resources/accounting/types/ExpenseReportRequestAccountingPeriod.js +42 -0
  340. package/serialization/resources/accounting/types/ExpenseReportRequestCompany.d.ts +11 -0
  341. package/serialization/resources/accounting/types/ExpenseReportRequestCompany.js +42 -0
  342. package/serialization/resources/accounting/types/ExpenseReportRequestEmployee.d.ts +11 -0
  343. package/serialization/resources/accounting/types/ExpenseReportRequestEmployee.js +42 -0
  344. package/serialization/resources/accounting/types/ExpenseReportResponse.d.ts +19 -0
  345. package/serialization/resources/accounting/types/ExpenseReportResponse.js +50 -0
  346. package/serialization/resources/accounting/types/ExpenseReportStatus.d.ts +11 -0
  347. package/serialization/resources/accounting/types/ExpenseReportStatus.js +42 -0
  348. package/serialization/resources/accounting/types/ExpenseReportStatusEnum.d.ts +10 -0
  349. package/serialization/resources/accounting/types/ExpenseReportStatusEnum.js +41 -0
  350. package/serialization/resources/accounting/types/ExternalTargetFieldApiResponse.d.ts +1 -0
  351. package/serialization/resources/accounting/types/ExternalTargetFieldApiResponse.js +1 -0
  352. package/serialization/resources/accounting/types/FieldMappingApiInstanceResponse.d.ts +1 -0
  353. package/serialization/resources/accounting/types/FieldMappingApiInstanceResponse.js +1 -0
  354. package/serialization/resources/accounting/types/Item.d.ts +2 -0
  355. package/serialization/resources/accounting/types/Item.js +2 -0
  356. package/serialization/resources/accounting/types/ItemType.d.ts +11 -0
  357. package/serialization/resources/accounting/types/ItemType.js +42 -0
  358. package/serialization/resources/accounting/types/PaginatedExpenseReportLineList.d.ts +15 -0
  359. package/serialization/resources/accounting/types/PaginatedExpenseReportLineList.js +46 -0
  360. package/serialization/resources/accounting/types/PaginatedExpenseReportList.d.ts +15 -0
  361. package/serialization/resources/accounting/types/PaginatedExpenseReportList.js +46 -0
  362. package/serialization/resources/accounting/types/index.d.ts +26 -0
  363. package/serialization/resources/accounting/types/index.js +26 -0
  364. package/serialization/resources/index.d.ts +2 -2
  365. package/serialization/resources/index.js +3 -3
  366. package/version.d.ts +1 -1
  367. package/version.js +1 -1
@@ -20423,6 +20423,3055 @@ types:
20423
20423
  access: write-only
20424
20424
  source:
20425
20425
  openapi: openapi/openapi.yml
20426
+ ExpenseReportStatus:
20427
+ discriminated: false
20428
+ docs: >-
20429
+ Overall status of the expense report. One of DRAFT, SUBMITTED, APPROVED,
20430
+ REJECTED
20431
+
20432
+
20433
+ * `DRAFT` - DRAFT
20434
+
20435
+ * `SUBMITTED` - SUBMITTED
20436
+
20437
+ * `APPROVED` - APPROVED
20438
+
20439
+ * `REJECTED` - REJECTED
20440
+ union:
20441
+ - ExpenseReportStatusEnum
20442
+ - string
20443
+ source:
20444
+ openapi: openapi/openapi.yml
20445
+ inline: true
20446
+ ExpenseReportCompany:
20447
+ discriminated: false
20448
+ docs: The subsidiary that the expense report is created in
20449
+ union:
20450
+ - type: string
20451
+ validation:
20452
+ format: uuid
20453
+ - CompanyInfo
20454
+ source:
20455
+ openapi: openapi/openapi.yml
20456
+ inline: true
20457
+ ExpenseReport:
20458
+ docs: >-
20459
+ # The ExpenseReport Object
20460
+
20461
+ ### Description
20462
+
20463
+ The `ExpenseReport` object represents a collection of expenses submitted
20464
+ for review and reimbursement.
20465
+
20466
+ It includes details about the submitter, status, amounts, and associated
20467
+ metadata.
20468
+
20469
+
20470
+ ### Usage Example
20471
+
20472
+ Fetch from the `GET ExpenseReport` endpoint to view details of expense
20473
+ reports and their line items.
20474
+ properties:
20475
+ id:
20476
+ type: optional<string>
20477
+ validation:
20478
+ format: uuid
20479
+ access: read-only
20480
+ remote_id:
20481
+ type: optional<string>
20482
+ docs: The third-party API ID of the matching object.
20483
+ created_at:
20484
+ type: optional<datetime>
20485
+ docs: The datetime that this object was created by Merge.
20486
+ access: read-only
20487
+ modified_at:
20488
+ type: optional<datetime>
20489
+ docs: The datetime that this object was modified by Merge.
20490
+ access: read-only
20491
+ report_date:
20492
+ type: optional<datetime>
20493
+ docs: The date of the expense report.
20494
+ report_identifier:
20495
+ type: optional<string>
20496
+ docs: Human-readable expense report identifier.
20497
+ validation:
20498
+ maxLength: 1024
20499
+ employee:
20500
+ type: optional<string>
20501
+ docs: >-
20502
+ Identifier for the employee who submitted or is associated with the
20503
+ expense report
20504
+ validation:
20505
+ format: uuid
20506
+ status:
20507
+ type: optional<ExpenseReportStatus>
20508
+ docs: >-
20509
+ Overall status of the expense report. One of DRAFT, SUBMITTED,
20510
+ APPROVED, REJECTED
20511
+
20512
+
20513
+ * `DRAFT` - DRAFT
20514
+
20515
+ * `SUBMITTED` - SUBMITTED
20516
+
20517
+ * `APPROVED` - APPROVED
20518
+
20519
+ * `REJECTED` - REJECTED
20520
+ total_amount:
20521
+ type: optional<double>
20522
+ docs: Total amount of the expense report
20523
+ lines:
20524
+ type: optional<list<ExpenseReportLine>>
20525
+ access: read-only
20526
+ currency:
20527
+ type: optional<TransactionCurrencyEnum>
20528
+ docs: >-
20529
+ Currency code for the expense report
20530
+
20531
+
20532
+ * `XUA` - ADB Unit of Account
20533
+
20534
+ * `AFN` - Afghan Afghani
20535
+
20536
+ * `AFA` - Afghan Afghani (1927–2002)
20537
+
20538
+ * `ALL` - Albanian Lek
20539
+
20540
+ * `ALK` - Albanian Lek (1946–1965)
20541
+
20542
+ * `DZD` - Algerian Dinar
20543
+
20544
+ * `ADP` - Andorran Peseta
20545
+
20546
+ * `AOA` - Angolan Kwanza
20547
+
20548
+ * `AOK` - Angolan Kwanza (1977–1991)
20549
+
20550
+ * `AON` - Angolan New Kwanza (1990–2000)
20551
+
20552
+ * `AOR` - Angolan Readjusted Kwanza (1995–1999)
20553
+
20554
+ * `ARA` - Argentine Austral
20555
+
20556
+ * `ARS` - Argentine Peso
20557
+
20558
+ * `ARM` - Argentine Peso (1881–1970)
20559
+
20560
+ * `ARP` - Argentine Peso (1983–1985)
20561
+
20562
+ * `ARL` - Argentine Peso Ley (1970–1983)
20563
+
20564
+ * `AMD` - Armenian Dram
20565
+
20566
+ * `AWG` - Aruban Florin
20567
+
20568
+ * `AUD` - Australian Dollar
20569
+
20570
+ * `ATS` - Austrian Schilling
20571
+
20572
+ * `AZN` - Azerbaijani Manat
20573
+
20574
+ * `AZM` - Azerbaijani Manat (1993–2006)
20575
+
20576
+ * `BSD` - Bahamian Dollar
20577
+
20578
+ * `BHD` - Bahraini Dinar
20579
+
20580
+ * `BDT` - Bangladeshi Taka
20581
+
20582
+ * `BBD` - Barbadian Dollar
20583
+
20584
+ * `BYN` - Belarusian Ruble
20585
+
20586
+ * `BYB` - Belarusian Ruble (1994–1999)
20587
+
20588
+ * `BYR` - Belarusian Ruble (2000–2016)
20589
+
20590
+ * `BEF` - Belgian Franc
20591
+
20592
+ * `BEC` - Belgian Franc (convertible)
20593
+
20594
+ * `BEL` - Belgian Franc (financial)
20595
+
20596
+ * `BZD` - Belize Dollar
20597
+
20598
+ * `BMD` - Bermudan Dollar
20599
+
20600
+ * `BTN` - Bhutanese Ngultrum
20601
+
20602
+ * `BOB` - Bolivian Boliviano
20603
+
20604
+ * `BOL` - Bolivian Boliviano (1863–1963)
20605
+
20606
+ * `BOV` - Bolivian Mvdol
20607
+
20608
+ * `BOP` - Bolivian Peso
20609
+
20610
+ * `BAM` - Bosnia-Herzegovina Convertible Mark
20611
+
20612
+ * `BAD` - Bosnia-Herzegovina Dinar (1992–1994)
20613
+
20614
+ * `BAN` - Bosnia-Herzegovina New Dinar (1994–1997)
20615
+
20616
+ * `BWP` - Botswanan Pula
20617
+
20618
+ * `BRC` - Brazilian Cruzado (1986–1989)
20619
+
20620
+ * `BRZ` - Brazilian Cruzeiro (1942–1967)
20621
+
20622
+ * `BRE` - Brazilian Cruzeiro (1990–1993)
20623
+
20624
+ * `BRR` - Brazilian Cruzeiro (1993–1994)
20625
+
20626
+ * `BRN` - Brazilian New Cruzado (1989–1990)
20627
+
20628
+ * `BRB` - Brazilian New Cruzeiro (1967–1986)
20629
+
20630
+ * `BRL` - Brazilian Real
20631
+
20632
+ * `GBP` - British Pound
20633
+
20634
+ * `BND` - Brunei Dollar
20635
+
20636
+ * `BGL` - Bulgarian Hard Lev
20637
+
20638
+ * `BGN` - Bulgarian Lev
20639
+
20640
+ * `BGO` - Bulgarian Lev (1879–1952)
20641
+
20642
+ * `BGM` - Bulgarian Socialist Lev
20643
+
20644
+ * `BUK` - Burmese Kyat
20645
+
20646
+ * `BIF` - Burundian Franc
20647
+
20648
+ * `XPF` - CFP Franc
20649
+
20650
+ * `KHR` - Cambodian Riel
20651
+
20652
+ * `CAD` - Canadian Dollar
20653
+
20654
+ * `CVE` - Cape Verdean Escudo
20655
+
20656
+ * `KYD` - Cayman Islands Dollar
20657
+
20658
+ * `XAF` - Central African CFA Franc
20659
+
20660
+ * `CLE` - Chilean Escudo
20661
+
20662
+ * `CLP` - Chilean Peso
20663
+
20664
+ * `CLF` - Chilean Unit of Account (UF)
20665
+
20666
+ * `CNX` - Chinese People’s Bank Dollar
20667
+
20668
+ * `CNY` - Chinese Yuan
20669
+
20670
+ * `CNH` - Chinese Yuan (offshore)
20671
+
20672
+ * `COP` - Colombian Peso
20673
+
20674
+ * `COU` - Colombian Real Value Unit
20675
+
20676
+ * `KMF` - Comorian Franc
20677
+
20678
+ * `CDF` - Congolese Franc
20679
+
20680
+ * `CRC` - Costa Rican Colón
20681
+
20682
+ * `HRD` - Croatian Dinar
20683
+
20684
+ * `HRK` - Croatian Kuna
20685
+
20686
+ * `CUC` - Cuban Convertible Peso
20687
+
20688
+ * `CUP` - Cuban Peso
20689
+
20690
+ * `CYP` - Cypriot Pound
20691
+
20692
+ * `CZK` - Czech Koruna
20693
+
20694
+ * `CSK` - Czechoslovak Hard Koruna
20695
+
20696
+ * `DKK` - Danish Krone
20697
+
20698
+ * `DJF` - Djiboutian Franc
20699
+
20700
+ * `DOP` - Dominican Peso
20701
+
20702
+ * `NLG` - Dutch Guilder
20703
+
20704
+ * `XCD` - East Caribbean Dollar
20705
+
20706
+ * `DDM` - East German Mark
20707
+
20708
+ * `ECS` - Ecuadorian Sucre
20709
+
20710
+ * `ECV` - Ecuadorian Unit of Constant Value
20711
+
20712
+ * `EGP` - Egyptian Pound
20713
+
20714
+ * `GQE` - Equatorial Guinean Ekwele
20715
+
20716
+ * `ERN` - Eritrean Nakfa
20717
+
20718
+ * `EEK` - Estonian Kroon
20719
+
20720
+ * `ETB` - Ethiopian Birr
20721
+
20722
+ * `EUR` - Euro
20723
+
20724
+ * `XBA` - European Composite Unit
20725
+
20726
+ * `XEU` - European Currency Unit
20727
+
20728
+ * `XBB` - European Monetary Unit
20729
+
20730
+ * `XBC` - European Unit of Account (XBC)
20731
+
20732
+ * `XBD` - European Unit of Account (XBD)
20733
+
20734
+ * `FKP` - Falkland Islands Pound
20735
+
20736
+ * `FJD` - Fijian Dollar
20737
+
20738
+ * `FIM` - Finnish Markka
20739
+
20740
+ * `FRF` - French Franc
20741
+
20742
+ * `XFO` - French Gold Franc
20743
+
20744
+ * `XFU` - French UIC-Franc
20745
+
20746
+ * `GMD` - Gambian Dalasi
20747
+
20748
+ * `GEK` - Georgian Kupon Larit
20749
+
20750
+ * `GEL` - Georgian Lari
20751
+
20752
+ * `DEM` - German Mark
20753
+
20754
+ * `GHS` - Ghanaian Cedi
20755
+
20756
+ * `GHC` - Ghanaian Cedi (1979–2007)
20757
+
20758
+ * `GIP` - Gibraltar Pound
20759
+
20760
+ * `XAU` - Gold
20761
+
20762
+ * `GRD` - Greek Drachma
20763
+
20764
+ * `GTQ` - Guatemalan Quetzal
20765
+
20766
+ * `GWP` - Guinea-Bissau Peso
20767
+
20768
+ * `GNF` - Guinean Franc
20769
+
20770
+ * `GNS` - Guinean Syli
20771
+
20772
+ * `GYD` - Guyanaese Dollar
20773
+
20774
+ * `HTG` - Haitian Gourde
20775
+
20776
+ * `HNL` - Honduran Lempira
20777
+
20778
+ * `HKD` - Hong Kong Dollar
20779
+
20780
+ * `HUF` - Hungarian Forint
20781
+
20782
+ * `IMP` - IMP
20783
+
20784
+ * `ISK` - Icelandic Króna
20785
+
20786
+ * `ISJ` - Icelandic Króna (1918–1981)
20787
+
20788
+ * `INR` - Indian Rupee
20789
+
20790
+ * `IDR` - Indonesian Rupiah
20791
+
20792
+ * `IRR` - Iranian Rial
20793
+
20794
+ * `IQD` - Iraqi Dinar
20795
+
20796
+ * `IEP` - Irish Pound
20797
+
20798
+ * `ILS` - Israeli New Shekel
20799
+
20800
+ * `ILP` - Israeli Pound
20801
+
20802
+ * `ILR` - Israeli Shekel (1980–1985)
20803
+
20804
+ * `ITL` - Italian Lira
20805
+
20806
+ * `JMD` - Jamaican Dollar
20807
+
20808
+ * `JPY` - Japanese Yen
20809
+
20810
+ * `JOD` - Jordanian Dinar
20811
+
20812
+ * `KZT` - Kazakhstani Tenge
20813
+
20814
+ * `KES` - Kenyan Shilling
20815
+
20816
+ * `KWD` - Kuwaiti Dinar
20817
+
20818
+ * `KGS` - Kyrgystani Som
20819
+
20820
+ * `LAK` - Laotian Kip
20821
+
20822
+ * `LVL` - Latvian Lats
20823
+
20824
+ * `LVR` - Latvian Ruble
20825
+
20826
+ * `LBP` - Lebanese Pound
20827
+
20828
+ * `LSL` - Lesotho Loti
20829
+
20830
+ * `LRD` - Liberian Dollar
20831
+
20832
+ * `LYD` - Libyan Dinar
20833
+
20834
+ * `LTL` - Lithuanian Litas
20835
+
20836
+ * `LTT` - Lithuanian Talonas
20837
+
20838
+ * `LUL` - Luxembourg Financial Franc
20839
+
20840
+ * `LUC` - Luxembourgian Convertible Franc
20841
+
20842
+ * `LUF` - Luxembourgian Franc
20843
+
20844
+ * `MOP` - Macanese Pataca
20845
+
20846
+ * `MKD` - Macedonian Denar
20847
+
20848
+ * `MKN` - Macedonian Denar (1992–1993)
20849
+
20850
+ * `MGA` - Malagasy Ariary
20851
+
20852
+ * `MGF` - Malagasy Franc
20853
+
20854
+ * `MWK` - Malawian Kwacha
20855
+
20856
+ * `MYR` - Malaysian Ringgit
20857
+
20858
+ * `MVR` - Maldivian Rufiyaa
20859
+
20860
+ * `MVP` - Maldivian Rupee (1947–1981)
20861
+
20862
+ * `MLF` - Malian Franc
20863
+
20864
+ * `MTL` - Maltese Lira
20865
+
20866
+ * `MTP` - Maltese Pound
20867
+
20868
+ * `MRU` - Mauritanian Ouguiya
20869
+
20870
+ * `MRO` - Mauritanian Ouguiya (1973–2017)
20871
+
20872
+ * `MUR` - Mauritian Rupee
20873
+
20874
+ * `MXV` - Mexican Investment Unit
20875
+
20876
+ * `MXN` - Mexican Peso
20877
+
20878
+ * `MXP` - Mexican Silver Peso (1861–1992)
20879
+
20880
+ * `MDC` - Moldovan Cupon
20881
+
20882
+ * `MDL` - Moldovan Leu
20883
+
20884
+ * `MCF` - Monegasque Franc
20885
+
20886
+ * `MNT` - Mongolian Tugrik
20887
+
20888
+ * `MAD` - Moroccan Dirham
20889
+
20890
+ * `MAF` - Moroccan Franc
20891
+
20892
+ * `MZE` - Mozambican Escudo
20893
+
20894
+ * `MZN` - Mozambican Metical
20895
+
20896
+ * `MZM` - Mozambican Metical (1980–2006)
20897
+
20898
+ * `MMK` - Myanmar Kyat
20899
+
20900
+ * `NAD` - Namibian Dollar
20901
+
20902
+ * `NPR` - Nepalese Rupee
20903
+
20904
+ * `ANG` - Netherlands Antillean Guilder
20905
+
20906
+ * `TWD` - New Taiwan Dollar
20907
+
20908
+ * `NZD` - New Zealand Dollar
20909
+
20910
+ * `NIO` - Nicaraguan Córdoba
20911
+
20912
+ * `NIC` - Nicaraguan Córdoba (1988–1991)
20913
+
20914
+ * `NGN` - Nigerian Naira
20915
+
20916
+ * `KPW` - North Korean Won
20917
+
20918
+ * `NOK` - Norwegian Krone
20919
+
20920
+ * `OMR` - Omani Rial
20921
+
20922
+ * `PKR` - Pakistani Rupee
20923
+
20924
+ * `XPD` - Palladium
20925
+
20926
+ * `PAB` - Panamanian Balboa
20927
+
20928
+ * `PGK` - Papua New Guinean Kina
20929
+
20930
+ * `PYG` - Paraguayan Guarani
20931
+
20932
+ * `PEI` - Peruvian Inti
20933
+
20934
+ * `PEN` - Peruvian Sol
20935
+
20936
+ * `PES` - Peruvian Sol (1863–1965)
20937
+
20938
+ * `PHP` - Philippine Peso
20939
+
20940
+ * `XPT` - Platinum
20941
+
20942
+ * `PLN` - Polish Zloty
20943
+
20944
+ * `PLZ` - Polish Zloty (1950–1995)
20945
+
20946
+ * `PTE` - Portuguese Escudo
20947
+
20948
+ * `GWE` - Portuguese Guinea Escudo
20949
+
20950
+ * `QAR` - Qatari Rial
20951
+
20952
+ * `XRE` - RINET Funds
20953
+
20954
+ * `RHD` - Rhodesian Dollar
20955
+
20956
+ * `RON` - Romanian Leu
20957
+
20958
+ * `ROL` - Romanian Leu (1952–2006)
20959
+
20960
+ * `RUB` - Russian Ruble
20961
+
20962
+ * `RUR` - Russian Ruble (1991–1998)
20963
+
20964
+ * `RWF` - Rwandan Franc
20965
+
20966
+ * `SVC` - Salvadoran Colón
20967
+
20968
+ * `WST` - Samoan Tala
20969
+
20970
+ * `SAR` - Saudi Riyal
20971
+
20972
+ * `RSD` - Serbian Dinar
20973
+
20974
+ * `CSD` - Serbian Dinar (2002–2006)
20975
+
20976
+ * `SCR` - Seychellois Rupee
20977
+
20978
+ * `SLL` - Sierra Leonean Leone
20979
+
20980
+ * `XAG` - Silver
20981
+
20982
+ * `SGD` - Singapore Dollar
20983
+
20984
+ * `SKK` - Slovak Koruna
20985
+
20986
+ * `SIT` - Slovenian Tolar
20987
+
20988
+ * `SBD` - Solomon Islands Dollar
20989
+
20990
+ * `SOS` - Somali Shilling
20991
+
20992
+ * `ZAR` - South African Rand
20993
+
20994
+ * `ZAL` - South African Rand (financial)
20995
+
20996
+ * `KRH` - South Korean Hwan (1953–1962)
20997
+
20998
+ * `KRW` - South Korean Won
20999
+
21000
+ * `KRO` - South Korean Won (1945–1953)
21001
+
21002
+ * `SSP` - South Sudanese Pound
21003
+
21004
+ * `SUR` - Soviet Rouble
21005
+
21006
+ * `ESP` - Spanish Peseta
21007
+
21008
+ * `ESA` - Spanish Peseta (A account)
21009
+
21010
+ * `ESB` - Spanish Peseta (convertible account)
21011
+
21012
+ * `XDR` - Special Drawing Rights
21013
+
21014
+ * `LKR` - Sri Lankan Rupee
21015
+
21016
+ * `SHP` - St. Helena Pound
21017
+
21018
+ * `XSU` - Sucre
21019
+
21020
+ * `SDD` - Sudanese Dinar (1992–2007)
21021
+
21022
+ * `SDG` - Sudanese Pound
21023
+
21024
+ * `SDP` - Sudanese Pound (1957–1998)
21025
+
21026
+ * `SRD` - Surinamese Dollar
21027
+
21028
+ * `SRG` - Surinamese Guilder
21029
+
21030
+ * `SZL` - Swazi Lilangeni
21031
+
21032
+ * `SEK` - Swedish Krona
21033
+
21034
+ * `CHF` - Swiss Franc
21035
+
21036
+ * `SYP` - Syrian Pound
21037
+
21038
+ * `STN` - São Tomé & Príncipe Dobra
21039
+
21040
+ * `STD` - São Tomé & Príncipe Dobra (1977–2017)
21041
+
21042
+ * `TVD` - TVD
21043
+
21044
+ * `TJR` - Tajikistani Ruble
21045
+
21046
+ * `TJS` - Tajikistani Somoni
21047
+
21048
+ * `TZS` - Tanzanian Shilling
21049
+
21050
+ * `XTS` - Testing Currency Code
21051
+
21052
+ * `THB` - Thai Baht
21053
+
21054
+ * `XXX` - The codes assigned for transactions where no currency is
21055
+ involved
21056
+
21057
+ * `TPE` - Timorese Escudo
21058
+
21059
+ * `TOP` - Tongan Paʻanga
21060
+
21061
+ * `TTD` - Trinidad & Tobago Dollar
21062
+
21063
+ * `TND` - Tunisian Dinar
21064
+
21065
+ * `TRY` - Turkish Lira
21066
+
21067
+ * `TRL` - Turkish Lira (1922–2005)
21068
+
21069
+ * `TMT` - Turkmenistani Manat
21070
+
21071
+ * `TMM` - Turkmenistani Manat (1993–2009)
21072
+
21073
+ * `USD` - US Dollar
21074
+
21075
+ * `USN` - US Dollar (Next day)
21076
+
21077
+ * `USS` - US Dollar (Same day)
21078
+
21079
+ * `UGX` - Ugandan Shilling
21080
+
21081
+ * `UGS` - Ugandan Shilling (1966–1987)
21082
+
21083
+ * `UAH` - Ukrainian Hryvnia
21084
+
21085
+ * `UAK` - Ukrainian Karbovanets
21086
+
21087
+ * `AED` - United Arab Emirates Dirham
21088
+
21089
+ * `UYW` - Uruguayan Nominal Wage Index Unit
21090
+
21091
+ * `UYU` - Uruguayan Peso
21092
+
21093
+ * `UYP` - Uruguayan Peso (1975–1993)
21094
+
21095
+ * `UYI` - Uruguayan Peso (Indexed Units)
21096
+
21097
+ * `UZS` - Uzbekistani Som
21098
+
21099
+ * `VUV` - Vanuatu Vatu
21100
+
21101
+ * `VES` - Venezuelan Bolívar
21102
+
21103
+ * `VEB` - Venezuelan Bolívar (1871–2008)
21104
+
21105
+ * `VEF` - Venezuelan Bolívar (2008–2018)
21106
+
21107
+ * `VND` - Vietnamese Dong
21108
+
21109
+ * `VNN` - Vietnamese Dong (1978–1985)
21110
+
21111
+ * `CHE` - WIR Euro
21112
+
21113
+ * `CHW` - WIR Franc
21114
+
21115
+ * `XOF` - West African CFA Franc
21116
+
21117
+ * `YDD` - Yemeni Dinar
21118
+
21119
+ * `YER` - Yemeni Rial
21120
+
21121
+ * `YUN` - Yugoslavian Convertible Dinar (1990–1992)
21122
+
21123
+ * `YUD` - Yugoslavian Hard Dinar (1966–1990)
21124
+
21125
+ * `YUM` - Yugoslavian New Dinar (1994–2002)
21126
+
21127
+ * `YUR` - Yugoslavian Reformed Dinar (1992–1993)
21128
+
21129
+ * `ZWN` - ZWN
21130
+
21131
+ * `ZRN` - Zairean New Zaire (1993–1998)
21132
+
21133
+ * `ZRZ` - Zairean Zaire (1971–1993)
21134
+
21135
+ * `ZMW` - Zambian Kwacha
21136
+
21137
+ * `ZMK` - Zambian Kwacha (1968–2012)
21138
+
21139
+ * `ZWD` - Zimbabwean Dollar (1980–2008)
21140
+
21141
+ * `ZWR` - Zimbabwean Dollar (2008)
21142
+
21143
+ * `ZWL` - Zimbabwean Dollar (2009)
21144
+ description:
21145
+ type: optional<string>
21146
+ docs: A brief description or purpose for the expense report
21147
+ validation:
21148
+ maxLength: 1024
21149
+ accounting_period:
21150
+ type: optional<string>
21151
+ docs: The accounting period the report was posted in
21152
+ validation:
21153
+ format: uuid
21154
+ company:
21155
+ type: optional<ExpenseReportCompany>
21156
+ docs: The subsidiary that the expense report is created in
21157
+ tracking_categories:
21158
+ docs: The related tracking categories associated with the expense report
21159
+ type: list<string>
21160
+ remote_was_deleted:
21161
+ type: optional<boolean>
21162
+ docs: >-
21163
+ Indicates whether or not this object has been deleted in the third
21164
+ party platform. Full coverage deletion detection is a premium add-on.
21165
+ Native deletion detection is offered for free with limited coverage.
21166
+ [Learn
21167
+ more](https://docs.merge.dev/integrations/hris/supported-features/).
21168
+ access: read-only
21169
+ field_mappings:
21170
+ type: optional<map<string, unknown>>
21171
+ access: read-only
21172
+ remote_data:
21173
+ type: optional<list<RemoteData>>
21174
+ access: read-only
21175
+ remote_fields:
21176
+ type: optional<list<RemoteField>>
21177
+ access: read-only
21178
+ source:
21179
+ openapi: openapi/openapi.yml
21180
+ ExpenseReportLineAccount:
21181
+ discriminated: false
21182
+ union:
21183
+ - type: string
21184
+ validation:
21185
+ format: uuid
21186
+ - Account
21187
+ source:
21188
+ openapi: openapi/openapi.yml
21189
+ inline: true
21190
+ ExpenseReportLineEmployee:
21191
+ discriminated: false
21192
+ docs: >-
21193
+ Identifier for the employee who submitted or is associated with the
21194
+ expense report
21195
+ union:
21196
+ - type: string
21197
+ validation:
21198
+ format: uuid
21199
+ - Employee
21200
+ source:
21201
+ openapi: openapi/openapi.yml
21202
+ inline: true
21203
+ ExpenseReportLineProject:
21204
+ discriminated: false
21205
+ union:
21206
+ - type: string
21207
+ validation:
21208
+ format: uuid
21209
+ - Project
21210
+ source:
21211
+ openapi: openapi/openapi.yml
21212
+ inline: true
21213
+ ExpenseReportLineCompany:
21214
+ discriminated: false
21215
+ docs: The subsidiary that the expense report is created in
21216
+ union:
21217
+ - type: string
21218
+ validation:
21219
+ format: uuid
21220
+ - CompanyInfo
21221
+ source:
21222
+ openapi: openapi/openapi.yml
21223
+ inline: true
21224
+ ExpenseReportLineContact:
21225
+ discriminated: false
21226
+ union:
21227
+ - type: string
21228
+ validation:
21229
+ format: uuid
21230
+ - Contact
21231
+ source:
21232
+ openapi: openapi/openapi.yml
21233
+ inline: true
21234
+ ExpenseReportLineTaxRate:
21235
+ discriminated: false
21236
+ union:
21237
+ - type: string
21238
+ validation:
21239
+ format: uuid
21240
+ - TaxRate
21241
+ source:
21242
+ openapi: openapi/openapi.yml
21243
+ inline: true
21244
+ ExpenseReportLine:
21245
+ docs: >-
21246
+ # The ExpenseReportLine Object
21247
+
21248
+ ### Description
21249
+
21250
+ The `ExpenseReportLine` object represents an individual line item within
21251
+ an expense report, containing details about
21252
+
21253
+ a specific expense such as amount, description, and associated metadata.
21254
+
21255
+
21256
+ ### Usage Example
21257
+
21258
+ Fetch from the `GET ExpenseReport` endpoint and expand the lines field to
21259
+ view all line items in the expense report.
21260
+ properties:
21261
+ id:
21262
+ type: optional<string>
21263
+ validation:
21264
+ format: uuid
21265
+ access: read-only
21266
+ remote_id:
21267
+ type: optional<string>
21268
+ docs: The third-party API ID of the matching object.
21269
+ created_at:
21270
+ type: optional<datetime>
21271
+ docs: The datetime that this object was created by Merge.
21272
+ access: read-only
21273
+ modified_at:
21274
+ type: optional<datetime>
21275
+ docs: The datetime that this object was modified by Merge.
21276
+ access: read-only
21277
+ account: optional<ExpenseReportLineAccount>
21278
+ description:
21279
+ type: optional<string>
21280
+ docs: Description of the individual expense.
21281
+ validation:
21282
+ maxLength: 1024
21283
+ expense_date:
21284
+ type: optional<datetime>
21285
+ docs: The date the individual expense was incurred.
21286
+ amount:
21287
+ type: optional<double>
21288
+ docs: The amount of the expense for the line item.
21289
+ currency:
21290
+ type: optional<TransactionCurrencyEnum>
21291
+ docs: >-
21292
+ Currency of the expense line (if different from the report currency).
21293
+
21294
+
21295
+ * `XUA` - ADB Unit of Account
21296
+
21297
+ * `AFN` - Afghan Afghani
21298
+
21299
+ * `AFA` - Afghan Afghani (1927–2002)
21300
+
21301
+ * `ALL` - Albanian Lek
21302
+
21303
+ * `ALK` - Albanian Lek (1946–1965)
21304
+
21305
+ * `DZD` - Algerian Dinar
21306
+
21307
+ * `ADP` - Andorran Peseta
21308
+
21309
+ * `AOA` - Angolan Kwanza
21310
+
21311
+ * `AOK` - Angolan Kwanza (1977–1991)
21312
+
21313
+ * `AON` - Angolan New Kwanza (1990–2000)
21314
+
21315
+ * `AOR` - Angolan Readjusted Kwanza (1995–1999)
21316
+
21317
+ * `ARA` - Argentine Austral
21318
+
21319
+ * `ARS` - Argentine Peso
21320
+
21321
+ * `ARM` - Argentine Peso (1881–1970)
21322
+
21323
+ * `ARP` - Argentine Peso (1983–1985)
21324
+
21325
+ * `ARL` - Argentine Peso Ley (1970–1983)
21326
+
21327
+ * `AMD` - Armenian Dram
21328
+
21329
+ * `AWG` - Aruban Florin
21330
+
21331
+ * `AUD` - Australian Dollar
21332
+
21333
+ * `ATS` - Austrian Schilling
21334
+
21335
+ * `AZN` - Azerbaijani Manat
21336
+
21337
+ * `AZM` - Azerbaijani Manat (1993–2006)
21338
+
21339
+ * `BSD` - Bahamian Dollar
21340
+
21341
+ * `BHD` - Bahraini Dinar
21342
+
21343
+ * `BDT` - Bangladeshi Taka
21344
+
21345
+ * `BBD` - Barbadian Dollar
21346
+
21347
+ * `BYN` - Belarusian Ruble
21348
+
21349
+ * `BYB` - Belarusian Ruble (1994–1999)
21350
+
21351
+ * `BYR` - Belarusian Ruble (2000–2016)
21352
+
21353
+ * `BEF` - Belgian Franc
21354
+
21355
+ * `BEC` - Belgian Franc (convertible)
21356
+
21357
+ * `BEL` - Belgian Franc (financial)
21358
+
21359
+ * `BZD` - Belize Dollar
21360
+
21361
+ * `BMD` - Bermudan Dollar
21362
+
21363
+ * `BTN` - Bhutanese Ngultrum
21364
+
21365
+ * `BOB` - Bolivian Boliviano
21366
+
21367
+ * `BOL` - Bolivian Boliviano (1863–1963)
21368
+
21369
+ * `BOV` - Bolivian Mvdol
21370
+
21371
+ * `BOP` - Bolivian Peso
21372
+
21373
+ * `BAM` - Bosnia-Herzegovina Convertible Mark
21374
+
21375
+ * `BAD` - Bosnia-Herzegovina Dinar (1992–1994)
21376
+
21377
+ * `BAN` - Bosnia-Herzegovina New Dinar (1994–1997)
21378
+
21379
+ * `BWP` - Botswanan Pula
21380
+
21381
+ * `BRC` - Brazilian Cruzado (1986–1989)
21382
+
21383
+ * `BRZ` - Brazilian Cruzeiro (1942–1967)
21384
+
21385
+ * `BRE` - Brazilian Cruzeiro (1990–1993)
21386
+
21387
+ * `BRR` - Brazilian Cruzeiro (1993–1994)
21388
+
21389
+ * `BRN` - Brazilian New Cruzado (1989–1990)
21390
+
21391
+ * `BRB` - Brazilian New Cruzeiro (1967–1986)
21392
+
21393
+ * `BRL` - Brazilian Real
21394
+
21395
+ * `GBP` - British Pound
21396
+
21397
+ * `BND` - Brunei Dollar
21398
+
21399
+ * `BGL` - Bulgarian Hard Lev
21400
+
21401
+ * `BGN` - Bulgarian Lev
21402
+
21403
+ * `BGO` - Bulgarian Lev (1879–1952)
21404
+
21405
+ * `BGM` - Bulgarian Socialist Lev
21406
+
21407
+ * `BUK` - Burmese Kyat
21408
+
21409
+ * `BIF` - Burundian Franc
21410
+
21411
+ * `XPF` - CFP Franc
21412
+
21413
+ * `KHR` - Cambodian Riel
21414
+
21415
+ * `CAD` - Canadian Dollar
21416
+
21417
+ * `CVE` - Cape Verdean Escudo
21418
+
21419
+ * `KYD` - Cayman Islands Dollar
21420
+
21421
+ * `XAF` - Central African CFA Franc
21422
+
21423
+ * `CLE` - Chilean Escudo
21424
+
21425
+ * `CLP` - Chilean Peso
21426
+
21427
+ * `CLF` - Chilean Unit of Account (UF)
21428
+
21429
+ * `CNX` - Chinese People’s Bank Dollar
21430
+
21431
+ * `CNY` - Chinese Yuan
21432
+
21433
+ * `CNH` - Chinese Yuan (offshore)
21434
+
21435
+ * `COP` - Colombian Peso
21436
+
21437
+ * `COU` - Colombian Real Value Unit
21438
+
21439
+ * `KMF` - Comorian Franc
21440
+
21441
+ * `CDF` - Congolese Franc
21442
+
21443
+ * `CRC` - Costa Rican Colón
21444
+
21445
+ * `HRD` - Croatian Dinar
21446
+
21447
+ * `HRK` - Croatian Kuna
21448
+
21449
+ * `CUC` - Cuban Convertible Peso
21450
+
21451
+ * `CUP` - Cuban Peso
21452
+
21453
+ * `CYP` - Cypriot Pound
21454
+
21455
+ * `CZK` - Czech Koruna
21456
+
21457
+ * `CSK` - Czechoslovak Hard Koruna
21458
+
21459
+ * `DKK` - Danish Krone
21460
+
21461
+ * `DJF` - Djiboutian Franc
21462
+
21463
+ * `DOP` - Dominican Peso
21464
+
21465
+ * `NLG` - Dutch Guilder
21466
+
21467
+ * `XCD` - East Caribbean Dollar
21468
+
21469
+ * `DDM` - East German Mark
21470
+
21471
+ * `ECS` - Ecuadorian Sucre
21472
+
21473
+ * `ECV` - Ecuadorian Unit of Constant Value
21474
+
21475
+ * `EGP` - Egyptian Pound
21476
+
21477
+ * `GQE` - Equatorial Guinean Ekwele
21478
+
21479
+ * `ERN` - Eritrean Nakfa
21480
+
21481
+ * `EEK` - Estonian Kroon
21482
+
21483
+ * `ETB` - Ethiopian Birr
21484
+
21485
+ * `EUR` - Euro
21486
+
21487
+ * `XBA` - European Composite Unit
21488
+
21489
+ * `XEU` - European Currency Unit
21490
+
21491
+ * `XBB` - European Monetary Unit
21492
+
21493
+ * `XBC` - European Unit of Account (XBC)
21494
+
21495
+ * `XBD` - European Unit of Account (XBD)
21496
+
21497
+ * `FKP` - Falkland Islands Pound
21498
+
21499
+ * `FJD` - Fijian Dollar
21500
+
21501
+ * `FIM` - Finnish Markka
21502
+
21503
+ * `FRF` - French Franc
21504
+
21505
+ * `XFO` - French Gold Franc
21506
+
21507
+ * `XFU` - French UIC-Franc
21508
+
21509
+ * `GMD` - Gambian Dalasi
21510
+
21511
+ * `GEK` - Georgian Kupon Larit
21512
+
21513
+ * `GEL` - Georgian Lari
21514
+
21515
+ * `DEM` - German Mark
21516
+
21517
+ * `GHS` - Ghanaian Cedi
21518
+
21519
+ * `GHC` - Ghanaian Cedi (1979–2007)
21520
+
21521
+ * `GIP` - Gibraltar Pound
21522
+
21523
+ * `XAU` - Gold
21524
+
21525
+ * `GRD` - Greek Drachma
21526
+
21527
+ * `GTQ` - Guatemalan Quetzal
21528
+
21529
+ * `GWP` - Guinea-Bissau Peso
21530
+
21531
+ * `GNF` - Guinean Franc
21532
+
21533
+ * `GNS` - Guinean Syli
21534
+
21535
+ * `GYD` - Guyanaese Dollar
21536
+
21537
+ * `HTG` - Haitian Gourde
21538
+
21539
+ * `HNL` - Honduran Lempira
21540
+
21541
+ * `HKD` - Hong Kong Dollar
21542
+
21543
+ * `HUF` - Hungarian Forint
21544
+
21545
+ * `IMP` - IMP
21546
+
21547
+ * `ISK` - Icelandic Króna
21548
+
21549
+ * `ISJ` - Icelandic Króna (1918–1981)
21550
+
21551
+ * `INR` - Indian Rupee
21552
+
21553
+ * `IDR` - Indonesian Rupiah
21554
+
21555
+ * `IRR` - Iranian Rial
21556
+
21557
+ * `IQD` - Iraqi Dinar
21558
+
21559
+ * `IEP` - Irish Pound
21560
+
21561
+ * `ILS` - Israeli New Shekel
21562
+
21563
+ * `ILP` - Israeli Pound
21564
+
21565
+ * `ILR` - Israeli Shekel (1980–1985)
21566
+
21567
+ * `ITL` - Italian Lira
21568
+
21569
+ * `JMD` - Jamaican Dollar
21570
+
21571
+ * `JPY` - Japanese Yen
21572
+
21573
+ * `JOD` - Jordanian Dinar
21574
+
21575
+ * `KZT` - Kazakhstani Tenge
21576
+
21577
+ * `KES` - Kenyan Shilling
21578
+
21579
+ * `KWD` - Kuwaiti Dinar
21580
+
21581
+ * `KGS` - Kyrgystani Som
21582
+
21583
+ * `LAK` - Laotian Kip
21584
+
21585
+ * `LVL` - Latvian Lats
21586
+
21587
+ * `LVR` - Latvian Ruble
21588
+
21589
+ * `LBP` - Lebanese Pound
21590
+
21591
+ * `LSL` - Lesotho Loti
21592
+
21593
+ * `LRD` - Liberian Dollar
21594
+
21595
+ * `LYD` - Libyan Dinar
21596
+
21597
+ * `LTL` - Lithuanian Litas
21598
+
21599
+ * `LTT` - Lithuanian Talonas
21600
+
21601
+ * `LUL` - Luxembourg Financial Franc
21602
+
21603
+ * `LUC` - Luxembourgian Convertible Franc
21604
+
21605
+ * `LUF` - Luxembourgian Franc
21606
+
21607
+ * `MOP` - Macanese Pataca
21608
+
21609
+ * `MKD` - Macedonian Denar
21610
+
21611
+ * `MKN` - Macedonian Denar (1992–1993)
21612
+
21613
+ * `MGA` - Malagasy Ariary
21614
+
21615
+ * `MGF` - Malagasy Franc
21616
+
21617
+ * `MWK` - Malawian Kwacha
21618
+
21619
+ * `MYR` - Malaysian Ringgit
21620
+
21621
+ * `MVR` - Maldivian Rufiyaa
21622
+
21623
+ * `MVP` - Maldivian Rupee (1947–1981)
21624
+
21625
+ * `MLF` - Malian Franc
21626
+
21627
+ * `MTL` - Maltese Lira
21628
+
21629
+ * `MTP` - Maltese Pound
21630
+
21631
+ * `MRU` - Mauritanian Ouguiya
21632
+
21633
+ * `MRO` - Mauritanian Ouguiya (1973–2017)
21634
+
21635
+ * `MUR` - Mauritian Rupee
21636
+
21637
+ * `MXV` - Mexican Investment Unit
21638
+
21639
+ * `MXN` - Mexican Peso
21640
+
21641
+ * `MXP` - Mexican Silver Peso (1861–1992)
21642
+
21643
+ * `MDC` - Moldovan Cupon
21644
+
21645
+ * `MDL` - Moldovan Leu
21646
+
21647
+ * `MCF` - Monegasque Franc
21648
+
21649
+ * `MNT` - Mongolian Tugrik
21650
+
21651
+ * `MAD` - Moroccan Dirham
21652
+
21653
+ * `MAF` - Moroccan Franc
21654
+
21655
+ * `MZE` - Mozambican Escudo
21656
+
21657
+ * `MZN` - Mozambican Metical
21658
+
21659
+ * `MZM` - Mozambican Metical (1980–2006)
21660
+
21661
+ * `MMK` - Myanmar Kyat
21662
+
21663
+ * `NAD` - Namibian Dollar
21664
+
21665
+ * `NPR` - Nepalese Rupee
21666
+
21667
+ * `ANG` - Netherlands Antillean Guilder
21668
+
21669
+ * `TWD` - New Taiwan Dollar
21670
+
21671
+ * `NZD` - New Zealand Dollar
21672
+
21673
+ * `NIO` - Nicaraguan Córdoba
21674
+
21675
+ * `NIC` - Nicaraguan Córdoba (1988–1991)
21676
+
21677
+ * `NGN` - Nigerian Naira
21678
+
21679
+ * `KPW` - North Korean Won
21680
+
21681
+ * `NOK` - Norwegian Krone
21682
+
21683
+ * `OMR` - Omani Rial
21684
+
21685
+ * `PKR` - Pakistani Rupee
21686
+
21687
+ * `XPD` - Palladium
21688
+
21689
+ * `PAB` - Panamanian Balboa
21690
+
21691
+ * `PGK` - Papua New Guinean Kina
21692
+
21693
+ * `PYG` - Paraguayan Guarani
21694
+
21695
+ * `PEI` - Peruvian Inti
21696
+
21697
+ * `PEN` - Peruvian Sol
21698
+
21699
+ * `PES` - Peruvian Sol (1863–1965)
21700
+
21701
+ * `PHP` - Philippine Peso
21702
+
21703
+ * `XPT` - Platinum
21704
+
21705
+ * `PLN` - Polish Zloty
21706
+
21707
+ * `PLZ` - Polish Zloty (1950–1995)
21708
+
21709
+ * `PTE` - Portuguese Escudo
21710
+
21711
+ * `GWE` - Portuguese Guinea Escudo
21712
+
21713
+ * `QAR` - Qatari Rial
21714
+
21715
+ * `XRE` - RINET Funds
21716
+
21717
+ * `RHD` - Rhodesian Dollar
21718
+
21719
+ * `RON` - Romanian Leu
21720
+
21721
+ * `ROL` - Romanian Leu (1952–2006)
21722
+
21723
+ * `RUB` - Russian Ruble
21724
+
21725
+ * `RUR` - Russian Ruble (1991–1998)
21726
+
21727
+ * `RWF` - Rwandan Franc
21728
+
21729
+ * `SVC` - Salvadoran Colón
21730
+
21731
+ * `WST` - Samoan Tala
21732
+
21733
+ * `SAR` - Saudi Riyal
21734
+
21735
+ * `RSD` - Serbian Dinar
21736
+
21737
+ * `CSD` - Serbian Dinar (2002–2006)
21738
+
21739
+ * `SCR` - Seychellois Rupee
21740
+
21741
+ * `SLL` - Sierra Leonean Leone
21742
+
21743
+ * `XAG` - Silver
21744
+
21745
+ * `SGD` - Singapore Dollar
21746
+
21747
+ * `SKK` - Slovak Koruna
21748
+
21749
+ * `SIT` - Slovenian Tolar
21750
+
21751
+ * `SBD` - Solomon Islands Dollar
21752
+
21753
+ * `SOS` - Somali Shilling
21754
+
21755
+ * `ZAR` - South African Rand
21756
+
21757
+ * `ZAL` - South African Rand (financial)
21758
+
21759
+ * `KRH` - South Korean Hwan (1953–1962)
21760
+
21761
+ * `KRW` - South Korean Won
21762
+
21763
+ * `KRO` - South Korean Won (1945–1953)
21764
+
21765
+ * `SSP` - South Sudanese Pound
21766
+
21767
+ * `SUR` - Soviet Rouble
21768
+
21769
+ * `ESP` - Spanish Peseta
21770
+
21771
+ * `ESA` - Spanish Peseta (A account)
21772
+
21773
+ * `ESB` - Spanish Peseta (convertible account)
21774
+
21775
+ * `XDR` - Special Drawing Rights
21776
+
21777
+ * `LKR` - Sri Lankan Rupee
21778
+
21779
+ * `SHP` - St. Helena Pound
21780
+
21781
+ * `XSU` - Sucre
21782
+
21783
+ * `SDD` - Sudanese Dinar (1992–2007)
21784
+
21785
+ * `SDG` - Sudanese Pound
21786
+
21787
+ * `SDP` - Sudanese Pound (1957–1998)
21788
+
21789
+ * `SRD` - Surinamese Dollar
21790
+
21791
+ * `SRG` - Surinamese Guilder
21792
+
21793
+ * `SZL` - Swazi Lilangeni
21794
+
21795
+ * `SEK` - Swedish Krona
21796
+
21797
+ * `CHF` - Swiss Franc
21798
+
21799
+ * `SYP` - Syrian Pound
21800
+
21801
+ * `STN` - São Tomé & Príncipe Dobra
21802
+
21803
+ * `STD` - São Tomé & Príncipe Dobra (1977–2017)
21804
+
21805
+ * `TVD` - TVD
21806
+
21807
+ * `TJR` - Tajikistani Ruble
21808
+
21809
+ * `TJS` - Tajikistani Somoni
21810
+
21811
+ * `TZS` - Tanzanian Shilling
21812
+
21813
+ * `XTS` - Testing Currency Code
21814
+
21815
+ * `THB` - Thai Baht
21816
+
21817
+ * `XXX` - The codes assigned for transactions where no currency is
21818
+ involved
21819
+
21820
+ * `TPE` - Timorese Escudo
21821
+
21822
+ * `TOP` - Tongan Paʻanga
21823
+
21824
+ * `TTD` - Trinidad & Tobago Dollar
21825
+
21826
+ * `TND` - Tunisian Dinar
21827
+
21828
+ * `TRY` - Turkish Lira
21829
+
21830
+ * `TRL` - Turkish Lira (1922–2005)
21831
+
21832
+ * `TMT` - Turkmenistani Manat
21833
+
21834
+ * `TMM` - Turkmenistani Manat (1993–2009)
21835
+
21836
+ * `USD` - US Dollar
21837
+
21838
+ * `USN` - US Dollar (Next day)
21839
+
21840
+ * `USS` - US Dollar (Same day)
21841
+
21842
+ * `UGX` - Ugandan Shilling
21843
+
21844
+ * `UGS` - Ugandan Shilling (1966–1987)
21845
+
21846
+ * `UAH` - Ukrainian Hryvnia
21847
+
21848
+ * `UAK` - Ukrainian Karbovanets
21849
+
21850
+ * `AED` - United Arab Emirates Dirham
21851
+
21852
+ * `UYW` - Uruguayan Nominal Wage Index Unit
21853
+
21854
+ * `UYU` - Uruguayan Peso
21855
+
21856
+ * `UYP` - Uruguayan Peso (1975–1993)
21857
+
21858
+ * `UYI` - Uruguayan Peso (Indexed Units)
21859
+
21860
+ * `UZS` - Uzbekistani Som
21861
+
21862
+ * `VUV` - Vanuatu Vatu
21863
+
21864
+ * `VES` - Venezuelan Bolívar
21865
+
21866
+ * `VEB` - Venezuelan Bolívar (1871–2008)
21867
+
21868
+ * `VEF` - Venezuelan Bolívar (2008–2018)
21869
+
21870
+ * `VND` - Vietnamese Dong
21871
+
21872
+ * `VNN` - Vietnamese Dong (1978–1985)
21873
+
21874
+ * `CHE` - WIR Euro
21875
+
21876
+ * `CHW` - WIR Franc
21877
+
21878
+ * `XOF` - West African CFA Franc
21879
+
21880
+ * `YDD` - Yemeni Dinar
21881
+
21882
+ * `YER` - Yemeni Rial
21883
+
21884
+ * `YUN` - Yugoslavian Convertible Dinar (1990–1992)
21885
+
21886
+ * `YUD` - Yugoslavian Hard Dinar (1966–1990)
21887
+
21888
+ * `YUM` - Yugoslavian New Dinar (1994–2002)
21889
+
21890
+ * `YUR` - Yugoslavian Reformed Dinar (1992–1993)
21891
+
21892
+ * `ZWN` - ZWN
21893
+
21894
+ * `ZRN` - Zairean New Zaire (1993–1998)
21895
+
21896
+ * `ZRZ` - Zairean Zaire (1971–1993)
21897
+
21898
+ * `ZMW` - Zambian Kwacha
21899
+
21900
+ * `ZMK` - Zambian Kwacha (1968–2012)
21901
+
21902
+ * `ZWD` - Zimbabwean Dollar (1980–2008)
21903
+
21904
+ * `ZWR` - Zimbabwean Dollar (2008)
21905
+
21906
+ * `ZWL` - Zimbabwean Dollar (2009)
21907
+ exchange_rate:
21908
+ type: optional<string>
21909
+ docs: Exchange rate used if the line item is in a foreign currency.
21910
+ validation:
21911
+ pattern: ^-?\d{0,32}(?:\.\d{0,16})?$
21912
+ is_billable:
21913
+ type: optional<boolean>
21914
+ docs: Whether the expense line is billable to a client or project.
21915
+ tracking_categories:
21916
+ docs: >-
21917
+ The related tracking categories associated with the expense report
21918
+ (Department, Location, Class, Expense Category)
21919
+ type: list<string>
21920
+ employee:
21921
+ type: optional<ExpenseReportLineEmployee>
21922
+ docs: >-
21923
+ Identifier for the employee who submitted or is associated with the
21924
+ expense report
21925
+ project: optional<ExpenseReportLineProject>
21926
+ company:
21927
+ type: optional<ExpenseReportLineCompany>
21928
+ docs: The subsidiary that the expense report is created in
21929
+ contact: optional<ExpenseReportLineContact>
21930
+ quantity:
21931
+ type: optional<double>
21932
+ docs: Quantity for the expense line (e.g., miles driven, items purchased).
21933
+ unit_price:
21934
+ type: optional<double>
21935
+ docs: Price per unit for the expense line (if applicable).
21936
+ non_reimbursable:
21937
+ type: optional<boolean>
21938
+ docs: >-
21939
+ Whether the expense line is non-reimbursable (e.g., paid via company
21940
+ card).
21941
+ tax_amount:
21942
+ type: optional<double>
21943
+ docs: Tax amount applicable for the line item.
21944
+ inclusive_of_tax:
21945
+ type: optional<boolean>
21946
+ docs: Whether the amount is inclusive of tax.
21947
+ tax_rate: optional<ExpenseReportLineTaxRate>
21948
+ remote_was_deleted:
21949
+ type: optional<boolean>
21950
+ docs: >-
21951
+ Indicates whether or not this object has been deleted in the third
21952
+ party platform. Full coverage deletion detection is a premium add-on.
21953
+ Native deletion detection is offered for free with limited coverage.
21954
+ [Learn
21955
+ more](https://docs.merge.dev/integrations/hris/supported-features/).
21956
+ access: read-only
21957
+ remote_fields:
21958
+ type: optional<list<RemoteField>>
21959
+ access: read-only
21960
+ source:
21961
+ openapi: openapi/openapi.yml
21962
+ ExpenseReportLineRequestAccount:
21963
+ discriminated: false
21964
+ union:
21965
+ - type: string
21966
+ validation:
21967
+ format: uuid
21968
+ - Account
21969
+ source:
21970
+ openapi: openapi/openapi.yml
21971
+ inline: true
21972
+ ExpenseReportLineRequestEmployee:
21973
+ discriminated: false
21974
+ docs: >-
21975
+ Identifier for the employee who submitted or is associated with the
21976
+ expense report
21977
+ union:
21978
+ - type: string
21979
+ validation:
21980
+ format: uuid
21981
+ - Employee
21982
+ source:
21983
+ openapi: openapi/openapi.yml
21984
+ inline: true
21985
+ ExpenseReportLineRequestProject:
21986
+ discriminated: false
21987
+ union:
21988
+ - type: string
21989
+ validation:
21990
+ format: uuid
21991
+ - Project
21992
+ source:
21993
+ openapi: openapi/openapi.yml
21994
+ inline: true
21995
+ ExpenseReportLineRequestCompany:
21996
+ discriminated: false
21997
+ docs: The subsidiary that the expense report is created in
21998
+ union:
21999
+ - type: string
22000
+ validation:
22001
+ format: uuid
22002
+ - CompanyInfo
22003
+ source:
22004
+ openapi: openapi/openapi.yml
22005
+ inline: true
22006
+ ExpenseReportLineRequestContact:
22007
+ discriminated: false
22008
+ union:
22009
+ - type: string
22010
+ validation:
22011
+ format: uuid
22012
+ - Contact
22013
+ source:
22014
+ openapi: openapi/openapi.yml
22015
+ inline: true
22016
+ ExpenseReportLineRequestTaxRate:
22017
+ discriminated: false
22018
+ union:
22019
+ - type: string
22020
+ validation:
22021
+ format: uuid
22022
+ - TaxRate
22023
+ source:
22024
+ openapi: openapi/openapi.yml
22025
+ inline: true
22026
+ ExpenseReportLineRequest:
22027
+ docs: >-
22028
+ # The ExpenseReportLine Object
22029
+
22030
+ ### Description
22031
+
22032
+ The `ExpenseReportLine` object represents an individual line item within
22033
+ an expense report, containing details about
22034
+
22035
+ a specific expense such as amount, description, and associated metadata.
22036
+
22037
+
22038
+ ### Usage Example
22039
+
22040
+ Fetch from the `GET ExpenseReport` endpoint and expand the lines field to
22041
+ view all line items in the expense report.
22042
+ properties:
22043
+ remote_id:
22044
+ type: optional<string>
22045
+ docs: The third-party API ID of the matching object.
22046
+ account: optional<ExpenseReportLineRequestAccount>
22047
+ description:
22048
+ type: optional<string>
22049
+ docs: Description of the individual expense.
22050
+ validation:
22051
+ maxLength: 1024
22052
+ expense_date:
22053
+ type: optional<datetime>
22054
+ docs: The date the individual expense was incurred.
22055
+ amount:
22056
+ type: optional<double>
22057
+ docs: The amount of the expense for the line item.
22058
+ currency:
22059
+ type: optional<TransactionCurrencyEnum>
22060
+ docs: >-
22061
+ Currency of the expense line (if different from the report currency).
22062
+
22063
+
22064
+ * `XUA` - ADB Unit of Account
22065
+
22066
+ * `AFN` - Afghan Afghani
22067
+
22068
+ * `AFA` - Afghan Afghani (1927–2002)
22069
+
22070
+ * `ALL` - Albanian Lek
22071
+
22072
+ * `ALK` - Albanian Lek (1946–1965)
22073
+
22074
+ * `DZD` - Algerian Dinar
22075
+
22076
+ * `ADP` - Andorran Peseta
22077
+
22078
+ * `AOA` - Angolan Kwanza
22079
+
22080
+ * `AOK` - Angolan Kwanza (1977–1991)
22081
+
22082
+ * `AON` - Angolan New Kwanza (1990–2000)
22083
+
22084
+ * `AOR` - Angolan Readjusted Kwanza (1995–1999)
22085
+
22086
+ * `ARA` - Argentine Austral
22087
+
22088
+ * `ARS` - Argentine Peso
22089
+
22090
+ * `ARM` - Argentine Peso (1881–1970)
22091
+
22092
+ * `ARP` - Argentine Peso (1983–1985)
22093
+
22094
+ * `ARL` - Argentine Peso Ley (1970–1983)
22095
+
22096
+ * `AMD` - Armenian Dram
22097
+
22098
+ * `AWG` - Aruban Florin
22099
+
22100
+ * `AUD` - Australian Dollar
22101
+
22102
+ * `ATS` - Austrian Schilling
22103
+
22104
+ * `AZN` - Azerbaijani Manat
22105
+
22106
+ * `AZM` - Azerbaijani Manat (1993–2006)
22107
+
22108
+ * `BSD` - Bahamian Dollar
22109
+
22110
+ * `BHD` - Bahraini Dinar
22111
+
22112
+ * `BDT` - Bangladeshi Taka
22113
+
22114
+ * `BBD` - Barbadian Dollar
22115
+
22116
+ * `BYN` - Belarusian Ruble
22117
+
22118
+ * `BYB` - Belarusian Ruble (1994–1999)
22119
+
22120
+ * `BYR` - Belarusian Ruble (2000–2016)
22121
+
22122
+ * `BEF` - Belgian Franc
22123
+
22124
+ * `BEC` - Belgian Franc (convertible)
22125
+
22126
+ * `BEL` - Belgian Franc (financial)
22127
+
22128
+ * `BZD` - Belize Dollar
22129
+
22130
+ * `BMD` - Bermudan Dollar
22131
+
22132
+ * `BTN` - Bhutanese Ngultrum
22133
+
22134
+ * `BOB` - Bolivian Boliviano
22135
+
22136
+ * `BOL` - Bolivian Boliviano (1863–1963)
22137
+
22138
+ * `BOV` - Bolivian Mvdol
22139
+
22140
+ * `BOP` - Bolivian Peso
22141
+
22142
+ * `BAM` - Bosnia-Herzegovina Convertible Mark
22143
+
22144
+ * `BAD` - Bosnia-Herzegovina Dinar (1992–1994)
22145
+
22146
+ * `BAN` - Bosnia-Herzegovina New Dinar (1994–1997)
22147
+
22148
+ * `BWP` - Botswanan Pula
22149
+
22150
+ * `BRC` - Brazilian Cruzado (1986–1989)
22151
+
22152
+ * `BRZ` - Brazilian Cruzeiro (1942–1967)
22153
+
22154
+ * `BRE` - Brazilian Cruzeiro (1990–1993)
22155
+
22156
+ * `BRR` - Brazilian Cruzeiro (1993–1994)
22157
+
22158
+ * `BRN` - Brazilian New Cruzado (1989–1990)
22159
+
22160
+ * `BRB` - Brazilian New Cruzeiro (1967–1986)
22161
+
22162
+ * `BRL` - Brazilian Real
22163
+
22164
+ * `GBP` - British Pound
22165
+
22166
+ * `BND` - Brunei Dollar
22167
+
22168
+ * `BGL` - Bulgarian Hard Lev
22169
+
22170
+ * `BGN` - Bulgarian Lev
22171
+
22172
+ * `BGO` - Bulgarian Lev (1879–1952)
22173
+
22174
+ * `BGM` - Bulgarian Socialist Lev
22175
+
22176
+ * `BUK` - Burmese Kyat
22177
+
22178
+ * `BIF` - Burundian Franc
22179
+
22180
+ * `XPF` - CFP Franc
22181
+
22182
+ * `KHR` - Cambodian Riel
22183
+
22184
+ * `CAD` - Canadian Dollar
22185
+
22186
+ * `CVE` - Cape Verdean Escudo
22187
+
22188
+ * `KYD` - Cayman Islands Dollar
22189
+
22190
+ * `XAF` - Central African CFA Franc
22191
+
22192
+ * `CLE` - Chilean Escudo
22193
+
22194
+ * `CLP` - Chilean Peso
22195
+
22196
+ * `CLF` - Chilean Unit of Account (UF)
22197
+
22198
+ * `CNX` - Chinese People’s Bank Dollar
22199
+
22200
+ * `CNY` - Chinese Yuan
22201
+
22202
+ * `CNH` - Chinese Yuan (offshore)
22203
+
22204
+ * `COP` - Colombian Peso
22205
+
22206
+ * `COU` - Colombian Real Value Unit
22207
+
22208
+ * `KMF` - Comorian Franc
22209
+
22210
+ * `CDF` - Congolese Franc
22211
+
22212
+ * `CRC` - Costa Rican Colón
22213
+
22214
+ * `HRD` - Croatian Dinar
22215
+
22216
+ * `HRK` - Croatian Kuna
22217
+
22218
+ * `CUC` - Cuban Convertible Peso
22219
+
22220
+ * `CUP` - Cuban Peso
22221
+
22222
+ * `CYP` - Cypriot Pound
22223
+
22224
+ * `CZK` - Czech Koruna
22225
+
22226
+ * `CSK` - Czechoslovak Hard Koruna
22227
+
22228
+ * `DKK` - Danish Krone
22229
+
22230
+ * `DJF` - Djiboutian Franc
22231
+
22232
+ * `DOP` - Dominican Peso
22233
+
22234
+ * `NLG` - Dutch Guilder
22235
+
22236
+ * `XCD` - East Caribbean Dollar
22237
+
22238
+ * `DDM` - East German Mark
22239
+
22240
+ * `ECS` - Ecuadorian Sucre
22241
+
22242
+ * `ECV` - Ecuadorian Unit of Constant Value
22243
+
22244
+ * `EGP` - Egyptian Pound
22245
+
22246
+ * `GQE` - Equatorial Guinean Ekwele
22247
+
22248
+ * `ERN` - Eritrean Nakfa
22249
+
22250
+ * `EEK` - Estonian Kroon
22251
+
22252
+ * `ETB` - Ethiopian Birr
22253
+
22254
+ * `EUR` - Euro
22255
+
22256
+ * `XBA` - European Composite Unit
22257
+
22258
+ * `XEU` - European Currency Unit
22259
+
22260
+ * `XBB` - European Monetary Unit
22261
+
22262
+ * `XBC` - European Unit of Account (XBC)
22263
+
22264
+ * `XBD` - European Unit of Account (XBD)
22265
+
22266
+ * `FKP` - Falkland Islands Pound
22267
+
22268
+ * `FJD` - Fijian Dollar
22269
+
22270
+ * `FIM` - Finnish Markka
22271
+
22272
+ * `FRF` - French Franc
22273
+
22274
+ * `XFO` - French Gold Franc
22275
+
22276
+ * `XFU` - French UIC-Franc
22277
+
22278
+ * `GMD` - Gambian Dalasi
22279
+
22280
+ * `GEK` - Georgian Kupon Larit
22281
+
22282
+ * `GEL` - Georgian Lari
22283
+
22284
+ * `DEM` - German Mark
22285
+
22286
+ * `GHS` - Ghanaian Cedi
22287
+
22288
+ * `GHC` - Ghanaian Cedi (1979–2007)
22289
+
22290
+ * `GIP` - Gibraltar Pound
22291
+
22292
+ * `XAU` - Gold
22293
+
22294
+ * `GRD` - Greek Drachma
22295
+
22296
+ * `GTQ` - Guatemalan Quetzal
22297
+
22298
+ * `GWP` - Guinea-Bissau Peso
22299
+
22300
+ * `GNF` - Guinean Franc
22301
+
22302
+ * `GNS` - Guinean Syli
22303
+
22304
+ * `GYD` - Guyanaese Dollar
22305
+
22306
+ * `HTG` - Haitian Gourde
22307
+
22308
+ * `HNL` - Honduran Lempira
22309
+
22310
+ * `HKD` - Hong Kong Dollar
22311
+
22312
+ * `HUF` - Hungarian Forint
22313
+
22314
+ * `IMP` - IMP
22315
+
22316
+ * `ISK` - Icelandic Króna
22317
+
22318
+ * `ISJ` - Icelandic Króna (1918–1981)
22319
+
22320
+ * `INR` - Indian Rupee
22321
+
22322
+ * `IDR` - Indonesian Rupiah
22323
+
22324
+ * `IRR` - Iranian Rial
22325
+
22326
+ * `IQD` - Iraqi Dinar
22327
+
22328
+ * `IEP` - Irish Pound
22329
+
22330
+ * `ILS` - Israeli New Shekel
22331
+
22332
+ * `ILP` - Israeli Pound
22333
+
22334
+ * `ILR` - Israeli Shekel (1980–1985)
22335
+
22336
+ * `ITL` - Italian Lira
22337
+
22338
+ * `JMD` - Jamaican Dollar
22339
+
22340
+ * `JPY` - Japanese Yen
22341
+
22342
+ * `JOD` - Jordanian Dinar
22343
+
22344
+ * `KZT` - Kazakhstani Tenge
22345
+
22346
+ * `KES` - Kenyan Shilling
22347
+
22348
+ * `KWD` - Kuwaiti Dinar
22349
+
22350
+ * `KGS` - Kyrgystani Som
22351
+
22352
+ * `LAK` - Laotian Kip
22353
+
22354
+ * `LVL` - Latvian Lats
22355
+
22356
+ * `LVR` - Latvian Ruble
22357
+
22358
+ * `LBP` - Lebanese Pound
22359
+
22360
+ * `LSL` - Lesotho Loti
22361
+
22362
+ * `LRD` - Liberian Dollar
22363
+
22364
+ * `LYD` - Libyan Dinar
22365
+
22366
+ * `LTL` - Lithuanian Litas
22367
+
22368
+ * `LTT` - Lithuanian Talonas
22369
+
22370
+ * `LUL` - Luxembourg Financial Franc
22371
+
22372
+ * `LUC` - Luxembourgian Convertible Franc
22373
+
22374
+ * `LUF` - Luxembourgian Franc
22375
+
22376
+ * `MOP` - Macanese Pataca
22377
+
22378
+ * `MKD` - Macedonian Denar
22379
+
22380
+ * `MKN` - Macedonian Denar (1992–1993)
22381
+
22382
+ * `MGA` - Malagasy Ariary
22383
+
22384
+ * `MGF` - Malagasy Franc
22385
+
22386
+ * `MWK` - Malawian Kwacha
22387
+
22388
+ * `MYR` - Malaysian Ringgit
22389
+
22390
+ * `MVR` - Maldivian Rufiyaa
22391
+
22392
+ * `MVP` - Maldivian Rupee (1947–1981)
22393
+
22394
+ * `MLF` - Malian Franc
22395
+
22396
+ * `MTL` - Maltese Lira
22397
+
22398
+ * `MTP` - Maltese Pound
22399
+
22400
+ * `MRU` - Mauritanian Ouguiya
22401
+
22402
+ * `MRO` - Mauritanian Ouguiya (1973–2017)
22403
+
22404
+ * `MUR` - Mauritian Rupee
22405
+
22406
+ * `MXV` - Mexican Investment Unit
22407
+
22408
+ * `MXN` - Mexican Peso
22409
+
22410
+ * `MXP` - Mexican Silver Peso (1861–1992)
22411
+
22412
+ * `MDC` - Moldovan Cupon
22413
+
22414
+ * `MDL` - Moldovan Leu
22415
+
22416
+ * `MCF` - Monegasque Franc
22417
+
22418
+ * `MNT` - Mongolian Tugrik
22419
+
22420
+ * `MAD` - Moroccan Dirham
22421
+
22422
+ * `MAF` - Moroccan Franc
22423
+
22424
+ * `MZE` - Mozambican Escudo
22425
+
22426
+ * `MZN` - Mozambican Metical
22427
+
22428
+ * `MZM` - Mozambican Metical (1980–2006)
22429
+
22430
+ * `MMK` - Myanmar Kyat
22431
+
22432
+ * `NAD` - Namibian Dollar
22433
+
22434
+ * `NPR` - Nepalese Rupee
22435
+
22436
+ * `ANG` - Netherlands Antillean Guilder
22437
+
22438
+ * `TWD` - New Taiwan Dollar
22439
+
22440
+ * `NZD` - New Zealand Dollar
22441
+
22442
+ * `NIO` - Nicaraguan Córdoba
22443
+
22444
+ * `NIC` - Nicaraguan Córdoba (1988–1991)
22445
+
22446
+ * `NGN` - Nigerian Naira
22447
+
22448
+ * `KPW` - North Korean Won
22449
+
22450
+ * `NOK` - Norwegian Krone
22451
+
22452
+ * `OMR` - Omani Rial
22453
+
22454
+ * `PKR` - Pakistani Rupee
22455
+
22456
+ * `XPD` - Palladium
22457
+
22458
+ * `PAB` - Panamanian Balboa
22459
+
22460
+ * `PGK` - Papua New Guinean Kina
22461
+
22462
+ * `PYG` - Paraguayan Guarani
22463
+
22464
+ * `PEI` - Peruvian Inti
22465
+
22466
+ * `PEN` - Peruvian Sol
22467
+
22468
+ * `PES` - Peruvian Sol (1863–1965)
22469
+
22470
+ * `PHP` - Philippine Peso
22471
+
22472
+ * `XPT` - Platinum
22473
+
22474
+ * `PLN` - Polish Zloty
22475
+
22476
+ * `PLZ` - Polish Zloty (1950–1995)
22477
+
22478
+ * `PTE` - Portuguese Escudo
22479
+
22480
+ * `GWE` - Portuguese Guinea Escudo
22481
+
22482
+ * `QAR` - Qatari Rial
22483
+
22484
+ * `XRE` - RINET Funds
22485
+
22486
+ * `RHD` - Rhodesian Dollar
22487
+
22488
+ * `RON` - Romanian Leu
22489
+
22490
+ * `ROL` - Romanian Leu (1952–2006)
22491
+
22492
+ * `RUB` - Russian Ruble
22493
+
22494
+ * `RUR` - Russian Ruble (1991–1998)
22495
+
22496
+ * `RWF` - Rwandan Franc
22497
+
22498
+ * `SVC` - Salvadoran Colón
22499
+
22500
+ * `WST` - Samoan Tala
22501
+
22502
+ * `SAR` - Saudi Riyal
22503
+
22504
+ * `RSD` - Serbian Dinar
22505
+
22506
+ * `CSD` - Serbian Dinar (2002–2006)
22507
+
22508
+ * `SCR` - Seychellois Rupee
22509
+
22510
+ * `SLL` - Sierra Leonean Leone
22511
+
22512
+ * `XAG` - Silver
22513
+
22514
+ * `SGD` - Singapore Dollar
22515
+
22516
+ * `SKK` - Slovak Koruna
22517
+
22518
+ * `SIT` - Slovenian Tolar
22519
+
22520
+ * `SBD` - Solomon Islands Dollar
22521
+
22522
+ * `SOS` - Somali Shilling
22523
+
22524
+ * `ZAR` - South African Rand
22525
+
22526
+ * `ZAL` - South African Rand (financial)
22527
+
22528
+ * `KRH` - South Korean Hwan (1953–1962)
22529
+
22530
+ * `KRW` - South Korean Won
22531
+
22532
+ * `KRO` - South Korean Won (1945–1953)
22533
+
22534
+ * `SSP` - South Sudanese Pound
22535
+
22536
+ * `SUR` - Soviet Rouble
22537
+
22538
+ * `ESP` - Spanish Peseta
22539
+
22540
+ * `ESA` - Spanish Peseta (A account)
22541
+
22542
+ * `ESB` - Spanish Peseta (convertible account)
22543
+
22544
+ * `XDR` - Special Drawing Rights
22545
+
22546
+ * `LKR` - Sri Lankan Rupee
22547
+
22548
+ * `SHP` - St. Helena Pound
22549
+
22550
+ * `XSU` - Sucre
22551
+
22552
+ * `SDD` - Sudanese Dinar (1992–2007)
22553
+
22554
+ * `SDG` - Sudanese Pound
22555
+
22556
+ * `SDP` - Sudanese Pound (1957–1998)
22557
+
22558
+ * `SRD` - Surinamese Dollar
22559
+
22560
+ * `SRG` - Surinamese Guilder
22561
+
22562
+ * `SZL` - Swazi Lilangeni
22563
+
22564
+ * `SEK` - Swedish Krona
22565
+
22566
+ * `CHF` - Swiss Franc
22567
+
22568
+ * `SYP` - Syrian Pound
22569
+
22570
+ * `STN` - São Tomé & Príncipe Dobra
22571
+
22572
+ * `STD` - São Tomé & Príncipe Dobra (1977–2017)
22573
+
22574
+ * `TVD` - TVD
22575
+
22576
+ * `TJR` - Tajikistani Ruble
22577
+
22578
+ * `TJS` - Tajikistani Somoni
22579
+
22580
+ * `TZS` - Tanzanian Shilling
22581
+
22582
+ * `XTS` - Testing Currency Code
22583
+
22584
+ * `THB` - Thai Baht
22585
+
22586
+ * `XXX` - The codes assigned for transactions where no currency is
22587
+ involved
22588
+
22589
+ * `TPE` - Timorese Escudo
22590
+
22591
+ * `TOP` - Tongan Paʻanga
22592
+
22593
+ * `TTD` - Trinidad & Tobago Dollar
22594
+
22595
+ * `TND` - Tunisian Dinar
22596
+
22597
+ * `TRY` - Turkish Lira
22598
+
22599
+ * `TRL` - Turkish Lira (1922–2005)
22600
+
22601
+ * `TMT` - Turkmenistani Manat
22602
+
22603
+ * `TMM` - Turkmenistani Manat (1993–2009)
22604
+
22605
+ * `USD` - US Dollar
22606
+
22607
+ * `USN` - US Dollar (Next day)
22608
+
22609
+ * `USS` - US Dollar (Same day)
22610
+
22611
+ * `UGX` - Ugandan Shilling
22612
+
22613
+ * `UGS` - Ugandan Shilling (1966–1987)
22614
+
22615
+ * `UAH` - Ukrainian Hryvnia
22616
+
22617
+ * `UAK` - Ukrainian Karbovanets
22618
+
22619
+ * `AED` - United Arab Emirates Dirham
22620
+
22621
+ * `UYW` - Uruguayan Nominal Wage Index Unit
22622
+
22623
+ * `UYU` - Uruguayan Peso
22624
+
22625
+ * `UYP` - Uruguayan Peso (1975–1993)
22626
+
22627
+ * `UYI` - Uruguayan Peso (Indexed Units)
22628
+
22629
+ * `UZS` - Uzbekistani Som
22630
+
22631
+ * `VUV` - Vanuatu Vatu
22632
+
22633
+ * `VES` - Venezuelan Bolívar
22634
+
22635
+ * `VEB` - Venezuelan Bolívar (1871–2008)
22636
+
22637
+ * `VEF` - Venezuelan Bolívar (2008–2018)
22638
+
22639
+ * `VND` - Vietnamese Dong
22640
+
22641
+ * `VNN` - Vietnamese Dong (1978–1985)
22642
+
22643
+ * `CHE` - WIR Euro
22644
+
22645
+ * `CHW` - WIR Franc
22646
+
22647
+ * `XOF` - West African CFA Franc
22648
+
22649
+ * `YDD` - Yemeni Dinar
22650
+
22651
+ * `YER` - Yemeni Rial
22652
+
22653
+ * `YUN` - Yugoslavian Convertible Dinar (1990–1992)
22654
+
22655
+ * `YUD` - Yugoslavian Hard Dinar (1966–1990)
22656
+
22657
+ * `YUM` - Yugoslavian New Dinar (1994–2002)
22658
+
22659
+ * `YUR` - Yugoslavian Reformed Dinar (1992–1993)
22660
+
22661
+ * `ZWN` - ZWN
22662
+
22663
+ * `ZRN` - Zairean New Zaire (1993–1998)
22664
+
22665
+ * `ZRZ` - Zairean Zaire (1971–1993)
22666
+
22667
+ * `ZMW` - Zambian Kwacha
22668
+
22669
+ * `ZMK` - Zambian Kwacha (1968–2012)
22670
+
22671
+ * `ZWD` - Zimbabwean Dollar (1980–2008)
22672
+
22673
+ * `ZWR` - Zimbabwean Dollar (2008)
22674
+
22675
+ * `ZWL` - Zimbabwean Dollar (2009)
22676
+ exchange_rate:
22677
+ type: optional<string>
22678
+ docs: Exchange rate used if the line item is in a foreign currency.
22679
+ validation:
22680
+ pattern: ^-?\d{0,32}(?:\.\d{0,16})?$
22681
+ is_billable:
22682
+ type: optional<boolean>
22683
+ docs: Whether the expense line is billable to a client or project.
22684
+ tracking_categories:
22685
+ docs: >-
22686
+ The related tracking categories associated with the expense report
22687
+ (Department, Location, Class, Expense Category)
22688
+ type: list<string>
22689
+ employee:
22690
+ type: optional<ExpenseReportLineRequestEmployee>
22691
+ docs: >-
22692
+ Identifier for the employee who submitted or is associated with the
22693
+ expense report
22694
+ project: optional<ExpenseReportLineRequestProject>
22695
+ company:
22696
+ type: optional<ExpenseReportLineRequestCompany>
22697
+ docs: The subsidiary that the expense report is created in
22698
+ contact: optional<ExpenseReportLineRequestContact>
22699
+ quantity:
22700
+ type: optional<double>
22701
+ docs: Quantity for the expense line (e.g., miles driven, items purchased).
22702
+ unit_price:
22703
+ type: optional<double>
22704
+ docs: Price per unit for the expense line (if applicable).
22705
+ non_reimbursable:
22706
+ type: optional<boolean>
22707
+ docs: >-
22708
+ Whether the expense line is non-reimbursable (e.g., paid via company
22709
+ card).
22710
+ tax_amount:
22711
+ type: optional<double>
22712
+ docs: Tax amount applicable for the line item.
22713
+ inclusive_of_tax:
22714
+ type: optional<boolean>
22715
+ docs: Whether the amount is inclusive of tax.
22716
+ tax_rate: optional<ExpenseReportLineRequestTaxRate>
22717
+ integration_params:
22718
+ type: optional<map<string, unknown>>
22719
+ access: write-only
22720
+ linked_account_params:
22721
+ type: optional<map<string, unknown>>
22722
+ access: write-only
22723
+ remote_fields:
22724
+ type: optional<list<RemoteFieldRequest>>
22725
+ access: write-only
22726
+ source:
22727
+ openapi: openapi/openapi.yml
22728
+ ExpenseReportRequestEmployee:
22729
+ discriminated: false
22730
+ docs: >-
22731
+ Identifier for the employee who submitted or is associated with the
22732
+ expense report
22733
+ union:
22734
+ - type: string
22735
+ validation:
22736
+ format: uuid
22737
+ - Employee
22738
+ source:
22739
+ openapi: openapi/openapi.yml
22740
+ inline: true
22741
+ ExpenseReportRequestAccountingPeriod:
22742
+ discriminated: false
22743
+ docs: The accounting period the report was posted in
22744
+ union:
22745
+ - type: string
22746
+ validation:
22747
+ format: uuid
22748
+ - AccountingPeriod
22749
+ source:
22750
+ openapi: openapi/openapi.yml
22751
+ inline: true
22752
+ ExpenseReportRequestCompany:
22753
+ discriminated: false
22754
+ docs: The subsidiary that the expense report is created in
22755
+ union:
22756
+ - type: string
22757
+ validation:
22758
+ format: uuid
22759
+ - CompanyInfo
22760
+ source:
22761
+ openapi: openapi/openapi.yml
22762
+ inline: true
22763
+ ExpenseReportRequest:
22764
+ docs: >-
22765
+ # The ExpenseReport Object
22766
+
22767
+ ### Description
22768
+
22769
+ The `ExpenseReport` object represents a collection of expenses submitted
22770
+ for review and reimbursement.
22771
+
22772
+ It includes details about the submitter, status, amounts, and associated
22773
+ metadata.
22774
+
22775
+
22776
+ ### Usage Example
22777
+
22778
+ Fetch from the `GET ExpenseReport` endpoint to view details of expense
22779
+ reports and their line items.
22780
+ properties:
22781
+ report_date:
22782
+ type: optional<datetime>
22783
+ docs: The date of the expense report.
22784
+ report_identifier:
22785
+ type: optional<string>
22786
+ docs: Human-readable expense report identifier.
22787
+ validation:
22788
+ maxLength: 1024
22789
+ employee:
22790
+ type: optional<ExpenseReportRequestEmployee>
22791
+ docs: >-
22792
+ Identifier for the employee who submitted or is associated with the
22793
+ expense report
22794
+ status:
22795
+ type: optional<ExpenseReportStatusEnum>
22796
+ docs: >-
22797
+ Overall status of the expense report. One of DRAFT, SUBMITTED,
22798
+ APPROVED, REJECTED
22799
+
22800
+
22801
+ * `DRAFT` - DRAFT
22802
+
22803
+ * `SUBMITTED` - SUBMITTED
22804
+
22805
+ * `APPROVED` - APPROVED
22806
+
22807
+ * `REJECTED` - REJECTED
22808
+ total_amount:
22809
+ type: optional<double>
22810
+ docs: Total amount of the expense report
22811
+ currency:
22812
+ type: optional<TransactionCurrencyEnum>
22813
+ docs: >-
22814
+ Currency code for the expense report
22815
+
22816
+
22817
+ * `XUA` - ADB Unit of Account
22818
+
22819
+ * `AFN` - Afghan Afghani
22820
+
22821
+ * `AFA` - Afghan Afghani (1927–2002)
22822
+
22823
+ * `ALL` - Albanian Lek
22824
+
22825
+ * `ALK` - Albanian Lek (1946–1965)
22826
+
22827
+ * `DZD` - Algerian Dinar
22828
+
22829
+ * `ADP` - Andorran Peseta
22830
+
22831
+ * `AOA` - Angolan Kwanza
22832
+
22833
+ * `AOK` - Angolan Kwanza (1977–1991)
22834
+
22835
+ * `AON` - Angolan New Kwanza (1990–2000)
22836
+
22837
+ * `AOR` - Angolan Readjusted Kwanza (1995–1999)
22838
+
22839
+ * `ARA` - Argentine Austral
22840
+
22841
+ * `ARS` - Argentine Peso
22842
+
22843
+ * `ARM` - Argentine Peso (1881–1970)
22844
+
22845
+ * `ARP` - Argentine Peso (1983–1985)
22846
+
22847
+ * `ARL` - Argentine Peso Ley (1970–1983)
22848
+
22849
+ * `AMD` - Armenian Dram
22850
+
22851
+ * `AWG` - Aruban Florin
22852
+
22853
+ * `AUD` - Australian Dollar
22854
+
22855
+ * `ATS` - Austrian Schilling
22856
+
22857
+ * `AZN` - Azerbaijani Manat
22858
+
22859
+ * `AZM` - Azerbaijani Manat (1993–2006)
22860
+
22861
+ * `BSD` - Bahamian Dollar
22862
+
22863
+ * `BHD` - Bahraini Dinar
22864
+
22865
+ * `BDT` - Bangladeshi Taka
22866
+
22867
+ * `BBD` - Barbadian Dollar
22868
+
22869
+ * `BYN` - Belarusian Ruble
22870
+
22871
+ * `BYB` - Belarusian Ruble (1994–1999)
22872
+
22873
+ * `BYR` - Belarusian Ruble (2000–2016)
22874
+
22875
+ * `BEF` - Belgian Franc
22876
+
22877
+ * `BEC` - Belgian Franc (convertible)
22878
+
22879
+ * `BEL` - Belgian Franc (financial)
22880
+
22881
+ * `BZD` - Belize Dollar
22882
+
22883
+ * `BMD` - Bermudan Dollar
22884
+
22885
+ * `BTN` - Bhutanese Ngultrum
22886
+
22887
+ * `BOB` - Bolivian Boliviano
22888
+
22889
+ * `BOL` - Bolivian Boliviano (1863–1963)
22890
+
22891
+ * `BOV` - Bolivian Mvdol
22892
+
22893
+ * `BOP` - Bolivian Peso
22894
+
22895
+ * `BAM` - Bosnia-Herzegovina Convertible Mark
22896
+
22897
+ * `BAD` - Bosnia-Herzegovina Dinar (1992–1994)
22898
+
22899
+ * `BAN` - Bosnia-Herzegovina New Dinar (1994–1997)
22900
+
22901
+ * `BWP` - Botswanan Pula
22902
+
22903
+ * `BRC` - Brazilian Cruzado (1986–1989)
22904
+
22905
+ * `BRZ` - Brazilian Cruzeiro (1942–1967)
22906
+
22907
+ * `BRE` - Brazilian Cruzeiro (1990–1993)
22908
+
22909
+ * `BRR` - Brazilian Cruzeiro (1993–1994)
22910
+
22911
+ * `BRN` - Brazilian New Cruzado (1989–1990)
22912
+
22913
+ * `BRB` - Brazilian New Cruzeiro (1967–1986)
22914
+
22915
+ * `BRL` - Brazilian Real
22916
+
22917
+ * `GBP` - British Pound
22918
+
22919
+ * `BND` - Brunei Dollar
22920
+
22921
+ * `BGL` - Bulgarian Hard Lev
22922
+
22923
+ * `BGN` - Bulgarian Lev
22924
+
22925
+ * `BGO` - Bulgarian Lev (1879–1952)
22926
+
22927
+ * `BGM` - Bulgarian Socialist Lev
22928
+
22929
+ * `BUK` - Burmese Kyat
22930
+
22931
+ * `BIF` - Burundian Franc
22932
+
22933
+ * `XPF` - CFP Franc
22934
+
22935
+ * `KHR` - Cambodian Riel
22936
+
22937
+ * `CAD` - Canadian Dollar
22938
+
22939
+ * `CVE` - Cape Verdean Escudo
22940
+
22941
+ * `KYD` - Cayman Islands Dollar
22942
+
22943
+ * `XAF` - Central African CFA Franc
22944
+
22945
+ * `CLE` - Chilean Escudo
22946
+
22947
+ * `CLP` - Chilean Peso
22948
+
22949
+ * `CLF` - Chilean Unit of Account (UF)
22950
+
22951
+ * `CNX` - Chinese People’s Bank Dollar
22952
+
22953
+ * `CNY` - Chinese Yuan
22954
+
22955
+ * `CNH` - Chinese Yuan (offshore)
22956
+
22957
+ * `COP` - Colombian Peso
22958
+
22959
+ * `COU` - Colombian Real Value Unit
22960
+
22961
+ * `KMF` - Comorian Franc
22962
+
22963
+ * `CDF` - Congolese Franc
22964
+
22965
+ * `CRC` - Costa Rican Colón
22966
+
22967
+ * `HRD` - Croatian Dinar
22968
+
22969
+ * `HRK` - Croatian Kuna
22970
+
22971
+ * `CUC` - Cuban Convertible Peso
22972
+
22973
+ * `CUP` - Cuban Peso
22974
+
22975
+ * `CYP` - Cypriot Pound
22976
+
22977
+ * `CZK` - Czech Koruna
22978
+
22979
+ * `CSK` - Czechoslovak Hard Koruna
22980
+
22981
+ * `DKK` - Danish Krone
22982
+
22983
+ * `DJF` - Djiboutian Franc
22984
+
22985
+ * `DOP` - Dominican Peso
22986
+
22987
+ * `NLG` - Dutch Guilder
22988
+
22989
+ * `XCD` - East Caribbean Dollar
22990
+
22991
+ * `DDM` - East German Mark
22992
+
22993
+ * `ECS` - Ecuadorian Sucre
22994
+
22995
+ * `ECV` - Ecuadorian Unit of Constant Value
22996
+
22997
+ * `EGP` - Egyptian Pound
22998
+
22999
+ * `GQE` - Equatorial Guinean Ekwele
23000
+
23001
+ * `ERN` - Eritrean Nakfa
23002
+
23003
+ * `EEK` - Estonian Kroon
23004
+
23005
+ * `ETB` - Ethiopian Birr
23006
+
23007
+ * `EUR` - Euro
23008
+
23009
+ * `XBA` - European Composite Unit
23010
+
23011
+ * `XEU` - European Currency Unit
23012
+
23013
+ * `XBB` - European Monetary Unit
23014
+
23015
+ * `XBC` - European Unit of Account (XBC)
23016
+
23017
+ * `XBD` - European Unit of Account (XBD)
23018
+
23019
+ * `FKP` - Falkland Islands Pound
23020
+
23021
+ * `FJD` - Fijian Dollar
23022
+
23023
+ * `FIM` - Finnish Markka
23024
+
23025
+ * `FRF` - French Franc
23026
+
23027
+ * `XFO` - French Gold Franc
23028
+
23029
+ * `XFU` - French UIC-Franc
23030
+
23031
+ * `GMD` - Gambian Dalasi
23032
+
23033
+ * `GEK` - Georgian Kupon Larit
23034
+
23035
+ * `GEL` - Georgian Lari
23036
+
23037
+ * `DEM` - German Mark
23038
+
23039
+ * `GHS` - Ghanaian Cedi
23040
+
23041
+ * `GHC` - Ghanaian Cedi (1979–2007)
23042
+
23043
+ * `GIP` - Gibraltar Pound
23044
+
23045
+ * `XAU` - Gold
23046
+
23047
+ * `GRD` - Greek Drachma
23048
+
23049
+ * `GTQ` - Guatemalan Quetzal
23050
+
23051
+ * `GWP` - Guinea-Bissau Peso
23052
+
23053
+ * `GNF` - Guinean Franc
23054
+
23055
+ * `GNS` - Guinean Syli
23056
+
23057
+ * `GYD` - Guyanaese Dollar
23058
+
23059
+ * `HTG` - Haitian Gourde
23060
+
23061
+ * `HNL` - Honduran Lempira
23062
+
23063
+ * `HKD` - Hong Kong Dollar
23064
+
23065
+ * `HUF` - Hungarian Forint
23066
+
23067
+ * `IMP` - IMP
23068
+
23069
+ * `ISK` - Icelandic Króna
23070
+
23071
+ * `ISJ` - Icelandic Króna (1918–1981)
23072
+
23073
+ * `INR` - Indian Rupee
23074
+
23075
+ * `IDR` - Indonesian Rupiah
23076
+
23077
+ * `IRR` - Iranian Rial
23078
+
23079
+ * `IQD` - Iraqi Dinar
23080
+
23081
+ * `IEP` - Irish Pound
23082
+
23083
+ * `ILS` - Israeli New Shekel
23084
+
23085
+ * `ILP` - Israeli Pound
23086
+
23087
+ * `ILR` - Israeli Shekel (1980–1985)
23088
+
23089
+ * `ITL` - Italian Lira
23090
+
23091
+ * `JMD` - Jamaican Dollar
23092
+
23093
+ * `JPY` - Japanese Yen
23094
+
23095
+ * `JOD` - Jordanian Dinar
23096
+
23097
+ * `KZT` - Kazakhstani Tenge
23098
+
23099
+ * `KES` - Kenyan Shilling
23100
+
23101
+ * `KWD` - Kuwaiti Dinar
23102
+
23103
+ * `KGS` - Kyrgystani Som
23104
+
23105
+ * `LAK` - Laotian Kip
23106
+
23107
+ * `LVL` - Latvian Lats
23108
+
23109
+ * `LVR` - Latvian Ruble
23110
+
23111
+ * `LBP` - Lebanese Pound
23112
+
23113
+ * `LSL` - Lesotho Loti
23114
+
23115
+ * `LRD` - Liberian Dollar
23116
+
23117
+ * `LYD` - Libyan Dinar
23118
+
23119
+ * `LTL` - Lithuanian Litas
23120
+
23121
+ * `LTT` - Lithuanian Talonas
23122
+
23123
+ * `LUL` - Luxembourg Financial Franc
23124
+
23125
+ * `LUC` - Luxembourgian Convertible Franc
23126
+
23127
+ * `LUF` - Luxembourgian Franc
23128
+
23129
+ * `MOP` - Macanese Pataca
23130
+
23131
+ * `MKD` - Macedonian Denar
23132
+
23133
+ * `MKN` - Macedonian Denar (1992–1993)
23134
+
23135
+ * `MGA` - Malagasy Ariary
23136
+
23137
+ * `MGF` - Malagasy Franc
23138
+
23139
+ * `MWK` - Malawian Kwacha
23140
+
23141
+ * `MYR` - Malaysian Ringgit
23142
+
23143
+ * `MVR` - Maldivian Rufiyaa
23144
+
23145
+ * `MVP` - Maldivian Rupee (1947–1981)
23146
+
23147
+ * `MLF` - Malian Franc
23148
+
23149
+ * `MTL` - Maltese Lira
23150
+
23151
+ * `MTP` - Maltese Pound
23152
+
23153
+ * `MRU` - Mauritanian Ouguiya
23154
+
23155
+ * `MRO` - Mauritanian Ouguiya (1973–2017)
23156
+
23157
+ * `MUR` - Mauritian Rupee
23158
+
23159
+ * `MXV` - Mexican Investment Unit
23160
+
23161
+ * `MXN` - Mexican Peso
23162
+
23163
+ * `MXP` - Mexican Silver Peso (1861–1992)
23164
+
23165
+ * `MDC` - Moldovan Cupon
23166
+
23167
+ * `MDL` - Moldovan Leu
23168
+
23169
+ * `MCF` - Monegasque Franc
23170
+
23171
+ * `MNT` - Mongolian Tugrik
23172
+
23173
+ * `MAD` - Moroccan Dirham
23174
+
23175
+ * `MAF` - Moroccan Franc
23176
+
23177
+ * `MZE` - Mozambican Escudo
23178
+
23179
+ * `MZN` - Mozambican Metical
23180
+
23181
+ * `MZM` - Mozambican Metical (1980–2006)
23182
+
23183
+ * `MMK` - Myanmar Kyat
23184
+
23185
+ * `NAD` - Namibian Dollar
23186
+
23187
+ * `NPR` - Nepalese Rupee
23188
+
23189
+ * `ANG` - Netherlands Antillean Guilder
23190
+
23191
+ * `TWD` - New Taiwan Dollar
23192
+
23193
+ * `NZD` - New Zealand Dollar
23194
+
23195
+ * `NIO` - Nicaraguan Córdoba
23196
+
23197
+ * `NIC` - Nicaraguan Córdoba (1988–1991)
23198
+
23199
+ * `NGN` - Nigerian Naira
23200
+
23201
+ * `KPW` - North Korean Won
23202
+
23203
+ * `NOK` - Norwegian Krone
23204
+
23205
+ * `OMR` - Omani Rial
23206
+
23207
+ * `PKR` - Pakistani Rupee
23208
+
23209
+ * `XPD` - Palladium
23210
+
23211
+ * `PAB` - Panamanian Balboa
23212
+
23213
+ * `PGK` - Papua New Guinean Kina
23214
+
23215
+ * `PYG` - Paraguayan Guarani
23216
+
23217
+ * `PEI` - Peruvian Inti
23218
+
23219
+ * `PEN` - Peruvian Sol
23220
+
23221
+ * `PES` - Peruvian Sol (1863–1965)
23222
+
23223
+ * `PHP` - Philippine Peso
23224
+
23225
+ * `XPT` - Platinum
23226
+
23227
+ * `PLN` - Polish Zloty
23228
+
23229
+ * `PLZ` - Polish Zloty (1950–1995)
23230
+
23231
+ * `PTE` - Portuguese Escudo
23232
+
23233
+ * `GWE` - Portuguese Guinea Escudo
23234
+
23235
+ * `QAR` - Qatari Rial
23236
+
23237
+ * `XRE` - RINET Funds
23238
+
23239
+ * `RHD` - Rhodesian Dollar
23240
+
23241
+ * `RON` - Romanian Leu
23242
+
23243
+ * `ROL` - Romanian Leu (1952–2006)
23244
+
23245
+ * `RUB` - Russian Ruble
23246
+
23247
+ * `RUR` - Russian Ruble (1991–1998)
23248
+
23249
+ * `RWF` - Rwandan Franc
23250
+
23251
+ * `SVC` - Salvadoran Colón
23252
+
23253
+ * `WST` - Samoan Tala
23254
+
23255
+ * `SAR` - Saudi Riyal
23256
+
23257
+ * `RSD` - Serbian Dinar
23258
+
23259
+ * `CSD` - Serbian Dinar (2002–2006)
23260
+
23261
+ * `SCR` - Seychellois Rupee
23262
+
23263
+ * `SLL` - Sierra Leonean Leone
23264
+
23265
+ * `XAG` - Silver
23266
+
23267
+ * `SGD` - Singapore Dollar
23268
+
23269
+ * `SKK` - Slovak Koruna
23270
+
23271
+ * `SIT` - Slovenian Tolar
23272
+
23273
+ * `SBD` - Solomon Islands Dollar
23274
+
23275
+ * `SOS` - Somali Shilling
23276
+
23277
+ * `ZAR` - South African Rand
23278
+
23279
+ * `ZAL` - South African Rand (financial)
23280
+
23281
+ * `KRH` - South Korean Hwan (1953–1962)
23282
+
23283
+ * `KRW` - South Korean Won
23284
+
23285
+ * `KRO` - South Korean Won (1945–1953)
23286
+
23287
+ * `SSP` - South Sudanese Pound
23288
+
23289
+ * `SUR` - Soviet Rouble
23290
+
23291
+ * `ESP` - Spanish Peseta
23292
+
23293
+ * `ESA` - Spanish Peseta (A account)
23294
+
23295
+ * `ESB` - Spanish Peseta (convertible account)
23296
+
23297
+ * `XDR` - Special Drawing Rights
23298
+
23299
+ * `LKR` - Sri Lankan Rupee
23300
+
23301
+ * `SHP` - St. Helena Pound
23302
+
23303
+ * `XSU` - Sucre
23304
+
23305
+ * `SDD` - Sudanese Dinar (1992–2007)
23306
+
23307
+ * `SDG` - Sudanese Pound
23308
+
23309
+ * `SDP` - Sudanese Pound (1957–1998)
23310
+
23311
+ * `SRD` - Surinamese Dollar
23312
+
23313
+ * `SRG` - Surinamese Guilder
23314
+
23315
+ * `SZL` - Swazi Lilangeni
23316
+
23317
+ * `SEK` - Swedish Krona
23318
+
23319
+ * `CHF` - Swiss Franc
23320
+
23321
+ * `SYP` - Syrian Pound
23322
+
23323
+ * `STN` - São Tomé & Príncipe Dobra
23324
+
23325
+ * `STD` - São Tomé & Príncipe Dobra (1977–2017)
23326
+
23327
+ * `TVD` - TVD
23328
+
23329
+ * `TJR` - Tajikistani Ruble
23330
+
23331
+ * `TJS` - Tajikistani Somoni
23332
+
23333
+ * `TZS` - Tanzanian Shilling
23334
+
23335
+ * `XTS` - Testing Currency Code
23336
+
23337
+ * `THB` - Thai Baht
23338
+
23339
+ * `XXX` - The codes assigned for transactions where no currency is
23340
+ involved
23341
+
23342
+ * `TPE` - Timorese Escudo
23343
+
23344
+ * `TOP` - Tongan Paʻanga
23345
+
23346
+ * `TTD` - Trinidad & Tobago Dollar
23347
+
23348
+ * `TND` - Tunisian Dinar
23349
+
23350
+ * `TRY` - Turkish Lira
23351
+
23352
+ * `TRL` - Turkish Lira (1922–2005)
23353
+
23354
+ * `TMT` - Turkmenistani Manat
23355
+
23356
+ * `TMM` - Turkmenistani Manat (1993–2009)
23357
+
23358
+ * `USD` - US Dollar
23359
+
23360
+ * `USN` - US Dollar (Next day)
23361
+
23362
+ * `USS` - US Dollar (Same day)
23363
+
23364
+ * `UGX` - Ugandan Shilling
23365
+
23366
+ * `UGS` - Ugandan Shilling (1966–1987)
23367
+
23368
+ * `UAH` - Ukrainian Hryvnia
23369
+
23370
+ * `UAK` - Ukrainian Karbovanets
23371
+
23372
+ * `AED` - United Arab Emirates Dirham
23373
+
23374
+ * `UYW` - Uruguayan Nominal Wage Index Unit
23375
+
23376
+ * `UYU` - Uruguayan Peso
23377
+
23378
+ * `UYP` - Uruguayan Peso (1975–1993)
23379
+
23380
+ * `UYI` - Uruguayan Peso (Indexed Units)
23381
+
23382
+ * `UZS` - Uzbekistani Som
23383
+
23384
+ * `VUV` - Vanuatu Vatu
23385
+
23386
+ * `VES` - Venezuelan Bolívar
23387
+
23388
+ * `VEB` - Venezuelan Bolívar (1871–2008)
23389
+
23390
+ * `VEF` - Venezuelan Bolívar (2008–2018)
23391
+
23392
+ * `VND` - Vietnamese Dong
23393
+
23394
+ * `VNN` - Vietnamese Dong (1978–1985)
23395
+
23396
+ * `CHE` - WIR Euro
23397
+
23398
+ * `CHW` - WIR Franc
23399
+
23400
+ * `XOF` - West African CFA Franc
23401
+
23402
+ * `YDD` - Yemeni Dinar
23403
+
23404
+ * `YER` - Yemeni Rial
23405
+
23406
+ * `YUN` - Yugoslavian Convertible Dinar (1990–1992)
23407
+
23408
+ * `YUD` - Yugoslavian Hard Dinar (1966–1990)
23409
+
23410
+ * `YUM` - Yugoslavian New Dinar (1994–2002)
23411
+
23412
+ * `YUR` - Yugoslavian Reformed Dinar (1992–1993)
23413
+
23414
+ * `ZWN` - ZWN
23415
+
23416
+ * `ZRN` - Zairean New Zaire (1993–1998)
23417
+
23418
+ * `ZRZ` - Zairean Zaire (1971–1993)
23419
+
23420
+ * `ZMW` - Zambian Kwacha
23421
+
23422
+ * `ZMK` - Zambian Kwacha (1968–2012)
23423
+
23424
+ * `ZWD` - Zimbabwean Dollar (1980–2008)
23425
+
23426
+ * `ZWR` - Zimbabwean Dollar (2008)
23427
+
23428
+ * `ZWL` - Zimbabwean Dollar (2009)
23429
+ description:
23430
+ type: optional<string>
23431
+ docs: A brief description or purpose for the expense report
23432
+ validation:
23433
+ maxLength: 1024
23434
+ accounting_period:
23435
+ type: optional<ExpenseReportRequestAccountingPeriod>
23436
+ docs: The accounting period the report was posted in
23437
+ company:
23438
+ type: optional<ExpenseReportRequestCompany>
23439
+ docs: The subsidiary that the expense report is created in
23440
+ tracking_categories:
23441
+ docs: The related tracking categories associated with the expense report
23442
+ type: list<string>
23443
+ integration_params:
23444
+ type: optional<map<string, unknown>>
23445
+ access: write-only
23446
+ linked_account_params:
23447
+ type: optional<map<string, unknown>>
23448
+ access: write-only
23449
+ remote_fields:
23450
+ type: optional<list<RemoteFieldRequest>>
23451
+ access: write-only
23452
+ source:
23453
+ openapi: openapi/openapi.yml
23454
+ ExpenseReportResponse:
23455
+ properties:
23456
+ model: ExpenseReport
23457
+ warnings: list<WarningValidationProblem>
23458
+ errors: list<ErrorValidationProblem>
23459
+ logs: optional<list<DebugModeLog>>
23460
+ source:
23461
+ openapi: openapi/openapi.yml
23462
+ ExpenseReportStatusEnum:
23463
+ enum:
23464
+ - DRAFT
23465
+ - SUBMITTED
23466
+ - APPROVED
23467
+ - REJECTED
23468
+ docs: |-
23469
+ * `DRAFT` - DRAFT
23470
+ * `SUBMITTED` - SUBMITTED
23471
+ * `APPROVED` - APPROVED
23472
+ * `REJECTED` - REJECTED
23473
+ source:
23474
+ openapi: openapi/openapi.yml
20426
23475
  ExpenseRequestAccount:
20427
23476
  discriminated: false
20428
23477
  docs: The expense's payment account.
@@ -21838,6 +24887,7 @@ types:
21838
24887
  CreditNote: optional<list<ExternalTargetFieldApi>>
21839
24888
  Item: optional<list<ExternalTargetFieldApi>>
21840
24889
  PurchaseOrder: optional<list<ExternalTargetFieldApi>>
24890
+ ExpenseReport: optional<list<ExternalTargetFieldApi>>
21841
24891
  TrackingCategory: optional<list<ExternalTargetFieldApi>>
21842
24892
  JournalEntry: optional<list<ExternalTargetFieldApi>>
21843
24893
  TaxRate: optional<list<ExternalTargetFieldApi>>
@@ -21935,6 +24985,7 @@ types:
21935
24985
  CreditNote: optional<list<FieldMappingApiInstance>>
21936
24986
  Item: optional<list<FieldMappingApiInstance>>
21937
24987
  PurchaseOrder: optional<list<FieldMappingApiInstance>>
24988
+ ExpenseReport: optional<list<FieldMappingApiInstance>>
21938
24989
  TrackingCategory: optional<list<FieldMappingApiInstance>>
21939
24990
  JournalEntry: optional<list<FieldMappingApiInstance>>
21940
24991
  TaxRate: optional<list<FieldMappingApiInstance>>
@@ -32019,6 +35070,21 @@ types:
32019
35070
  source:
32020
35071
  openapi: openapi/openapi.yml
32021
35072
  inline: true
35073
+ ItemType:
35074
+ discriminated: false
35075
+ docs: |-
35076
+ The item's type.
35077
+
35078
+ * `INVENTORY` - INVENTORY
35079
+ * `NON_INVENTORY` - NON_INVENTORY
35080
+ * `SERVICE` - SERVICE
35081
+ * `UNKNOWN` - UNKNOWN
35082
+ union:
35083
+ - Type2BbEnum
35084
+ - string
35085
+ source:
35086
+ openapi: openapi/openapi.yml
35087
+ inline: true
32022
35088
  ItemPurchaseAccount:
32023
35089
  discriminated: false
32024
35090
  docs: References the default account used to record a purchase of the item.
@@ -32109,6 +35175,15 @@ types:
32109
35175
 
32110
35176
  * `ACTIVE` - ACTIVE
32111
35177
  * `ARCHIVED` - ARCHIVED
35178
+ type:
35179
+ type: optional<ItemType>
35180
+ docs: |-
35181
+ The item's type.
35182
+
35183
+ * `INVENTORY` - INVENTORY
35184
+ * `NON_INVENTORY` - NON_INVENTORY
35185
+ * `SERVICE` - SERVICE
35186
+ * `UNKNOWN` - UNKNOWN
32112
35187
  unit_price:
32113
35188
  type: optional<double>
32114
35189
  docs: The item's unit price.
@@ -38096,6 +41171,20 @@ types:
38096
41171
  results: optional<list<Expense>>
38097
41172
  source:
38098
41173
  openapi: openapi/openapi.yml
41174
+ PaginatedExpenseReportLineList:
41175
+ properties:
41176
+ next: optional<string>
41177
+ previous: optional<string>
41178
+ results: optional<list<ExpenseReportLine>>
41179
+ source:
41180
+ openapi: openapi/openapi.yml
41181
+ PaginatedExpenseReportList:
41182
+ properties:
41183
+ next: optional<string>
41184
+ previous: optional<string>
41185
+ results: optional<list<ExpenseReport>>
41186
+ source:
41187
+ openapi: openapi/openapi.yml
38099
41188
  PaginatedGeneralLedgerTransactionList:
38100
41189
  properties:
38101
41190
  next: optional<string>