Unified-python-sdk 0.23.7__tar.gz → 0.23.8__tar.gz

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 (1003) hide show
  1. Unified-python-sdk-0.23.8/PKG-INFO +991 -0
  2. Unified-python-sdk-0.23.8/setup.py +55 -0
  3. Unified-python-sdk-0.23.8/src/Unified_python_sdk.egg-info/PKG-INFO +991 -0
  4. Unified-python-sdk-0.23.8/src/unified_to/__init__.py +4 -0
  5. Unified-python-sdk-0.23.8/src/unified_to/_hooks/__init__.py +4 -0
  6. Unified-python-sdk-0.23.8/src/unified_to/_hooks/sdkhooks.py +55 -0
  7. Unified-python-sdk-0.23.8/src/unified_to/_hooks/types.py +74 -0
  8. Unified-python-sdk-0.23.8/src/unified_to/account.py +356 -0
  9. Unified-python-sdk-0.23.8/src/unified_to/accounting.py +2163 -0
  10. Unified-python-sdk-0.23.8/src/unified_to/activity.py +356 -0
  11. Unified-python-sdk-0.23.8/src/unified_to/apicall.py +128 -0
  12. Unified-python-sdk-0.23.8/src/unified_to/application.py +356 -0
  13. Unified-python-sdk-0.23.8/src/unified_to/applicationstatus.py +73 -0
  14. Unified-python-sdk-0.23.8/src/unified_to/ats.py +2558 -0
  15. Unified-python-sdk-0.23.8/src/unified_to/auth.py +130 -0
  16. Unified-python-sdk-0.23.8/src/unified_to/call.py +73 -0
  17. Unified-python-sdk-0.23.8/src/unified_to/candidate.py +356 -0
  18. Unified-python-sdk-0.23.8/src/unified_to/channel.py +129 -0
  19. Unified-python-sdk-0.23.8/src/unified_to/collection.py +356 -0
  20. Unified-python-sdk-0.23.8/src/unified_to/commerce.py +1373 -0
  21. Unified-python-sdk-0.23.8/src/unified_to/company.py +863 -0
  22. Unified-python-sdk-0.23.8/src/unified_to/connection.py +355 -0
  23. Unified-python-sdk-0.23.8/src/unified_to/contact.py +1034 -0
  24. Unified-python-sdk-0.23.8/src/unified_to/crm.py +2051 -0
  25. Unified-python-sdk-0.23.8/src/unified_to/customer.py +356 -0
  26. Unified-python-sdk-0.23.8/src/unified_to/deal.py +356 -0
  27. Unified-python-sdk-0.23.8/src/unified_to/document.py +356 -0
  28. Unified-python-sdk-0.23.8/src/unified_to/employee.py +356 -0
  29. Unified-python-sdk-0.23.8/src/unified_to/enrich.py +129 -0
  30. Unified-python-sdk-0.23.8/src/unified_to/event.py +356 -0
  31. Unified-python-sdk-0.23.8/src/unified_to/file.py +356 -0
  32. Unified-python-sdk-0.23.8/src/unified_to/genai.py +131 -0
  33. Unified-python-sdk-0.23.8/src/unified_to/group.py +356 -0
  34. Unified-python-sdk-0.23.8/src/unified_to/hris.py +1258 -0
  35. Unified-python-sdk-0.23.8/src/unified_to/integration.py +188 -0
  36. Unified-python-sdk-0.23.8/src/unified_to/interview.py +356 -0
  37. Unified-python-sdk-0.23.8/src/unified_to/inventory.py +356 -0
  38. Unified-python-sdk-0.23.8/src/unified_to/invoice.py +356 -0
  39. Unified-python-sdk-0.23.8/src/unified_to/issue.py +73 -0
  40. Unified-python-sdk-0.23.8/src/unified_to/item.py +356 -0
  41. Unified-python-sdk-0.23.8/src/unified_to/job.py +356 -0
  42. Unified-python-sdk-0.23.8/src/unified_to/journal.py +356 -0
  43. Unified-python-sdk-0.23.8/src/unified_to/kms.py +695 -0
  44. Unified-python-sdk-0.23.8/src/unified_to/lead.py +356 -0
  45. Unified-python-sdk-0.23.8/src/unified_to/link.py +356 -0
  46. Unified-python-sdk-0.23.8/src/unified_to/list.py +356 -0
  47. Unified-python-sdk-0.23.8/src/unified_to/location.py +356 -0
  48. Unified-python-sdk-0.23.8/src/unified_to/login.py +73 -0
  49. Unified-python-sdk-0.23.8/src/unified_to/martech.py +695 -0
  50. Unified-python-sdk-0.23.8/src/unified_to/member.py +356 -0
  51. Unified-python-sdk-0.23.8/src/unified_to/message.py +356 -0
  52. Unified-python-sdk-0.23.8/src/unified_to/messaging.py +468 -0
  53. Unified-python-sdk-0.23.8/src/unified_to/model.py +73 -0
  54. Unified-python-sdk-0.23.8/src/unified_to/models/__init__.py +4 -0
  55. Unified-python-sdk-0.23.8/src/unified_to/models/errors/__init__.py +5 -0
  56. Unified-python-sdk-0.23.8/src/unified_to/models/errors/sdkerror.py +24 -0
  57. Unified-python-sdk-0.23.8/src/unified_to/models/operations/__init__.py +288 -0
  58. Unified-python-sdk-0.23.8/src/unified_to/models/operations/createaccountingaccount.py +31 -0
  59. Unified-python-sdk-0.23.8/src/unified_to/models/operations/createaccountingcontact.py +30 -0
  60. Unified-python-sdk-0.23.8/src/unified_to/models/operations/createaccountinginvoice.py +30 -0
  61. Unified-python-sdk-0.23.8/src/unified_to/models/operations/createaccountingjournal.py +30 -0
  62. Unified-python-sdk-0.23.8/src/unified_to/models/operations/createaccountingtaxrate.py +30 -0
  63. Unified-python-sdk-0.23.8/src/unified_to/models/operations/createaccountingtransaction.py +30 -0
  64. Unified-python-sdk-0.23.8/src/unified_to/models/operations/createatsactivity.py +30 -0
  65. Unified-python-sdk-0.23.8/src/unified_to/models/operations/createatsapplication.py +30 -0
  66. Unified-python-sdk-0.23.8/src/unified_to/models/operations/createatscandidate.py +30 -0
  67. Unified-python-sdk-0.23.8/src/unified_to/models/operations/createatsdocument.py +30 -0
  68. Unified-python-sdk-0.23.8/src/unified_to/models/operations/createatsinterview.py +30 -0
  69. Unified-python-sdk-0.23.8/src/unified_to/models/operations/createatsjob.py +30 -0
  70. Unified-python-sdk-0.23.8/src/unified_to/models/operations/createatsscorecard.py +30 -0
  71. Unified-python-sdk-0.23.8/src/unified_to/models/operations/createcommercecollection.py +31 -0
  72. Unified-python-sdk-0.23.8/src/unified_to/models/operations/createcommerceinventory.py +30 -0
  73. Unified-python-sdk-0.23.8/src/unified_to/models/operations/createcommerceitem.py +30 -0
  74. Unified-python-sdk-0.23.8/src/unified_to/models/operations/createcommercelocation.py +30 -0
  75. Unified-python-sdk-0.23.8/src/unified_to/models/operations/createcrmcompany.py +31 -0
  76. Unified-python-sdk-0.23.8/src/unified_to/models/operations/createcrmcontact.py +31 -0
  77. Unified-python-sdk-0.23.8/src/unified_to/models/operations/createcrmdeal.py +31 -0
  78. Unified-python-sdk-0.23.8/src/unified_to/models/operations/createcrmevent.py +31 -0
  79. Unified-python-sdk-0.23.8/src/unified_to/models/operations/createcrmlead.py +30 -0
  80. Unified-python-sdk-0.23.8/src/unified_to/models/operations/createcrmpipeline.py +30 -0
  81. Unified-python-sdk-0.23.8/src/unified_to/models/operations/creategenaiprompt.py +30 -0
  82. Unified-python-sdk-0.23.8/src/unified_to/models/operations/createhriscompany.py +30 -0
  83. Unified-python-sdk-0.23.8/src/unified_to/models/operations/createhrisemployee.py +30 -0
  84. Unified-python-sdk-0.23.8/src/unified_to/models/operations/createhrisgroup.py +30 -0
  85. Unified-python-sdk-0.23.8/src/unified_to/models/operations/createkmspage.py +30 -0
  86. Unified-python-sdk-0.23.8/src/unified_to/models/operations/createkmsspace.py +30 -0
  87. Unified-python-sdk-0.23.8/src/unified_to/models/operations/createmartechlist.py +31 -0
  88. Unified-python-sdk-0.23.8/src/unified_to/models/operations/createmartechmember.py +31 -0
  89. Unified-python-sdk-0.23.8/src/unified_to/models/operations/createmessagingmessage.py +30 -0
  90. Unified-python-sdk-0.23.8/src/unified_to/models/operations/createpassthrough.py +31 -0
  91. Unified-python-sdk-0.23.8/src/unified_to/models/operations/createpaymentlink.py +30 -0
  92. Unified-python-sdk-0.23.8/src/unified_to/models/operations/createpaymentpayment.py +30 -0
  93. Unified-python-sdk-0.23.8/src/unified_to/models/operations/createstoragefile.py +30 -0
  94. Unified-python-sdk-0.23.8/src/unified_to/models/operations/createtaskproject.py +30 -0
  95. Unified-python-sdk-0.23.8/src/unified_to/models/operations/createtasktask.py +30 -0
  96. Unified-python-sdk-0.23.8/src/unified_to/models/operations/createticketingcustomer.py +30 -0
  97. Unified-python-sdk-0.23.8/src/unified_to/models/operations/createticketingnote.py +30 -0
  98. Unified-python-sdk-0.23.8/src/unified_to/models/operations/createticketingticket.py +30 -0
  99. Unified-python-sdk-0.23.8/src/unified_to/models/operations/createuccontact.py +31 -0
  100. Unified-python-sdk-0.23.8/src/unified_to/models/operations/createunifiedconnection.py +21 -0
  101. Unified-python-sdk-0.23.8/src/unified_to/models/operations/createunifiedwebhook.py +30 -0
  102. Unified-python-sdk-0.23.8/src/unified_to/models/operations/getaccountingaccount.py +33 -0
  103. Unified-python-sdk-0.23.8/src/unified_to/models/operations/getaccountingcontact.py +33 -0
  104. Unified-python-sdk-0.23.8/src/unified_to/models/operations/getaccountinginvoice.py +33 -0
  105. Unified-python-sdk-0.23.8/src/unified_to/models/operations/getaccountingjournal.py +33 -0
  106. Unified-python-sdk-0.23.8/src/unified_to/models/operations/getaccountingorganization.py +33 -0
  107. Unified-python-sdk-0.23.8/src/unified_to/models/operations/getaccountingtaxrate.py +33 -0
  108. Unified-python-sdk-0.23.8/src/unified_to/models/operations/getaccountingtransaction.py +33 -0
  109. Unified-python-sdk-0.23.8/src/unified_to/models/operations/getatsactivity.py +33 -0
  110. Unified-python-sdk-0.23.8/src/unified_to/models/operations/getatsapplication.py +33 -0
  111. Unified-python-sdk-0.23.8/src/unified_to/models/operations/getatscandidate.py +33 -0
  112. Unified-python-sdk-0.23.8/src/unified_to/models/operations/getatscompany.py +33 -0
  113. Unified-python-sdk-0.23.8/src/unified_to/models/operations/getatsdocument.py +33 -0
  114. Unified-python-sdk-0.23.8/src/unified_to/models/operations/getatsinterview.py +33 -0
  115. Unified-python-sdk-0.23.8/src/unified_to/models/operations/getatsjob.py +33 -0
  116. Unified-python-sdk-0.23.8/src/unified_to/models/operations/getatsscorecard.py +33 -0
  117. Unified-python-sdk-0.23.8/src/unified_to/models/operations/getcommercecollection.py +33 -0
  118. Unified-python-sdk-0.23.8/src/unified_to/models/operations/getcommerceinventory.py +33 -0
  119. Unified-python-sdk-0.23.8/src/unified_to/models/operations/getcommerceitem.py +33 -0
  120. Unified-python-sdk-0.23.8/src/unified_to/models/operations/getcommercelocation.py +33 -0
  121. Unified-python-sdk-0.23.8/src/unified_to/models/operations/getcrmcompany.py +33 -0
  122. Unified-python-sdk-0.23.8/src/unified_to/models/operations/getcrmcontact.py +33 -0
  123. Unified-python-sdk-0.23.8/src/unified_to/models/operations/getcrmdeal.py +33 -0
  124. Unified-python-sdk-0.23.8/src/unified_to/models/operations/getcrmevent.py +33 -0
  125. Unified-python-sdk-0.23.8/src/unified_to/models/operations/getcrmlead.py +33 -0
  126. Unified-python-sdk-0.23.8/src/unified_to/models/operations/getcrmpipeline.py +33 -0
  127. Unified-python-sdk-0.23.8/src/unified_to/models/operations/gethriscompany.py +33 -0
  128. Unified-python-sdk-0.23.8/src/unified_to/models/operations/gethrisemployee.py +33 -0
  129. Unified-python-sdk-0.23.8/src/unified_to/models/operations/gethrisgroup.py +33 -0
  130. Unified-python-sdk-0.23.8/src/unified_to/models/operations/gethrispayslip.py +33 -0
  131. Unified-python-sdk-0.23.8/src/unified_to/models/operations/gethristimeoff.py +33 -0
  132. Unified-python-sdk-0.23.8/src/unified_to/models/operations/getkmspage.py +33 -0
  133. Unified-python-sdk-0.23.8/src/unified_to/models/operations/getkmsspace.py +33 -0
  134. Unified-python-sdk-0.23.8/src/unified_to/models/operations/getmartechlist.py +33 -0
  135. Unified-python-sdk-0.23.8/src/unified_to/models/operations/getmartechmember.py +33 -0
  136. Unified-python-sdk-0.23.8/src/unified_to/models/operations/getmessagingchannel.py +33 -0
  137. Unified-python-sdk-0.23.8/src/unified_to/models/operations/getmessagingmessage.py +33 -0
  138. Unified-python-sdk-0.23.8/src/unified_to/models/operations/getpaymentlink.py +33 -0
  139. Unified-python-sdk-0.23.8/src/unified_to/models/operations/getpaymentpayment.py +33 -0
  140. Unified-python-sdk-0.23.8/src/unified_to/models/operations/getpaymentpayout.py +33 -0
  141. Unified-python-sdk-0.23.8/src/unified_to/models/operations/getpaymentrefund.py +33 -0
  142. Unified-python-sdk-0.23.8/src/unified_to/models/operations/getstoragefile.py +33 -0
  143. Unified-python-sdk-0.23.8/src/unified_to/models/operations/gettaskproject.py +33 -0
  144. Unified-python-sdk-0.23.8/src/unified_to/models/operations/gettasktask.py +33 -0
  145. Unified-python-sdk-0.23.8/src/unified_to/models/operations/getticketingcustomer.py +33 -0
  146. Unified-python-sdk-0.23.8/src/unified_to/models/operations/getticketingnote.py +33 -0
  147. Unified-python-sdk-0.23.8/src/unified_to/models/operations/getticketingticket.py +33 -0
  148. Unified-python-sdk-0.23.8/src/unified_to/models/operations/getuccontact.py +33 -0
  149. Unified-python-sdk-0.23.8/src/unified_to/models/operations/getunifiedapicall.py +29 -0
  150. Unified-python-sdk-0.23.8/src/unified_to/models/operations/getunifiedconnection.py +29 -0
  151. Unified-python-sdk-0.23.8/src/unified_to/models/operations/getunifiedintegrationauth.py +144 -0
  152. Unified-python-sdk-0.23.8/src/unified_to/models/operations/getunifiedintegrationlogin.py +38 -0
  153. Unified-python-sdk-0.23.8/src/unified_to/models/operations/getunifiedwebhook.py +29 -0
  154. Unified-python-sdk-0.23.8/src/unified_to/models/operations/listaccountingaccounts.py +38 -0
  155. Unified-python-sdk-0.23.8/src/unified_to/models/operations/listaccountingcontacts.py +39 -0
  156. Unified-python-sdk-0.23.8/src/unified_to/models/operations/listaccountinginvoices.py +39 -0
  157. Unified-python-sdk-0.23.8/src/unified_to/models/operations/listaccountingjournals.py +38 -0
  158. Unified-python-sdk-0.23.8/src/unified_to/models/operations/listaccountingorganizations.py +38 -0
  159. Unified-python-sdk-0.23.8/src/unified_to/models/operations/listaccountingtaxrates.py +38 -0
  160. Unified-python-sdk-0.23.8/src/unified_to/models/operations/listaccountingtransactions.py +39 -0
  161. Unified-python-sdk-0.23.8/src/unified_to/models/operations/listatsactivities.py +44 -0
  162. Unified-python-sdk-0.23.8/src/unified_to/models/operations/listatsapplications.py +40 -0
  163. Unified-python-sdk-0.23.8/src/unified_to/models/operations/listatsapplicationstatuses.py +38 -0
  164. Unified-python-sdk-0.23.8/src/unified_to/models/operations/listatscandidates.py +39 -0
  165. Unified-python-sdk-0.23.8/src/unified_to/models/operations/listatscompanies.py +38 -0
  166. Unified-python-sdk-0.23.8/src/unified_to/models/operations/listatsdocuments.py +40 -0
  167. Unified-python-sdk-0.23.8/src/unified_to/models/operations/listatsinterviews.py +39 -0
  168. Unified-python-sdk-0.23.8/src/unified_to/models/operations/listatsjobs.py +39 -0
  169. Unified-python-sdk-0.23.8/src/unified_to/models/operations/listatsscorecards.py +42 -0
  170. Unified-python-sdk-0.23.8/src/unified_to/models/operations/listcommercecollections.py +40 -0
  171. Unified-python-sdk-0.23.8/src/unified_to/models/operations/listcommerceinventories.py +40 -0
  172. Unified-python-sdk-0.23.8/src/unified_to/models/operations/listcommerceitems.py +39 -0
  173. Unified-python-sdk-0.23.8/src/unified_to/models/operations/listcommercelocations.py +38 -0
  174. Unified-python-sdk-0.23.8/src/unified_to/models/operations/listcrmcompanies.py +41 -0
  175. Unified-python-sdk-0.23.8/src/unified_to/models/operations/listcrmcontacts.py +41 -0
  176. Unified-python-sdk-0.23.8/src/unified_to/models/operations/listcrmdeals.py +41 -0
  177. Unified-python-sdk-0.23.8/src/unified_to/models/operations/listcrmevents.py +43 -0
  178. Unified-python-sdk-0.23.8/src/unified_to/models/operations/listcrmleads.py +41 -0
  179. Unified-python-sdk-0.23.8/src/unified_to/models/operations/listcrmpipelines.py +38 -0
  180. Unified-python-sdk-0.23.8/src/unified_to/models/operations/listenrichcompanies.py +33 -0
  181. Unified-python-sdk-0.23.8/src/unified_to/models/operations/listenrichpeople.py +39 -0
  182. Unified-python-sdk-0.23.8/src/unified_to/models/operations/listgenaimodels.py +38 -0
  183. Unified-python-sdk-0.23.8/src/unified_to/models/operations/listhriscompanies.py +38 -0
  184. Unified-python-sdk-0.23.8/src/unified_to/models/operations/listhrisemployees.py +39 -0
  185. Unified-python-sdk-0.23.8/src/unified_to/models/operations/listhrisgroups.py +39 -0
  186. Unified-python-sdk-0.23.8/src/unified_to/models/operations/listhrispayslips.py +39 -0
  187. Unified-python-sdk-0.23.8/src/unified_to/models/operations/listhristimeoffs.py +39 -0
  188. Unified-python-sdk-0.23.8/src/unified_to/models/operations/listkmspages.py +40 -0
  189. Unified-python-sdk-0.23.8/src/unified_to/models/operations/listkmsspaces.py +39 -0
  190. Unified-python-sdk-0.23.8/src/unified_to/models/operations/listmartechlists.py +38 -0
  191. Unified-python-sdk-0.23.8/src/unified_to/models/operations/listmartechmembers.py +39 -0
  192. Unified-python-sdk-0.23.8/src/unified_to/models/operations/listmessagingchannels.py +39 -0
  193. Unified-python-sdk-0.23.8/src/unified_to/models/operations/listmessagingmessages.py +40 -0
  194. Unified-python-sdk-0.23.8/src/unified_to/models/operations/listpassthroughs.py +29 -0
  195. Unified-python-sdk-0.23.8/src/unified_to/models/operations/listpaymentlinks.py +40 -0
  196. Unified-python-sdk-0.23.8/src/unified_to/models/operations/listpaymentpayments.py +40 -0
  197. Unified-python-sdk-0.23.8/src/unified_to/models/operations/listpaymentpayouts.py +38 -0
  198. Unified-python-sdk-0.23.8/src/unified_to/models/operations/listpaymentrefunds.py +39 -0
  199. Unified-python-sdk-0.23.8/src/unified_to/models/operations/liststoragefiles.py +39 -0
  200. Unified-python-sdk-0.23.8/src/unified_to/models/operations/listtaskprojects.py +39 -0
  201. Unified-python-sdk-0.23.8/src/unified_to/models/operations/listtasktasks.py +40 -0
  202. Unified-python-sdk-0.23.8/src/unified_to/models/operations/listticketingcustomers.py +38 -0
  203. Unified-python-sdk-0.23.8/src/unified_to/models/operations/listticketingnotes.py +40 -0
  204. Unified-python-sdk-0.23.8/src/unified_to/models/operations/listticketingtickets.py +40 -0
  205. Unified-python-sdk-0.23.8/src/unified_to/models/operations/listuccalls.py +40 -0
  206. Unified-python-sdk-0.23.8/src/unified_to/models/operations/listuccontacts.py +39 -0
  207. Unified-python-sdk-0.23.8/src/unified_to/models/operations/listunifiedapicalls.py +43 -0
  208. Unified-python-sdk-0.23.8/src/unified_to/models/operations/listunifiedconnections.py +58 -0
  209. Unified-python-sdk-0.23.8/src/unified_to/models/operations/listunifiedintegrations.py +61 -0
  210. Unified-python-sdk-0.23.8/src/unified_to/models/operations/listunifiedintegrationworkspaces.py +59 -0
  211. Unified-python-sdk-0.23.8/src/unified_to/models/operations/listunifiedissues.py +32 -0
  212. Unified-python-sdk-0.23.8/src/unified_to/models/operations/listunifiedwebhooks.py +35 -0
  213. Unified-python-sdk-0.23.8/src/unified_to/models/operations/patchaccountingaccount.py +33 -0
  214. Unified-python-sdk-0.23.8/src/unified_to/models/operations/patchaccountingcontact.py +32 -0
  215. Unified-python-sdk-0.23.8/src/unified_to/models/operations/patchaccountinginvoice.py +32 -0
  216. Unified-python-sdk-0.23.8/src/unified_to/models/operations/patchaccountingjournal.py +32 -0
  217. Unified-python-sdk-0.23.8/src/unified_to/models/operations/patchaccountingtaxrate.py +32 -0
  218. Unified-python-sdk-0.23.8/src/unified_to/models/operations/patchaccountingtransaction.py +32 -0
  219. Unified-python-sdk-0.23.8/src/unified_to/models/operations/patchatsactivity.py +32 -0
  220. Unified-python-sdk-0.23.8/src/unified_to/models/operations/patchatsapplication.py +32 -0
  221. Unified-python-sdk-0.23.8/src/unified_to/models/operations/patchatscandidate.py +32 -0
  222. Unified-python-sdk-0.23.8/src/unified_to/models/operations/patchatsdocument.py +32 -0
  223. Unified-python-sdk-0.23.8/src/unified_to/models/operations/patchatsinterview.py +32 -0
  224. Unified-python-sdk-0.23.8/src/unified_to/models/operations/patchatsjob.py +32 -0
  225. Unified-python-sdk-0.23.8/src/unified_to/models/operations/patchatsscorecard.py +32 -0
  226. Unified-python-sdk-0.23.8/src/unified_to/models/operations/patchcommercecollection.py +33 -0
  227. Unified-python-sdk-0.23.8/src/unified_to/models/operations/patchcommerceinventory.py +32 -0
  228. Unified-python-sdk-0.23.8/src/unified_to/models/operations/patchcommerceitem.py +32 -0
  229. Unified-python-sdk-0.23.8/src/unified_to/models/operations/patchcommercelocation.py +32 -0
  230. Unified-python-sdk-0.23.8/src/unified_to/models/operations/patchcrmcompany.py +33 -0
  231. Unified-python-sdk-0.23.8/src/unified_to/models/operations/patchcrmcontact.py +33 -0
  232. Unified-python-sdk-0.23.8/src/unified_to/models/operations/patchcrmdeal.py +33 -0
  233. Unified-python-sdk-0.23.8/src/unified_to/models/operations/patchcrmevent.py +33 -0
  234. Unified-python-sdk-0.23.8/src/unified_to/models/operations/patchcrmlead.py +32 -0
  235. Unified-python-sdk-0.23.8/src/unified_to/models/operations/patchcrmpipeline.py +32 -0
  236. Unified-python-sdk-0.23.8/src/unified_to/models/operations/patchhriscompany.py +32 -0
  237. Unified-python-sdk-0.23.8/src/unified_to/models/operations/patchhrisemployee.py +32 -0
  238. Unified-python-sdk-0.23.8/src/unified_to/models/operations/patchhrisgroup.py +32 -0
  239. Unified-python-sdk-0.23.8/src/unified_to/models/operations/patchkmspage.py +32 -0
  240. Unified-python-sdk-0.23.8/src/unified_to/models/operations/patchkmsspace.py +32 -0
  241. Unified-python-sdk-0.23.8/src/unified_to/models/operations/patchmartechlist.py +33 -0
  242. Unified-python-sdk-0.23.8/src/unified_to/models/operations/patchmartechmember.py +33 -0
  243. Unified-python-sdk-0.23.8/src/unified_to/models/operations/patchmessagingmessage.py +32 -0
  244. Unified-python-sdk-0.23.8/src/unified_to/models/operations/patchpassthrough.py +31 -0
  245. Unified-python-sdk-0.23.8/src/unified_to/models/operations/patchpaymentlink.py +32 -0
  246. Unified-python-sdk-0.23.8/src/unified_to/models/operations/patchpaymentpayment.py +32 -0
  247. Unified-python-sdk-0.23.8/src/unified_to/models/operations/patchstoragefile.py +32 -0
  248. Unified-python-sdk-0.23.8/src/unified_to/models/operations/patchtaskproject.py +32 -0
  249. Unified-python-sdk-0.23.8/src/unified_to/models/operations/patchtasktask.py +32 -0
  250. Unified-python-sdk-0.23.8/src/unified_to/models/operations/patchticketingcustomer.py +32 -0
  251. Unified-python-sdk-0.23.8/src/unified_to/models/operations/patchticketingnote.py +32 -0
  252. Unified-python-sdk-0.23.8/src/unified_to/models/operations/patchticketingticket.py +32 -0
  253. Unified-python-sdk-0.23.8/src/unified_to/models/operations/patchuccontact.py +33 -0
  254. Unified-python-sdk-0.23.8/src/unified_to/models/operations/patchunifiedconnection.py +31 -0
  255. Unified-python-sdk-0.23.8/src/unified_to/models/operations/patchunifiedwebhooktrigger.py +28 -0
  256. Unified-python-sdk-0.23.8/src/unified_to/models/operations/removeaccountingaccount.py +30 -0
  257. Unified-python-sdk-0.23.8/src/unified_to/models/operations/removeaccountingcontact.py +30 -0
  258. Unified-python-sdk-0.23.8/src/unified_to/models/operations/removeaccountinginvoice.py +30 -0
  259. Unified-python-sdk-0.23.8/src/unified_to/models/operations/removeaccountingjournal.py +30 -0
  260. Unified-python-sdk-0.23.8/src/unified_to/models/operations/removeaccountingtaxrate.py +30 -0
  261. Unified-python-sdk-0.23.8/src/unified_to/models/operations/removeaccountingtransaction.py +30 -0
  262. Unified-python-sdk-0.23.8/src/unified_to/models/operations/removeatsactivity.py +30 -0
  263. Unified-python-sdk-0.23.8/src/unified_to/models/operations/removeatsapplication.py +30 -0
  264. Unified-python-sdk-0.23.8/src/unified_to/models/operations/removeatscandidate.py +30 -0
  265. Unified-python-sdk-0.23.8/src/unified_to/models/operations/removeatsdocument.py +30 -0
  266. Unified-python-sdk-0.23.8/src/unified_to/models/operations/removeatsinterview.py +30 -0
  267. Unified-python-sdk-0.23.8/src/unified_to/models/operations/removeatsjob.py +30 -0
  268. Unified-python-sdk-0.23.8/src/unified_to/models/operations/removeatsscorecard.py +30 -0
  269. Unified-python-sdk-0.23.8/src/unified_to/models/operations/removecommercecollection.py +30 -0
  270. Unified-python-sdk-0.23.8/src/unified_to/models/operations/removecommerceinventory.py +30 -0
  271. Unified-python-sdk-0.23.8/src/unified_to/models/operations/removecommerceitem.py +30 -0
  272. Unified-python-sdk-0.23.8/src/unified_to/models/operations/removecommercelocation.py +30 -0
  273. Unified-python-sdk-0.23.8/src/unified_to/models/operations/removecrmcompany.py +30 -0
  274. Unified-python-sdk-0.23.8/src/unified_to/models/operations/removecrmcontact.py +30 -0
  275. Unified-python-sdk-0.23.8/src/unified_to/models/operations/removecrmdeal.py +30 -0
  276. Unified-python-sdk-0.23.8/src/unified_to/models/operations/removecrmevent.py +30 -0
  277. Unified-python-sdk-0.23.8/src/unified_to/models/operations/removecrmlead.py +30 -0
  278. Unified-python-sdk-0.23.8/src/unified_to/models/operations/removecrmpipeline.py +30 -0
  279. Unified-python-sdk-0.23.8/src/unified_to/models/operations/removehriscompany.py +30 -0
  280. Unified-python-sdk-0.23.8/src/unified_to/models/operations/removehrisemployee.py +30 -0
  281. Unified-python-sdk-0.23.8/src/unified_to/models/operations/removehrisgroup.py +30 -0
  282. Unified-python-sdk-0.23.8/src/unified_to/models/operations/removekmspage.py +30 -0
  283. Unified-python-sdk-0.23.8/src/unified_to/models/operations/removekmsspace.py +30 -0
  284. Unified-python-sdk-0.23.8/src/unified_to/models/operations/removemartechlist.py +30 -0
  285. Unified-python-sdk-0.23.8/src/unified_to/models/operations/removemartechmember.py +30 -0
  286. Unified-python-sdk-0.23.8/src/unified_to/models/operations/removemessagingmessage.py +30 -0
  287. Unified-python-sdk-0.23.8/src/unified_to/models/operations/removepassthrough.py +29 -0
  288. Unified-python-sdk-0.23.8/src/unified_to/models/operations/removepaymentlink.py +30 -0
  289. Unified-python-sdk-0.23.8/src/unified_to/models/operations/removepaymentpayment.py +30 -0
  290. Unified-python-sdk-0.23.8/src/unified_to/models/operations/removestoragefile.py +30 -0
  291. Unified-python-sdk-0.23.8/src/unified_to/models/operations/removetaskproject.py +30 -0
  292. Unified-python-sdk-0.23.8/src/unified_to/models/operations/removetasktask.py +30 -0
  293. Unified-python-sdk-0.23.8/src/unified_to/models/operations/removeticketingcustomer.py +30 -0
  294. Unified-python-sdk-0.23.8/src/unified_to/models/operations/removeticketingnote.py +30 -0
  295. Unified-python-sdk-0.23.8/src/unified_to/models/operations/removeticketingticket.py +30 -0
  296. Unified-python-sdk-0.23.8/src/unified_to/models/operations/removeuccontact.py +30 -0
  297. Unified-python-sdk-0.23.8/src/unified_to/models/operations/removeunifiedconnection.py +28 -0
  298. Unified-python-sdk-0.23.8/src/unified_to/models/operations/removeunifiedwebhook.py +28 -0
  299. Unified-python-sdk-0.23.8/src/unified_to/models/operations/updateaccountingaccount.py +33 -0
  300. Unified-python-sdk-0.23.8/src/unified_to/models/operations/updateaccountingcontact.py +32 -0
  301. Unified-python-sdk-0.23.8/src/unified_to/models/operations/updateaccountinginvoice.py +32 -0
  302. Unified-python-sdk-0.23.8/src/unified_to/models/operations/updateaccountingjournal.py +32 -0
  303. Unified-python-sdk-0.23.8/src/unified_to/models/operations/updateaccountingtaxrate.py +32 -0
  304. Unified-python-sdk-0.23.8/src/unified_to/models/operations/updateaccountingtransaction.py +32 -0
  305. Unified-python-sdk-0.23.8/src/unified_to/models/operations/updateatsactivity.py +32 -0
  306. Unified-python-sdk-0.23.8/src/unified_to/models/operations/updateatsapplication.py +32 -0
  307. Unified-python-sdk-0.23.8/src/unified_to/models/operations/updateatscandidate.py +32 -0
  308. Unified-python-sdk-0.23.8/src/unified_to/models/operations/updateatsdocument.py +32 -0
  309. Unified-python-sdk-0.23.8/src/unified_to/models/operations/updateatsinterview.py +32 -0
  310. Unified-python-sdk-0.23.8/src/unified_to/models/operations/updateatsjob.py +32 -0
  311. Unified-python-sdk-0.23.8/src/unified_to/models/operations/updateatsscorecard.py +32 -0
  312. Unified-python-sdk-0.23.8/src/unified_to/models/operations/updatecommercecollection.py +33 -0
  313. Unified-python-sdk-0.23.8/src/unified_to/models/operations/updatecommerceinventory.py +32 -0
  314. Unified-python-sdk-0.23.8/src/unified_to/models/operations/updatecommerceitem.py +32 -0
  315. Unified-python-sdk-0.23.8/src/unified_to/models/operations/updatecommercelocation.py +32 -0
  316. Unified-python-sdk-0.23.8/src/unified_to/models/operations/updatecrmcompany.py +33 -0
  317. Unified-python-sdk-0.23.8/src/unified_to/models/operations/updatecrmcontact.py +33 -0
  318. Unified-python-sdk-0.23.8/src/unified_to/models/operations/updatecrmdeal.py +33 -0
  319. Unified-python-sdk-0.23.8/src/unified_to/models/operations/updatecrmevent.py +33 -0
  320. Unified-python-sdk-0.23.8/src/unified_to/models/operations/updatecrmlead.py +32 -0
  321. Unified-python-sdk-0.23.8/src/unified_to/models/operations/updatecrmpipeline.py +32 -0
  322. Unified-python-sdk-0.23.8/src/unified_to/models/operations/updatehriscompany.py +32 -0
  323. Unified-python-sdk-0.23.8/src/unified_to/models/operations/updatehrisemployee.py +32 -0
  324. Unified-python-sdk-0.23.8/src/unified_to/models/operations/updatehrisgroup.py +32 -0
  325. Unified-python-sdk-0.23.8/src/unified_to/models/operations/updatekmspage.py +32 -0
  326. Unified-python-sdk-0.23.8/src/unified_to/models/operations/updatekmsspace.py +32 -0
  327. Unified-python-sdk-0.23.8/src/unified_to/models/operations/updatemartechlist.py +33 -0
  328. Unified-python-sdk-0.23.8/src/unified_to/models/operations/updatemartechmember.py +33 -0
  329. Unified-python-sdk-0.23.8/src/unified_to/models/operations/updatemessagingmessage.py +32 -0
  330. Unified-python-sdk-0.23.8/src/unified_to/models/operations/updatepassthrough.py +31 -0
  331. Unified-python-sdk-0.23.8/src/unified_to/models/operations/updatepaymentlink.py +32 -0
  332. Unified-python-sdk-0.23.8/src/unified_to/models/operations/updatepaymentpayment.py +32 -0
  333. Unified-python-sdk-0.23.8/src/unified_to/models/operations/updatestoragefile.py +32 -0
  334. Unified-python-sdk-0.23.8/src/unified_to/models/operations/updatetaskproject.py +32 -0
  335. Unified-python-sdk-0.23.8/src/unified_to/models/operations/updatetasktask.py +32 -0
  336. Unified-python-sdk-0.23.8/src/unified_to/models/operations/updateticketingcustomer.py +32 -0
  337. Unified-python-sdk-0.23.8/src/unified_to/models/operations/updateticketingnote.py +32 -0
  338. Unified-python-sdk-0.23.8/src/unified_to/models/operations/updateticketingticket.py +32 -0
  339. Unified-python-sdk-0.23.8/src/unified_to/models/operations/updateuccontact.py +33 -0
  340. Unified-python-sdk-0.23.8/src/unified_to/models/operations/updateunifiedconnection.py +31 -0
  341. Unified-python-sdk-0.23.8/src/unified_to/models/operations/updateunifiedwebhooktrigger.py +28 -0
  342. Unified-python-sdk-0.23.8/src/unified_to/models/shared/__init__.py +131 -0
  343. Unified-python-sdk-0.23.8/src/unified_to/models/shared/accountingaccount.py +50 -0
  344. Unified-python-sdk-0.23.8/src/unified_to/models/shared/accountingcontact.py +55 -0
  345. Unified-python-sdk-0.23.8/src/unified_to/models/shared/accountingcontactpaymentmethod.py +29 -0
  346. Unified-python-sdk-0.23.8/src/unified_to/models/shared/accountingemail.py +23 -0
  347. Unified-python-sdk-0.23.8/src/unified_to/models/shared/accountinginvoice.py +56 -0
  348. Unified-python-sdk-0.23.8/src/unified_to/models/shared/accountingjournal.py +26 -0
  349. Unified-python-sdk-0.23.8/src/unified_to/models/shared/accountingjournallineitem.py +22 -0
  350. Unified-python-sdk-0.23.8/src/unified_to/models/shared/accountinglineitem.py +33 -0
  351. Unified-python-sdk-0.23.8/src/unified_to/models/shared/accountingorganization.py +29 -0
  352. Unified-python-sdk-0.23.8/src/unified_to/models/shared/accountingtaxrate.py +24 -0
  353. Unified-python-sdk-0.23.8/src/unified_to/models/shared/accountingtelephone.py +25 -0
  354. Unified-python-sdk-0.23.8/src/unified_to/models/shared/accountingtransaction.py +35 -0
  355. Unified-python-sdk-0.23.8/src/unified_to/models/shared/accountingtransactionlineitem.py +22 -0
  356. Unified-python-sdk-0.23.8/src/unified_to/models/shared/apicall.py +38 -0
  357. Unified-python-sdk-0.23.8/src/unified_to/models/shared/atsactivity.py +37 -0
  358. Unified-python-sdk-0.23.8/src/unified_to/models/shared/atsaddress.py +22 -0
  359. Unified-python-sdk-0.23.8/src/unified_to/models/shared/atsapplication.py +49 -0
  360. Unified-python-sdk-0.23.8/src/unified_to/models/shared/atsapplicationanswer.py +16 -0
  361. Unified-python-sdk-0.23.8/src/unified_to/models/shared/atscandidate.py +49 -0
  362. Unified-python-sdk-0.23.8/src/unified_to/models/shared/atscompany.py +27 -0
  363. Unified-python-sdk-0.23.8/src/unified_to/models/shared/atscompensation.py +38 -0
  364. Unified-python-sdk-0.23.8/src/unified_to/models/shared/atsdocument.py +38 -0
  365. Unified-python-sdk-0.23.8/src/unified_to/models/shared/atsemail.py +23 -0
  366. Unified-python-sdk-0.23.8/src/unified_to/models/shared/atsinterview.py +38 -0
  367. Unified-python-sdk-0.23.8/src/unified_to/models/shared/atsjob.py +62 -0
  368. Unified-python-sdk-0.23.8/src/unified_to/models/shared/atsjobquestion.py +37 -0
  369. Unified-python-sdk-0.23.8/src/unified_to/models/shared/atsscorecard.py +37 -0
  370. Unified-python-sdk-0.23.8/src/unified_to/models/shared/atsscorecardquestion.py +17 -0
  371. Unified-python-sdk-0.23.8/src/unified_to/models/shared/atsstatus.py +37 -0
  372. Unified-python-sdk-0.23.8/src/unified_to/models/shared/atstelephone.py +25 -0
  373. Unified-python-sdk-0.23.8/src/unified_to/models/shared/commercecollection.py +40 -0
  374. Unified-python-sdk-0.23.8/src/unified_to/models/shared/commerceinventory.py +24 -0
  375. Unified-python-sdk-0.23.8/src/unified_to/models/shared/commerceitem.py +36 -0
  376. Unified-python-sdk-0.23.8/src/unified_to/models/shared/commerceitemmedia.py +27 -0
  377. Unified-python-sdk-0.23.8/src/unified_to/models/shared/commerceitemoption.py +18 -0
  378. Unified-python-sdk-0.23.8/src/unified_to/models/shared/commerceitemprice.py +17 -0
  379. Unified-python-sdk-0.23.8/src/unified_to/models/shared/commerceitemvariant.py +55 -0
  380. Unified-python-sdk-0.23.8/src/unified_to/models/shared/commercelocation.py +25 -0
  381. Unified-python-sdk-0.23.8/src/unified_to/models/shared/connection.py +37 -0
  382. Unified-python-sdk-0.23.8/src/unified_to/models/shared/crmcompany.py +40 -0
  383. Unified-python-sdk-0.23.8/src/unified_to/models/shared/crmcontact.py +38 -0
  384. Unified-python-sdk-0.23.8/src/unified_to/models/shared/crmdeal.py +36 -0
  385. Unified-python-sdk-0.23.8/src/unified_to/models/shared/crmemail.py +23 -0
  386. Unified-python-sdk-0.23.8/src/unified_to/models/shared/crmevent.py +55 -0
  387. Unified-python-sdk-0.23.8/src/unified_to/models/shared/crmlead.py +35 -0
  388. Unified-python-sdk-0.23.8/src/unified_to/models/shared/crmpipeline.py +26 -0
  389. Unified-python-sdk-0.23.8/src/unified_to/models/shared/crmstage.py +23 -0
  390. Unified-python-sdk-0.23.8/src/unified_to/models/shared/crmtelephone.py +25 -0
  391. Unified-python-sdk-0.23.8/src/unified_to/models/shared/enrichcompany.py +49 -0
  392. Unified-python-sdk-0.23.8/src/unified_to/models/shared/enrichemail.py +24 -0
  393. Unified-python-sdk-0.23.8/src/unified_to/models/shared/enrichperson.py +55 -0
  394. Unified-python-sdk-0.23.8/src/unified_to/models/shared/enrichpersonworkhistory.py +23 -0
  395. Unified-python-sdk-0.23.8/src/unified_to/models/shared/enrichtelephone.py +25 -0
  396. Unified-python-sdk-0.23.8/src/unified_to/models/shared/genaicontent.py +22 -0
  397. Unified-python-sdk-0.23.8/src/unified_to/models/shared/genaimodel.py +21 -0
  398. Unified-python-sdk-0.23.8/src/unified_to/models/shared/genaiprompt.py +21 -0
  399. Unified-python-sdk-0.23.8/src/unified_to/models/shared/hriscompany.py +24 -0
  400. Unified-python-sdk-0.23.8/src/unified_to/models/shared/hriscompensation.py +37 -0
  401. Unified-python-sdk-0.23.8/src/unified_to/models/shared/hrisemail.py +23 -0
  402. Unified-python-sdk-0.23.8/src/unified_to/models/shared/hrisemployee.py +85 -0
  403. Unified-python-sdk-0.23.8/src/unified_to/models/shared/hrisgroup.py +39 -0
  404. Unified-python-sdk-0.23.8/src/unified_to/models/shared/hrispayslip.py +37 -0
  405. Unified-python-sdk-0.23.8/src/unified_to/models/shared/hrispayslipdetail.py +41 -0
  406. Unified-python-sdk-0.23.8/src/unified_to/models/shared/hristelephone.py +25 -0
  407. Unified-python-sdk-0.23.8/src/unified_to/models/shared/hristimeoff.py +40 -0
  408. Unified-python-sdk-0.23.8/src/unified_to/models/shared/integration.py +46 -0
  409. Unified-python-sdk-0.23.8/src/unified_to/models/shared/integrationsupport.py +281 -0
  410. Unified-python-sdk-0.23.8/src/unified_to/models/shared/issue.py +35 -0
  411. Unified-python-sdk-0.23.8/src/unified_to/models/shared/kmspage.py +34 -0
  412. Unified-python-sdk-0.23.8/src/unified_to/models/shared/kmsspace.py +25 -0
  413. Unified-python-sdk-0.23.8/src/unified_to/models/shared/marketingemail.py +23 -0
  414. Unified-python-sdk-0.23.8/src/unified_to/models/shared/marketinglist.py +23 -0
  415. Unified-python-sdk-0.23.8/src/unified_to/models/shared/marketingmember.py +30 -0
  416. Unified-python-sdk-0.23.8/src/unified_to/models/shared/messagingattachment.py +19 -0
  417. Unified-python-sdk-0.23.8/src/unified_to/models/shared/messagingchannel.py +29 -0
  418. Unified-python-sdk-0.23.8/src/unified_to/models/shared/messagingmember.py +17 -0
  419. Unified-python-sdk-0.23.8/src/unified_to/models/shared/messagingmessage.py +32 -0
  420. Unified-python-sdk-0.23.8/src/unified_to/models/shared/paymentlink.py +29 -0
  421. Unified-python-sdk-0.23.8/src/unified_to/models/shared/paymentlinklineitem.py +33 -0
  422. Unified-python-sdk-0.23.8/src/unified_to/models/shared/paymentpayment.py +28 -0
  423. Unified-python-sdk-0.23.8/src/unified_to/models/shared/paymentpayout.py +30 -0
  424. Unified-python-sdk-0.23.8/src/unified_to/models/shared/paymentrefund.py +32 -0
  425. Unified-python-sdk-0.23.8/src/unified_to/models/shared/property_accountingcontact_billing_address.py +22 -0
  426. Unified-python-sdk-0.23.8/src/unified_to/models/shared/property_accountingcontact_shipping_address.py +22 -0
  427. Unified-python-sdk-0.23.8/src/unified_to/models/shared/property_accountingorganization_address.py +22 -0
  428. Unified-python-sdk-0.23.8/src/unified_to/models/shared/property_atscandidate_address.py +22 -0
  429. Unified-python-sdk-0.23.8/src/unified_to/models/shared/property_atscompany_address.py +22 -0
  430. Unified-python-sdk-0.23.8/src/unified_to/models/shared/property_commercelocation_address.py +22 -0
  431. Unified-python-sdk-0.23.8/src/unified_to/models/shared/property_connection_auth.py +41 -0
  432. Unified-python-sdk-0.23.8/src/unified_to/models/shared/property_connection_categories.py +24 -0
  433. Unified-python-sdk-0.23.8/src/unified_to/models/shared/property_connection_permissions.py +103 -0
  434. Unified-python-sdk-0.23.8/src/unified_to/models/shared/property_crmcompany_address.py +22 -0
  435. Unified-python-sdk-0.23.8/src/unified_to/models/shared/property_crmcontact_address.py +22 -0
  436. Unified-python-sdk-0.23.8/src/unified_to/models/shared/property_crmevent_call.py +20 -0
  437. Unified-python-sdk-0.23.8/src/unified_to/models/shared/property_crmevent_email.py +23 -0
  438. Unified-python-sdk-0.23.8/src/unified_to/models/shared/property_crmevent_meeting.py +21 -0
  439. Unified-python-sdk-0.23.8/src/unified_to/models/shared/property_crmevent_note.py +17 -0
  440. Unified-python-sdk-0.23.8/src/unified_to/models/shared/property_crmevent_task.py +36 -0
  441. Unified-python-sdk-0.23.8/src/unified_to/models/shared/property_crmlead_address.py +22 -0
  442. Unified-python-sdk-0.23.8/src/unified_to/models/shared/property_enrichcompany_address.py +23 -0
  443. Unified-python-sdk-0.23.8/src/unified_to/models/shared/property_enrichperson_address.py +23 -0
  444. Unified-python-sdk-0.23.8/src/unified_to/models/shared/property_hriscompany_address.py +22 -0
  445. Unified-python-sdk-0.23.8/src/unified_to/models/shared/property_hrisemployee_address.py +22 -0
  446. Unified-python-sdk-0.23.8/src/unified_to/models/shared/property_hrisemployee_employee_roles.py +12 -0
  447. Unified-python-sdk-0.23.8/src/unified_to/models/shared/property_integration_categories.py +24 -0
  448. Unified-python-sdk-0.23.8/src/unified_to/models/shared/property_integrationsupport_webhook_events.py +20 -0
  449. Unified-python-sdk-0.23.8/src/unified_to/models/shared/property_messagingmessage_author_member.py +17 -0
  450. Unified-python-sdk-0.23.8/src/unified_to/models/shared/property_property_integrationsupport_webhook_events_created.py +9 -0
  451. Unified-python-sdk-0.23.8/src/unified_to/models/shared/property_property_integrationsupport_webhook_events_deleted.py +9 -0
  452. Unified-python-sdk-0.23.8/src/unified_to/models/shared/property_property_integrationsupport_webhook_events_updated.py +9 -0
  453. Unified-python-sdk-0.23.8/src/unified_to/models/shared/property_storagepermission_roles.py +10 -0
  454. Unified-python-sdk-0.23.8/src/unified_to/models/shared/property_uccall_telephone.py +26 -0
  455. Unified-python-sdk-0.23.8/src/unified_to/models/shared/security.py +12 -0
  456. Unified-python-sdk-0.23.8/src/unified_to/models/shared/storagefile.py +37 -0
  457. Unified-python-sdk-0.23.8/src/unified_to/models/shared/storagepermission.py +18 -0
  458. Unified-python-sdk-0.23.8/src/unified_to/models/shared/taskproject.py +24 -0
  459. Unified-python-sdk-0.23.8/src/unified_to/models/shared/tasktask.py +40 -0
  460. Unified-python-sdk-0.23.8/src/unified_to/models/shared/ticketingcustomer.py +26 -0
  461. Unified-python-sdk-0.23.8/src/unified_to/models/shared/ticketingemail.py +23 -0
  462. Unified-python-sdk-0.23.8/src/unified_to/models/shared/ticketingnote.py +24 -0
  463. Unified-python-sdk-0.23.8/src/unified_to/models/shared/ticketingtelephone.py +25 -0
  464. Unified-python-sdk-0.23.8/src/unified_to/models/shared/ticketingticket.py +38 -0
  465. Unified-python-sdk-0.23.8/src/unified_to/models/shared/uccall.py +28 -0
  466. Unified-python-sdk-0.23.8/src/unified_to/models/shared/uccontact.py +31 -0
  467. Unified-python-sdk-0.23.8/src/unified_to/models/shared/ucemail.py +23 -0
  468. Unified-python-sdk-0.23.8/src/unified_to/models/shared/uctelephone.py +25 -0
  469. Unified-python-sdk-0.23.8/src/unified_to/models/shared/webhook.py +106 -0
  470. Unified-python-sdk-0.23.8/src/unified_to/note.py +356 -0
  471. Unified-python-sdk-0.23.8/src/unified_to/organization.py +129 -0
  472. Unified-python-sdk-0.23.8/src/unified_to/page.py +356 -0
  473. Unified-python-sdk-0.23.8/src/unified_to/passthrough.py +301 -0
  474. Unified-python-sdk-0.23.8/src/unified_to/payment.py +919 -0
  475. Unified-python-sdk-0.23.8/src/unified_to/payout.py +129 -0
  476. Unified-python-sdk-0.23.8/src/unified_to/payslip.py +129 -0
  477. Unified-python-sdk-0.23.8/src/unified_to/person.py +73 -0
  478. Unified-python-sdk-0.23.8/src/unified_to/pipeline.py +356 -0
  479. Unified-python-sdk-0.23.8/src/unified_to/project.py +356 -0
  480. Unified-python-sdk-0.23.8/src/unified_to/prompt.py +75 -0
  481. Unified-python-sdk-0.23.8/src/unified_to/refund.py +129 -0
  482. Unified-python-sdk-0.23.8/src/unified_to/scorecard.py +356 -0
  483. Unified-python-sdk-0.23.8/src/unified_to/sdk.py +278 -0
  484. Unified-python-sdk-0.23.8/src/unified_to/sdkconfiguration.py +47 -0
  485. Unified-python-sdk-0.23.8/src/unified_to/space.py +356 -0
  486. Unified-python-sdk-0.23.8/src/unified_to/storage.py +356 -0
  487. Unified-python-sdk-0.23.8/src/unified_to/task.py +695 -0
  488. Unified-python-sdk-0.23.8/src/unified_to/taxrate.py +356 -0
  489. Unified-python-sdk-0.23.8/src/unified_to/ticket.py +356 -0
  490. Unified-python-sdk-0.23.8/src/unified_to/ticketing.py +1034 -0
  491. Unified-python-sdk-0.23.8/src/unified_to/timeoff.py +129 -0
  492. Unified-python-sdk-0.23.8/src/unified_to/transaction.py +356 -0
  493. Unified-python-sdk-0.23.8/src/unified_to/uc.py +412 -0
  494. Unified-python-sdk-0.23.8/src/unified_to/unified.py +1024 -0
  495. Unified-python-sdk-0.23.8/src/unified_to/utils/__init__.py +4 -0
  496. Unified-python-sdk-0.23.8/src/unified_to/utils/retries.py +119 -0
  497. Unified-python-sdk-0.23.8/src/unified_to/utils/utils.py +1116 -0
  498. Unified-python-sdk-0.23.8/src/unified_to/webhook.py +348 -0
  499. Unified-python-sdk-0.23.7/PKG-INFO +0 -991
  500. Unified-python-sdk-0.23.7/setup.py +0 -55
  501. Unified-python-sdk-0.23.7/src/Unified_python_sdk.egg-info/PKG-INFO +0 -991
  502. Unified-python-sdk-0.23.7/src/unified_to/__init__.py +0 -4
  503. Unified-python-sdk-0.23.7/src/unified_to/_hooks/__init__.py +0 -4
  504. Unified-python-sdk-0.23.7/src/unified_to/_hooks/sdkhooks.py +0 -55
  505. Unified-python-sdk-0.23.7/src/unified_to/_hooks/types.py +0 -74
  506. Unified-python-sdk-0.23.7/src/unified_to/account.py +0 -358
  507. Unified-python-sdk-0.23.7/src/unified_to/accounting.py +0 -2175
  508. Unified-python-sdk-0.23.7/src/unified_to/activity.py +0 -358
  509. Unified-python-sdk-0.23.7/src/unified_to/apicall.py +0 -128
  510. Unified-python-sdk-0.23.7/src/unified_to/application.py +0 -358
  511. Unified-python-sdk-0.23.7/src/unified_to/applicationstatus.py +0 -73
  512. Unified-python-sdk-0.23.7/src/unified_to/ats.py +0 -2572
  513. Unified-python-sdk-0.23.7/src/unified_to/auth.py +0 -130
  514. Unified-python-sdk-0.23.7/src/unified_to/call.py +0 -73
  515. Unified-python-sdk-0.23.7/src/unified_to/candidate.py +0 -358
  516. Unified-python-sdk-0.23.7/src/unified_to/channel.py +0 -129
  517. Unified-python-sdk-0.23.7/src/unified_to/collection.py +0 -358
  518. Unified-python-sdk-0.23.7/src/unified_to/commerce.py +0 -1381
  519. Unified-python-sdk-0.23.7/src/unified_to/company.py +0 -867
  520. Unified-python-sdk-0.23.7/src/unified_to/connection.py +0 -357
  521. Unified-python-sdk-0.23.7/src/unified_to/contact.py +0 -1040
  522. Unified-python-sdk-0.23.7/src/unified_to/crm.py +0 -2063
  523. Unified-python-sdk-0.23.7/src/unified_to/customer.py +0 -358
  524. Unified-python-sdk-0.23.7/src/unified_to/deal.py +0 -358
  525. Unified-python-sdk-0.23.7/src/unified_to/document.py +0 -358
  526. Unified-python-sdk-0.23.7/src/unified_to/employee.py +0 -358
  527. Unified-python-sdk-0.23.7/src/unified_to/enrich.py +0 -129
  528. Unified-python-sdk-0.23.7/src/unified_to/event.py +0 -358
  529. Unified-python-sdk-0.23.7/src/unified_to/file.py +0 -358
  530. Unified-python-sdk-0.23.7/src/unified_to/genai.py +0 -131
  531. Unified-python-sdk-0.23.7/src/unified_to/group.py +0 -358
  532. Unified-python-sdk-0.23.7/src/unified_to/hris.py +0 -1264
  533. Unified-python-sdk-0.23.7/src/unified_to/integration.py +0 -188
  534. Unified-python-sdk-0.23.7/src/unified_to/interview.py +0 -358
  535. Unified-python-sdk-0.23.7/src/unified_to/inventory.py +0 -358
  536. Unified-python-sdk-0.23.7/src/unified_to/invoice.py +0 -358
  537. Unified-python-sdk-0.23.7/src/unified_to/issue.py +0 -73
  538. Unified-python-sdk-0.23.7/src/unified_to/item.py +0 -358
  539. Unified-python-sdk-0.23.7/src/unified_to/job.py +0 -358
  540. Unified-python-sdk-0.23.7/src/unified_to/journal.py +0 -358
  541. Unified-python-sdk-0.23.7/src/unified_to/kms.py +0 -699
  542. Unified-python-sdk-0.23.7/src/unified_to/lead.py +0 -358
  543. Unified-python-sdk-0.23.7/src/unified_to/link.py +0 -358
  544. Unified-python-sdk-0.23.7/src/unified_to/list.py +0 -358
  545. Unified-python-sdk-0.23.7/src/unified_to/location.py +0 -358
  546. Unified-python-sdk-0.23.7/src/unified_to/login.py +0 -73
  547. Unified-python-sdk-0.23.7/src/unified_to/martech.py +0 -699
  548. Unified-python-sdk-0.23.7/src/unified_to/member.py +0 -358
  549. Unified-python-sdk-0.23.7/src/unified_to/message.py +0 -358
  550. Unified-python-sdk-0.23.7/src/unified_to/messaging.py +0 -470
  551. Unified-python-sdk-0.23.7/src/unified_to/model.py +0 -73
  552. Unified-python-sdk-0.23.7/src/unified_to/models/__init__.py +0 -4
  553. Unified-python-sdk-0.23.7/src/unified_to/models/errors/__init__.py +0 -5
  554. Unified-python-sdk-0.23.7/src/unified_to/models/errors/sdkerror.py +0 -24
  555. Unified-python-sdk-0.23.7/src/unified_to/models/operations/__init__.py +0 -288
  556. Unified-python-sdk-0.23.7/src/unified_to/models/operations/createaccountingaccount.py +0 -31
  557. Unified-python-sdk-0.23.7/src/unified_to/models/operations/createaccountingcontact.py +0 -30
  558. Unified-python-sdk-0.23.7/src/unified_to/models/operations/createaccountinginvoice.py +0 -30
  559. Unified-python-sdk-0.23.7/src/unified_to/models/operations/createaccountingjournal.py +0 -30
  560. Unified-python-sdk-0.23.7/src/unified_to/models/operations/createaccountingtaxrate.py +0 -30
  561. Unified-python-sdk-0.23.7/src/unified_to/models/operations/createaccountingtransaction.py +0 -30
  562. Unified-python-sdk-0.23.7/src/unified_to/models/operations/createatsactivity.py +0 -30
  563. Unified-python-sdk-0.23.7/src/unified_to/models/operations/createatsapplication.py +0 -30
  564. Unified-python-sdk-0.23.7/src/unified_to/models/operations/createatscandidate.py +0 -30
  565. Unified-python-sdk-0.23.7/src/unified_to/models/operations/createatsdocument.py +0 -30
  566. Unified-python-sdk-0.23.7/src/unified_to/models/operations/createatsinterview.py +0 -30
  567. Unified-python-sdk-0.23.7/src/unified_to/models/operations/createatsjob.py +0 -30
  568. Unified-python-sdk-0.23.7/src/unified_to/models/operations/createatsscorecard.py +0 -30
  569. Unified-python-sdk-0.23.7/src/unified_to/models/operations/createcommercecollection.py +0 -31
  570. Unified-python-sdk-0.23.7/src/unified_to/models/operations/createcommerceinventory.py +0 -30
  571. Unified-python-sdk-0.23.7/src/unified_to/models/operations/createcommerceitem.py +0 -30
  572. Unified-python-sdk-0.23.7/src/unified_to/models/operations/createcommercelocation.py +0 -30
  573. Unified-python-sdk-0.23.7/src/unified_to/models/operations/createcrmcompany.py +0 -31
  574. Unified-python-sdk-0.23.7/src/unified_to/models/operations/createcrmcontact.py +0 -31
  575. Unified-python-sdk-0.23.7/src/unified_to/models/operations/createcrmdeal.py +0 -31
  576. Unified-python-sdk-0.23.7/src/unified_to/models/operations/createcrmevent.py +0 -31
  577. Unified-python-sdk-0.23.7/src/unified_to/models/operations/createcrmlead.py +0 -30
  578. Unified-python-sdk-0.23.7/src/unified_to/models/operations/createcrmpipeline.py +0 -30
  579. Unified-python-sdk-0.23.7/src/unified_to/models/operations/creategenaiprompt.py +0 -30
  580. Unified-python-sdk-0.23.7/src/unified_to/models/operations/createhriscompany.py +0 -30
  581. Unified-python-sdk-0.23.7/src/unified_to/models/operations/createhrisemployee.py +0 -30
  582. Unified-python-sdk-0.23.7/src/unified_to/models/operations/createhrisgroup.py +0 -30
  583. Unified-python-sdk-0.23.7/src/unified_to/models/operations/createkmspage.py +0 -30
  584. Unified-python-sdk-0.23.7/src/unified_to/models/operations/createkmsspace.py +0 -30
  585. Unified-python-sdk-0.23.7/src/unified_to/models/operations/createmartechlist.py +0 -31
  586. Unified-python-sdk-0.23.7/src/unified_to/models/operations/createmartechmember.py +0 -31
  587. Unified-python-sdk-0.23.7/src/unified_to/models/operations/createmessagingmessage.py +0 -30
  588. Unified-python-sdk-0.23.7/src/unified_to/models/operations/createpassthrough.py +0 -31
  589. Unified-python-sdk-0.23.7/src/unified_to/models/operations/createpaymentlink.py +0 -30
  590. Unified-python-sdk-0.23.7/src/unified_to/models/operations/createpaymentpayment.py +0 -30
  591. Unified-python-sdk-0.23.7/src/unified_to/models/operations/createstoragefile.py +0 -30
  592. Unified-python-sdk-0.23.7/src/unified_to/models/operations/createtaskproject.py +0 -30
  593. Unified-python-sdk-0.23.7/src/unified_to/models/operations/createtasktask.py +0 -30
  594. Unified-python-sdk-0.23.7/src/unified_to/models/operations/createticketingcustomer.py +0 -30
  595. Unified-python-sdk-0.23.7/src/unified_to/models/operations/createticketingnote.py +0 -30
  596. Unified-python-sdk-0.23.7/src/unified_to/models/operations/createticketingticket.py +0 -30
  597. Unified-python-sdk-0.23.7/src/unified_to/models/operations/createuccontact.py +0 -31
  598. Unified-python-sdk-0.23.7/src/unified_to/models/operations/createunifiedconnection.py +0 -21
  599. Unified-python-sdk-0.23.7/src/unified_to/models/operations/createunifiedwebhook.py +0 -30
  600. Unified-python-sdk-0.23.7/src/unified_to/models/operations/getaccountingaccount.py +0 -33
  601. Unified-python-sdk-0.23.7/src/unified_to/models/operations/getaccountingcontact.py +0 -33
  602. Unified-python-sdk-0.23.7/src/unified_to/models/operations/getaccountinginvoice.py +0 -33
  603. Unified-python-sdk-0.23.7/src/unified_to/models/operations/getaccountingjournal.py +0 -33
  604. Unified-python-sdk-0.23.7/src/unified_to/models/operations/getaccountingorganization.py +0 -33
  605. Unified-python-sdk-0.23.7/src/unified_to/models/operations/getaccountingtaxrate.py +0 -33
  606. Unified-python-sdk-0.23.7/src/unified_to/models/operations/getaccountingtransaction.py +0 -33
  607. Unified-python-sdk-0.23.7/src/unified_to/models/operations/getatsactivity.py +0 -33
  608. Unified-python-sdk-0.23.7/src/unified_to/models/operations/getatsapplication.py +0 -33
  609. Unified-python-sdk-0.23.7/src/unified_to/models/operations/getatscandidate.py +0 -33
  610. Unified-python-sdk-0.23.7/src/unified_to/models/operations/getatscompany.py +0 -33
  611. Unified-python-sdk-0.23.7/src/unified_to/models/operations/getatsdocument.py +0 -33
  612. Unified-python-sdk-0.23.7/src/unified_to/models/operations/getatsinterview.py +0 -33
  613. Unified-python-sdk-0.23.7/src/unified_to/models/operations/getatsjob.py +0 -33
  614. Unified-python-sdk-0.23.7/src/unified_to/models/operations/getatsscorecard.py +0 -33
  615. Unified-python-sdk-0.23.7/src/unified_to/models/operations/getcommercecollection.py +0 -33
  616. Unified-python-sdk-0.23.7/src/unified_to/models/operations/getcommerceinventory.py +0 -33
  617. Unified-python-sdk-0.23.7/src/unified_to/models/operations/getcommerceitem.py +0 -33
  618. Unified-python-sdk-0.23.7/src/unified_to/models/operations/getcommercelocation.py +0 -33
  619. Unified-python-sdk-0.23.7/src/unified_to/models/operations/getcrmcompany.py +0 -33
  620. Unified-python-sdk-0.23.7/src/unified_to/models/operations/getcrmcontact.py +0 -33
  621. Unified-python-sdk-0.23.7/src/unified_to/models/operations/getcrmdeal.py +0 -33
  622. Unified-python-sdk-0.23.7/src/unified_to/models/operations/getcrmevent.py +0 -33
  623. Unified-python-sdk-0.23.7/src/unified_to/models/operations/getcrmlead.py +0 -33
  624. Unified-python-sdk-0.23.7/src/unified_to/models/operations/getcrmpipeline.py +0 -33
  625. Unified-python-sdk-0.23.7/src/unified_to/models/operations/gethriscompany.py +0 -33
  626. Unified-python-sdk-0.23.7/src/unified_to/models/operations/gethrisemployee.py +0 -33
  627. Unified-python-sdk-0.23.7/src/unified_to/models/operations/gethrisgroup.py +0 -33
  628. Unified-python-sdk-0.23.7/src/unified_to/models/operations/gethrispayslip.py +0 -33
  629. Unified-python-sdk-0.23.7/src/unified_to/models/operations/gethristimeoff.py +0 -33
  630. Unified-python-sdk-0.23.7/src/unified_to/models/operations/getkmspage.py +0 -33
  631. Unified-python-sdk-0.23.7/src/unified_to/models/operations/getkmsspace.py +0 -33
  632. Unified-python-sdk-0.23.7/src/unified_to/models/operations/getmartechlist.py +0 -33
  633. Unified-python-sdk-0.23.7/src/unified_to/models/operations/getmartechmember.py +0 -33
  634. Unified-python-sdk-0.23.7/src/unified_to/models/operations/getmessagingchannel.py +0 -33
  635. Unified-python-sdk-0.23.7/src/unified_to/models/operations/getmessagingmessage.py +0 -33
  636. Unified-python-sdk-0.23.7/src/unified_to/models/operations/getpaymentlink.py +0 -33
  637. Unified-python-sdk-0.23.7/src/unified_to/models/operations/getpaymentpayment.py +0 -33
  638. Unified-python-sdk-0.23.7/src/unified_to/models/operations/getpaymentpayout.py +0 -33
  639. Unified-python-sdk-0.23.7/src/unified_to/models/operations/getpaymentrefund.py +0 -33
  640. Unified-python-sdk-0.23.7/src/unified_to/models/operations/getstoragefile.py +0 -33
  641. Unified-python-sdk-0.23.7/src/unified_to/models/operations/gettaskproject.py +0 -33
  642. Unified-python-sdk-0.23.7/src/unified_to/models/operations/gettasktask.py +0 -33
  643. Unified-python-sdk-0.23.7/src/unified_to/models/operations/getticketingcustomer.py +0 -33
  644. Unified-python-sdk-0.23.7/src/unified_to/models/operations/getticketingnote.py +0 -33
  645. Unified-python-sdk-0.23.7/src/unified_to/models/operations/getticketingticket.py +0 -33
  646. Unified-python-sdk-0.23.7/src/unified_to/models/operations/getuccontact.py +0 -33
  647. Unified-python-sdk-0.23.7/src/unified_to/models/operations/getunifiedapicall.py +0 -29
  648. Unified-python-sdk-0.23.7/src/unified_to/models/operations/getunifiedconnection.py +0 -29
  649. Unified-python-sdk-0.23.7/src/unified_to/models/operations/getunifiedintegrationauth.py +0 -144
  650. Unified-python-sdk-0.23.7/src/unified_to/models/operations/getunifiedintegrationlogin.py +0 -38
  651. Unified-python-sdk-0.23.7/src/unified_to/models/operations/getunifiedwebhook.py +0 -29
  652. Unified-python-sdk-0.23.7/src/unified_to/models/operations/listaccountingaccounts.py +0 -38
  653. Unified-python-sdk-0.23.7/src/unified_to/models/operations/listaccountingcontacts.py +0 -39
  654. Unified-python-sdk-0.23.7/src/unified_to/models/operations/listaccountinginvoices.py +0 -39
  655. Unified-python-sdk-0.23.7/src/unified_to/models/operations/listaccountingjournals.py +0 -38
  656. Unified-python-sdk-0.23.7/src/unified_to/models/operations/listaccountingorganizations.py +0 -38
  657. Unified-python-sdk-0.23.7/src/unified_to/models/operations/listaccountingtaxrates.py +0 -38
  658. Unified-python-sdk-0.23.7/src/unified_to/models/operations/listaccountingtransactions.py +0 -39
  659. Unified-python-sdk-0.23.7/src/unified_to/models/operations/listatsactivities.py +0 -44
  660. Unified-python-sdk-0.23.7/src/unified_to/models/operations/listatsapplications.py +0 -40
  661. Unified-python-sdk-0.23.7/src/unified_to/models/operations/listatsapplicationstatuses.py +0 -38
  662. Unified-python-sdk-0.23.7/src/unified_to/models/operations/listatscandidates.py +0 -39
  663. Unified-python-sdk-0.23.7/src/unified_to/models/operations/listatscompanies.py +0 -38
  664. Unified-python-sdk-0.23.7/src/unified_to/models/operations/listatsdocuments.py +0 -40
  665. Unified-python-sdk-0.23.7/src/unified_to/models/operations/listatsinterviews.py +0 -39
  666. Unified-python-sdk-0.23.7/src/unified_to/models/operations/listatsjobs.py +0 -39
  667. Unified-python-sdk-0.23.7/src/unified_to/models/operations/listatsscorecards.py +0 -42
  668. Unified-python-sdk-0.23.7/src/unified_to/models/operations/listcommercecollections.py +0 -40
  669. Unified-python-sdk-0.23.7/src/unified_to/models/operations/listcommerceinventories.py +0 -40
  670. Unified-python-sdk-0.23.7/src/unified_to/models/operations/listcommerceitems.py +0 -39
  671. Unified-python-sdk-0.23.7/src/unified_to/models/operations/listcommercelocations.py +0 -38
  672. Unified-python-sdk-0.23.7/src/unified_to/models/operations/listcrmcompanies.py +0 -41
  673. Unified-python-sdk-0.23.7/src/unified_to/models/operations/listcrmcontacts.py +0 -41
  674. Unified-python-sdk-0.23.7/src/unified_to/models/operations/listcrmdeals.py +0 -41
  675. Unified-python-sdk-0.23.7/src/unified_to/models/operations/listcrmevents.py +0 -43
  676. Unified-python-sdk-0.23.7/src/unified_to/models/operations/listcrmleads.py +0 -41
  677. Unified-python-sdk-0.23.7/src/unified_to/models/operations/listcrmpipelines.py +0 -38
  678. Unified-python-sdk-0.23.7/src/unified_to/models/operations/listenrichcompanies.py +0 -33
  679. Unified-python-sdk-0.23.7/src/unified_to/models/operations/listenrichpeople.py +0 -39
  680. Unified-python-sdk-0.23.7/src/unified_to/models/operations/listgenaimodels.py +0 -38
  681. Unified-python-sdk-0.23.7/src/unified_to/models/operations/listhriscompanies.py +0 -38
  682. Unified-python-sdk-0.23.7/src/unified_to/models/operations/listhrisemployees.py +0 -39
  683. Unified-python-sdk-0.23.7/src/unified_to/models/operations/listhrisgroups.py +0 -39
  684. Unified-python-sdk-0.23.7/src/unified_to/models/operations/listhrispayslips.py +0 -39
  685. Unified-python-sdk-0.23.7/src/unified_to/models/operations/listhristimeoffs.py +0 -39
  686. Unified-python-sdk-0.23.7/src/unified_to/models/operations/listkmspages.py +0 -40
  687. Unified-python-sdk-0.23.7/src/unified_to/models/operations/listkmsspaces.py +0 -39
  688. Unified-python-sdk-0.23.7/src/unified_to/models/operations/listmartechlists.py +0 -38
  689. Unified-python-sdk-0.23.7/src/unified_to/models/operations/listmartechmembers.py +0 -39
  690. Unified-python-sdk-0.23.7/src/unified_to/models/operations/listmessagingchannels.py +0 -39
  691. Unified-python-sdk-0.23.7/src/unified_to/models/operations/listmessagingmessages.py +0 -40
  692. Unified-python-sdk-0.23.7/src/unified_to/models/operations/listpassthroughs.py +0 -29
  693. Unified-python-sdk-0.23.7/src/unified_to/models/operations/listpaymentlinks.py +0 -40
  694. Unified-python-sdk-0.23.7/src/unified_to/models/operations/listpaymentpayments.py +0 -40
  695. Unified-python-sdk-0.23.7/src/unified_to/models/operations/listpaymentpayouts.py +0 -38
  696. Unified-python-sdk-0.23.7/src/unified_to/models/operations/listpaymentrefunds.py +0 -39
  697. Unified-python-sdk-0.23.7/src/unified_to/models/operations/liststoragefiles.py +0 -39
  698. Unified-python-sdk-0.23.7/src/unified_to/models/operations/listtaskprojects.py +0 -39
  699. Unified-python-sdk-0.23.7/src/unified_to/models/operations/listtasktasks.py +0 -40
  700. Unified-python-sdk-0.23.7/src/unified_to/models/operations/listticketingcustomers.py +0 -38
  701. Unified-python-sdk-0.23.7/src/unified_to/models/operations/listticketingnotes.py +0 -40
  702. Unified-python-sdk-0.23.7/src/unified_to/models/operations/listticketingtickets.py +0 -40
  703. Unified-python-sdk-0.23.7/src/unified_to/models/operations/listuccalls.py +0 -40
  704. Unified-python-sdk-0.23.7/src/unified_to/models/operations/listuccontacts.py +0 -39
  705. Unified-python-sdk-0.23.7/src/unified_to/models/operations/listunifiedapicalls.py +0 -43
  706. Unified-python-sdk-0.23.7/src/unified_to/models/operations/listunifiedconnections.py +0 -58
  707. Unified-python-sdk-0.23.7/src/unified_to/models/operations/listunifiedintegrations.py +0 -61
  708. Unified-python-sdk-0.23.7/src/unified_to/models/operations/listunifiedintegrationworkspaces.py +0 -59
  709. Unified-python-sdk-0.23.7/src/unified_to/models/operations/listunifiedissues.py +0 -32
  710. Unified-python-sdk-0.23.7/src/unified_to/models/operations/listunifiedwebhooks.py +0 -35
  711. Unified-python-sdk-0.23.7/src/unified_to/models/operations/patchaccountingaccount.py +0 -33
  712. Unified-python-sdk-0.23.7/src/unified_to/models/operations/patchaccountingcontact.py +0 -32
  713. Unified-python-sdk-0.23.7/src/unified_to/models/operations/patchaccountinginvoice.py +0 -32
  714. Unified-python-sdk-0.23.7/src/unified_to/models/operations/patchaccountingjournal.py +0 -32
  715. Unified-python-sdk-0.23.7/src/unified_to/models/operations/patchaccountingtaxrate.py +0 -32
  716. Unified-python-sdk-0.23.7/src/unified_to/models/operations/patchaccountingtransaction.py +0 -32
  717. Unified-python-sdk-0.23.7/src/unified_to/models/operations/patchatsactivity.py +0 -32
  718. Unified-python-sdk-0.23.7/src/unified_to/models/operations/patchatsapplication.py +0 -32
  719. Unified-python-sdk-0.23.7/src/unified_to/models/operations/patchatscandidate.py +0 -32
  720. Unified-python-sdk-0.23.7/src/unified_to/models/operations/patchatsdocument.py +0 -32
  721. Unified-python-sdk-0.23.7/src/unified_to/models/operations/patchatsinterview.py +0 -32
  722. Unified-python-sdk-0.23.7/src/unified_to/models/operations/patchatsjob.py +0 -32
  723. Unified-python-sdk-0.23.7/src/unified_to/models/operations/patchatsscorecard.py +0 -32
  724. Unified-python-sdk-0.23.7/src/unified_to/models/operations/patchcommercecollection.py +0 -33
  725. Unified-python-sdk-0.23.7/src/unified_to/models/operations/patchcommerceinventory.py +0 -32
  726. Unified-python-sdk-0.23.7/src/unified_to/models/operations/patchcommerceitem.py +0 -32
  727. Unified-python-sdk-0.23.7/src/unified_to/models/operations/patchcommercelocation.py +0 -32
  728. Unified-python-sdk-0.23.7/src/unified_to/models/operations/patchcrmcompany.py +0 -33
  729. Unified-python-sdk-0.23.7/src/unified_to/models/operations/patchcrmcontact.py +0 -33
  730. Unified-python-sdk-0.23.7/src/unified_to/models/operations/patchcrmdeal.py +0 -33
  731. Unified-python-sdk-0.23.7/src/unified_to/models/operations/patchcrmevent.py +0 -33
  732. Unified-python-sdk-0.23.7/src/unified_to/models/operations/patchcrmlead.py +0 -32
  733. Unified-python-sdk-0.23.7/src/unified_to/models/operations/patchcrmpipeline.py +0 -32
  734. Unified-python-sdk-0.23.7/src/unified_to/models/operations/patchhriscompany.py +0 -32
  735. Unified-python-sdk-0.23.7/src/unified_to/models/operations/patchhrisemployee.py +0 -32
  736. Unified-python-sdk-0.23.7/src/unified_to/models/operations/patchhrisgroup.py +0 -32
  737. Unified-python-sdk-0.23.7/src/unified_to/models/operations/patchkmspage.py +0 -32
  738. Unified-python-sdk-0.23.7/src/unified_to/models/operations/patchkmsspace.py +0 -32
  739. Unified-python-sdk-0.23.7/src/unified_to/models/operations/patchmartechlist.py +0 -33
  740. Unified-python-sdk-0.23.7/src/unified_to/models/operations/patchmartechmember.py +0 -33
  741. Unified-python-sdk-0.23.7/src/unified_to/models/operations/patchmessagingmessage.py +0 -32
  742. Unified-python-sdk-0.23.7/src/unified_to/models/operations/patchpassthrough.py +0 -31
  743. Unified-python-sdk-0.23.7/src/unified_to/models/operations/patchpaymentlink.py +0 -32
  744. Unified-python-sdk-0.23.7/src/unified_to/models/operations/patchpaymentpayment.py +0 -32
  745. Unified-python-sdk-0.23.7/src/unified_to/models/operations/patchstoragefile.py +0 -32
  746. Unified-python-sdk-0.23.7/src/unified_to/models/operations/patchtaskproject.py +0 -32
  747. Unified-python-sdk-0.23.7/src/unified_to/models/operations/patchtasktask.py +0 -32
  748. Unified-python-sdk-0.23.7/src/unified_to/models/operations/patchticketingcustomer.py +0 -32
  749. Unified-python-sdk-0.23.7/src/unified_to/models/operations/patchticketingnote.py +0 -32
  750. Unified-python-sdk-0.23.7/src/unified_to/models/operations/patchticketingticket.py +0 -32
  751. Unified-python-sdk-0.23.7/src/unified_to/models/operations/patchuccontact.py +0 -33
  752. Unified-python-sdk-0.23.7/src/unified_to/models/operations/patchunifiedconnection.py +0 -31
  753. Unified-python-sdk-0.23.7/src/unified_to/models/operations/patchunifiedwebhooktrigger.py +0 -28
  754. Unified-python-sdk-0.23.7/src/unified_to/models/operations/removeaccountingaccount.py +0 -30
  755. Unified-python-sdk-0.23.7/src/unified_to/models/operations/removeaccountingcontact.py +0 -30
  756. Unified-python-sdk-0.23.7/src/unified_to/models/operations/removeaccountinginvoice.py +0 -30
  757. Unified-python-sdk-0.23.7/src/unified_to/models/operations/removeaccountingjournal.py +0 -30
  758. Unified-python-sdk-0.23.7/src/unified_to/models/operations/removeaccountingtaxrate.py +0 -30
  759. Unified-python-sdk-0.23.7/src/unified_to/models/operations/removeaccountingtransaction.py +0 -30
  760. Unified-python-sdk-0.23.7/src/unified_to/models/operations/removeatsactivity.py +0 -30
  761. Unified-python-sdk-0.23.7/src/unified_to/models/operations/removeatsapplication.py +0 -30
  762. Unified-python-sdk-0.23.7/src/unified_to/models/operations/removeatscandidate.py +0 -30
  763. Unified-python-sdk-0.23.7/src/unified_to/models/operations/removeatsdocument.py +0 -30
  764. Unified-python-sdk-0.23.7/src/unified_to/models/operations/removeatsinterview.py +0 -30
  765. Unified-python-sdk-0.23.7/src/unified_to/models/operations/removeatsjob.py +0 -30
  766. Unified-python-sdk-0.23.7/src/unified_to/models/operations/removeatsscorecard.py +0 -30
  767. Unified-python-sdk-0.23.7/src/unified_to/models/operations/removecommercecollection.py +0 -30
  768. Unified-python-sdk-0.23.7/src/unified_to/models/operations/removecommerceinventory.py +0 -30
  769. Unified-python-sdk-0.23.7/src/unified_to/models/operations/removecommerceitem.py +0 -30
  770. Unified-python-sdk-0.23.7/src/unified_to/models/operations/removecommercelocation.py +0 -30
  771. Unified-python-sdk-0.23.7/src/unified_to/models/operations/removecrmcompany.py +0 -30
  772. Unified-python-sdk-0.23.7/src/unified_to/models/operations/removecrmcontact.py +0 -30
  773. Unified-python-sdk-0.23.7/src/unified_to/models/operations/removecrmdeal.py +0 -30
  774. Unified-python-sdk-0.23.7/src/unified_to/models/operations/removecrmevent.py +0 -30
  775. Unified-python-sdk-0.23.7/src/unified_to/models/operations/removecrmlead.py +0 -30
  776. Unified-python-sdk-0.23.7/src/unified_to/models/operations/removecrmpipeline.py +0 -30
  777. Unified-python-sdk-0.23.7/src/unified_to/models/operations/removehriscompany.py +0 -30
  778. Unified-python-sdk-0.23.7/src/unified_to/models/operations/removehrisemployee.py +0 -30
  779. Unified-python-sdk-0.23.7/src/unified_to/models/operations/removehrisgroup.py +0 -30
  780. Unified-python-sdk-0.23.7/src/unified_to/models/operations/removekmspage.py +0 -30
  781. Unified-python-sdk-0.23.7/src/unified_to/models/operations/removekmsspace.py +0 -30
  782. Unified-python-sdk-0.23.7/src/unified_to/models/operations/removemartechlist.py +0 -30
  783. Unified-python-sdk-0.23.7/src/unified_to/models/operations/removemartechmember.py +0 -30
  784. Unified-python-sdk-0.23.7/src/unified_to/models/operations/removemessagingmessage.py +0 -30
  785. Unified-python-sdk-0.23.7/src/unified_to/models/operations/removepassthrough.py +0 -29
  786. Unified-python-sdk-0.23.7/src/unified_to/models/operations/removepaymentlink.py +0 -30
  787. Unified-python-sdk-0.23.7/src/unified_to/models/operations/removepaymentpayment.py +0 -30
  788. Unified-python-sdk-0.23.7/src/unified_to/models/operations/removestoragefile.py +0 -30
  789. Unified-python-sdk-0.23.7/src/unified_to/models/operations/removetaskproject.py +0 -30
  790. Unified-python-sdk-0.23.7/src/unified_to/models/operations/removetasktask.py +0 -30
  791. Unified-python-sdk-0.23.7/src/unified_to/models/operations/removeticketingcustomer.py +0 -30
  792. Unified-python-sdk-0.23.7/src/unified_to/models/operations/removeticketingnote.py +0 -30
  793. Unified-python-sdk-0.23.7/src/unified_to/models/operations/removeticketingticket.py +0 -30
  794. Unified-python-sdk-0.23.7/src/unified_to/models/operations/removeuccontact.py +0 -30
  795. Unified-python-sdk-0.23.7/src/unified_to/models/operations/removeunifiedconnection.py +0 -28
  796. Unified-python-sdk-0.23.7/src/unified_to/models/operations/removeunifiedwebhook.py +0 -28
  797. Unified-python-sdk-0.23.7/src/unified_to/models/operations/updateaccountingaccount.py +0 -33
  798. Unified-python-sdk-0.23.7/src/unified_to/models/operations/updateaccountingcontact.py +0 -32
  799. Unified-python-sdk-0.23.7/src/unified_to/models/operations/updateaccountinginvoice.py +0 -32
  800. Unified-python-sdk-0.23.7/src/unified_to/models/operations/updateaccountingjournal.py +0 -32
  801. Unified-python-sdk-0.23.7/src/unified_to/models/operations/updateaccountingtaxrate.py +0 -32
  802. Unified-python-sdk-0.23.7/src/unified_to/models/operations/updateaccountingtransaction.py +0 -32
  803. Unified-python-sdk-0.23.7/src/unified_to/models/operations/updateatsactivity.py +0 -32
  804. Unified-python-sdk-0.23.7/src/unified_to/models/operations/updateatsapplication.py +0 -32
  805. Unified-python-sdk-0.23.7/src/unified_to/models/operations/updateatscandidate.py +0 -32
  806. Unified-python-sdk-0.23.7/src/unified_to/models/operations/updateatsdocument.py +0 -32
  807. Unified-python-sdk-0.23.7/src/unified_to/models/operations/updateatsinterview.py +0 -32
  808. Unified-python-sdk-0.23.7/src/unified_to/models/operations/updateatsjob.py +0 -32
  809. Unified-python-sdk-0.23.7/src/unified_to/models/operations/updateatsscorecard.py +0 -32
  810. Unified-python-sdk-0.23.7/src/unified_to/models/operations/updatecommercecollection.py +0 -33
  811. Unified-python-sdk-0.23.7/src/unified_to/models/operations/updatecommerceinventory.py +0 -32
  812. Unified-python-sdk-0.23.7/src/unified_to/models/operations/updatecommerceitem.py +0 -32
  813. Unified-python-sdk-0.23.7/src/unified_to/models/operations/updatecommercelocation.py +0 -32
  814. Unified-python-sdk-0.23.7/src/unified_to/models/operations/updatecrmcompany.py +0 -33
  815. Unified-python-sdk-0.23.7/src/unified_to/models/operations/updatecrmcontact.py +0 -33
  816. Unified-python-sdk-0.23.7/src/unified_to/models/operations/updatecrmdeal.py +0 -33
  817. Unified-python-sdk-0.23.7/src/unified_to/models/operations/updatecrmevent.py +0 -33
  818. Unified-python-sdk-0.23.7/src/unified_to/models/operations/updatecrmlead.py +0 -32
  819. Unified-python-sdk-0.23.7/src/unified_to/models/operations/updatecrmpipeline.py +0 -32
  820. Unified-python-sdk-0.23.7/src/unified_to/models/operations/updatehriscompany.py +0 -32
  821. Unified-python-sdk-0.23.7/src/unified_to/models/operations/updatehrisemployee.py +0 -32
  822. Unified-python-sdk-0.23.7/src/unified_to/models/operations/updatehrisgroup.py +0 -32
  823. Unified-python-sdk-0.23.7/src/unified_to/models/operations/updatekmspage.py +0 -32
  824. Unified-python-sdk-0.23.7/src/unified_to/models/operations/updatekmsspace.py +0 -32
  825. Unified-python-sdk-0.23.7/src/unified_to/models/operations/updatemartechlist.py +0 -33
  826. Unified-python-sdk-0.23.7/src/unified_to/models/operations/updatemartechmember.py +0 -33
  827. Unified-python-sdk-0.23.7/src/unified_to/models/operations/updatemessagingmessage.py +0 -32
  828. Unified-python-sdk-0.23.7/src/unified_to/models/operations/updatepassthrough.py +0 -31
  829. Unified-python-sdk-0.23.7/src/unified_to/models/operations/updatepaymentlink.py +0 -32
  830. Unified-python-sdk-0.23.7/src/unified_to/models/operations/updatepaymentpayment.py +0 -32
  831. Unified-python-sdk-0.23.7/src/unified_to/models/operations/updatestoragefile.py +0 -32
  832. Unified-python-sdk-0.23.7/src/unified_to/models/operations/updatetaskproject.py +0 -32
  833. Unified-python-sdk-0.23.7/src/unified_to/models/operations/updatetasktask.py +0 -32
  834. Unified-python-sdk-0.23.7/src/unified_to/models/operations/updateticketingcustomer.py +0 -32
  835. Unified-python-sdk-0.23.7/src/unified_to/models/operations/updateticketingnote.py +0 -32
  836. Unified-python-sdk-0.23.7/src/unified_to/models/operations/updateticketingticket.py +0 -32
  837. Unified-python-sdk-0.23.7/src/unified_to/models/operations/updateuccontact.py +0 -33
  838. Unified-python-sdk-0.23.7/src/unified_to/models/operations/updateunifiedconnection.py +0 -31
  839. Unified-python-sdk-0.23.7/src/unified_to/models/operations/updateunifiedwebhooktrigger.py +0 -28
  840. Unified-python-sdk-0.23.7/src/unified_to/models/shared/__init__.py +0 -131
  841. Unified-python-sdk-0.23.7/src/unified_to/models/shared/accountingaccount.py +0 -50
  842. Unified-python-sdk-0.23.7/src/unified_to/models/shared/accountingcontact.py +0 -55
  843. Unified-python-sdk-0.23.7/src/unified_to/models/shared/accountingcontactpaymentmethod.py +0 -29
  844. Unified-python-sdk-0.23.7/src/unified_to/models/shared/accountingemail.py +0 -23
  845. Unified-python-sdk-0.23.7/src/unified_to/models/shared/accountinginvoice.py +0 -56
  846. Unified-python-sdk-0.23.7/src/unified_to/models/shared/accountingjournal.py +0 -26
  847. Unified-python-sdk-0.23.7/src/unified_to/models/shared/accountingjournallineitem.py +0 -22
  848. Unified-python-sdk-0.23.7/src/unified_to/models/shared/accountinglineitem.py +0 -33
  849. Unified-python-sdk-0.23.7/src/unified_to/models/shared/accountingorganization.py +0 -29
  850. Unified-python-sdk-0.23.7/src/unified_to/models/shared/accountingtaxrate.py +0 -24
  851. Unified-python-sdk-0.23.7/src/unified_to/models/shared/accountingtelephone.py +0 -25
  852. Unified-python-sdk-0.23.7/src/unified_to/models/shared/accountingtransaction.py +0 -35
  853. Unified-python-sdk-0.23.7/src/unified_to/models/shared/accountingtransactionlineitem.py +0 -22
  854. Unified-python-sdk-0.23.7/src/unified_to/models/shared/apicall.py +0 -38
  855. Unified-python-sdk-0.23.7/src/unified_to/models/shared/atsactivity.py +0 -37
  856. Unified-python-sdk-0.23.7/src/unified_to/models/shared/atsaddress.py +0 -22
  857. Unified-python-sdk-0.23.7/src/unified_to/models/shared/atsapplication.py +0 -49
  858. Unified-python-sdk-0.23.7/src/unified_to/models/shared/atsapplicationanswer.py +0 -16
  859. Unified-python-sdk-0.23.7/src/unified_to/models/shared/atscandidate.py +0 -49
  860. Unified-python-sdk-0.23.7/src/unified_to/models/shared/atscompany.py +0 -27
  861. Unified-python-sdk-0.23.7/src/unified_to/models/shared/atscompensation.py +0 -38
  862. Unified-python-sdk-0.23.7/src/unified_to/models/shared/atsdocument.py +0 -38
  863. Unified-python-sdk-0.23.7/src/unified_to/models/shared/atsemail.py +0 -23
  864. Unified-python-sdk-0.23.7/src/unified_to/models/shared/atsinterview.py +0 -38
  865. Unified-python-sdk-0.23.7/src/unified_to/models/shared/atsjob.py +0 -62
  866. Unified-python-sdk-0.23.7/src/unified_to/models/shared/atsjobquestion.py +0 -37
  867. Unified-python-sdk-0.23.7/src/unified_to/models/shared/atsscorecard.py +0 -37
  868. Unified-python-sdk-0.23.7/src/unified_to/models/shared/atsscorecardquestion.py +0 -17
  869. Unified-python-sdk-0.23.7/src/unified_to/models/shared/atsstatus.py +0 -37
  870. Unified-python-sdk-0.23.7/src/unified_to/models/shared/atstelephone.py +0 -25
  871. Unified-python-sdk-0.23.7/src/unified_to/models/shared/commercecollection.py +0 -40
  872. Unified-python-sdk-0.23.7/src/unified_to/models/shared/commerceinventory.py +0 -24
  873. Unified-python-sdk-0.23.7/src/unified_to/models/shared/commerceitem.py +0 -36
  874. Unified-python-sdk-0.23.7/src/unified_to/models/shared/commerceitemmedia.py +0 -27
  875. Unified-python-sdk-0.23.7/src/unified_to/models/shared/commerceitemoption.py +0 -18
  876. Unified-python-sdk-0.23.7/src/unified_to/models/shared/commerceitemprice.py +0 -17
  877. Unified-python-sdk-0.23.7/src/unified_to/models/shared/commerceitemvariant.py +0 -55
  878. Unified-python-sdk-0.23.7/src/unified_to/models/shared/commercelocation.py +0 -25
  879. Unified-python-sdk-0.23.7/src/unified_to/models/shared/connection.py +0 -37
  880. Unified-python-sdk-0.23.7/src/unified_to/models/shared/crmcompany.py +0 -40
  881. Unified-python-sdk-0.23.7/src/unified_to/models/shared/crmcontact.py +0 -38
  882. Unified-python-sdk-0.23.7/src/unified_to/models/shared/crmdeal.py +0 -36
  883. Unified-python-sdk-0.23.7/src/unified_to/models/shared/crmemail.py +0 -23
  884. Unified-python-sdk-0.23.7/src/unified_to/models/shared/crmevent.py +0 -55
  885. Unified-python-sdk-0.23.7/src/unified_to/models/shared/crmlead.py +0 -35
  886. Unified-python-sdk-0.23.7/src/unified_to/models/shared/crmpipeline.py +0 -26
  887. Unified-python-sdk-0.23.7/src/unified_to/models/shared/crmstage.py +0 -23
  888. Unified-python-sdk-0.23.7/src/unified_to/models/shared/crmtelephone.py +0 -25
  889. Unified-python-sdk-0.23.7/src/unified_to/models/shared/enrichcompany.py +0 -49
  890. Unified-python-sdk-0.23.7/src/unified_to/models/shared/enrichemail.py +0 -24
  891. Unified-python-sdk-0.23.7/src/unified_to/models/shared/enrichperson.py +0 -55
  892. Unified-python-sdk-0.23.7/src/unified_to/models/shared/enrichpersonworkhistory.py +0 -23
  893. Unified-python-sdk-0.23.7/src/unified_to/models/shared/enrichtelephone.py +0 -25
  894. Unified-python-sdk-0.23.7/src/unified_to/models/shared/genaicontent.py +0 -22
  895. Unified-python-sdk-0.23.7/src/unified_to/models/shared/genaimodel.py +0 -21
  896. Unified-python-sdk-0.23.7/src/unified_to/models/shared/genaiprompt.py +0 -21
  897. Unified-python-sdk-0.23.7/src/unified_to/models/shared/hriscompany.py +0 -24
  898. Unified-python-sdk-0.23.7/src/unified_to/models/shared/hriscompensation.py +0 -37
  899. Unified-python-sdk-0.23.7/src/unified_to/models/shared/hrisemail.py +0 -23
  900. Unified-python-sdk-0.23.7/src/unified_to/models/shared/hrisemployee.py +0 -85
  901. Unified-python-sdk-0.23.7/src/unified_to/models/shared/hrisgroup.py +0 -39
  902. Unified-python-sdk-0.23.7/src/unified_to/models/shared/hrispayslip.py +0 -37
  903. Unified-python-sdk-0.23.7/src/unified_to/models/shared/hrispayslipdetail.py +0 -41
  904. Unified-python-sdk-0.23.7/src/unified_to/models/shared/hristelephone.py +0 -25
  905. Unified-python-sdk-0.23.7/src/unified_to/models/shared/hristimeoff.py +0 -40
  906. Unified-python-sdk-0.23.7/src/unified_to/models/shared/integration.py +0 -46
  907. Unified-python-sdk-0.23.7/src/unified_to/models/shared/integrationsupport.py +0 -281
  908. Unified-python-sdk-0.23.7/src/unified_to/models/shared/issue.py +0 -35
  909. Unified-python-sdk-0.23.7/src/unified_to/models/shared/kmspage.py +0 -34
  910. Unified-python-sdk-0.23.7/src/unified_to/models/shared/kmsspace.py +0 -25
  911. Unified-python-sdk-0.23.7/src/unified_to/models/shared/marketingemail.py +0 -23
  912. Unified-python-sdk-0.23.7/src/unified_to/models/shared/marketinglist.py +0 -23
  913. Unified-python-sdk-0.23.7/src/unified_to/models/shared/marketingmember.py +0 -30
  914. Unified-python-sdk-0.23.7/src/unified_to/models/shared/messagingattachment.py +0 -19
  915. Unified-python-sdk-0.23.7/src/unified_to/models/shared/messagingchannel.py +0 -29
  916. Unified-python-sdk-0.23.7/src/unified_to/models/shared/messagingmember.py +0 -17
  917. Unified-python-sdk-0.23.7/src/unified_to/models/shared/messagingmessage.py +0 -32
  918. Unified-python-sdk-0.23.7/src/unified_to/models/shared/paymentlink.py +0 -29
  919. Unified-python-sdk-0.23.7/src/unified_to/models/shared/paymentlinklineitem.py +0 -33
  920. Unified-python-sdk-0.23.7/src/unified_to/models/shared/paymentpayment.py +0 -28
  921. Unified-python-sdk-0.23.7/src/unified_to/models/shared/paymentpayout.py +0 -30
  922. Unified-python-sdk-0.23.7/src/unified_to/models/shared/paymentrefund.py +0 -32
  923. Unified-python-sdk-0.23.7/src/unified_to/models/shared/property_accountingcontact_billing_address.py +0 -22
  924. Unified-python-sdk-0.23.7/src/unified_to/models/shared/property_accountingcontact_shipping_address.py +0 -22
  925. Unified-python-sdk-0.23.7/src/unified_to/models/shared/property_accountingorganization_address.py +0 -22
  926. Unified-python-sdk-0.23.7/src/unified_to/models/shared/property_atscandidate_address.py +0 -22
  927. Unified-python-sdk-0.23.7/src/unified_to/models/shared/property_atscompany_address.py +0 -22
  928. Unified-python-sdk-0.23.7/src/unified_to/models/shared/property_commercelocation_address.py +0 -22
  929. Unified-python-sdk-0.23.7/src/unified_to/models/shared/property_connection_auth.py +0 -41
  930. Unified-python-sdk-0.23.7/src/unified_to/models/shared/property_connection_categories.py +0 -24
  931. Unified-python-sdk-0.23.7/src/unified_to/models/shared/property_connection_permissions.py +0 -103
  932. Unified-python-sdk-0.23.7/src/unified_to/models/shared/property_crmcompany_address.py +0 -22
  933. Unified-python-sdk-0.23.7/src/unified_to/models/shared/property_crmcontact_address.py +0 -22
  934. Unified-python-sdk-0.23.7/src/unified_to/models/shared/property_crmevent_call.py +0 -20
  935. Unified-python-sdk-0.23.7/src/unified_to/models/shared/property_crmevent_email.py +0 -23
  936. Unified-python-sdk-0.23.7/src/unified_to/models/shared/property_crmevent_meeting.py +0 -21
  937. Unified-python-sdk-0.23.7/src/unified_to/models/shared/property_crmevent_note.py +0 -17
  938. Unified-python-sdk-0.23.7/src/unified_to/models/shared/property_crmevent_task.py +0 -36
  939. Unified-python-sdk-0.23.7/src/unified_to/models/shared/property_crmlead_address.py +0 -22
  940. Unified-python-sdk-0.23.7/src/unified_to/models/shared/property_enrichcompany_address.py +0 -23
  941. Unified-python-sdk-0.23.7/src/unified_to/models/shared/property_enrichperson_address.py +0 -23
  942. Unified-python-sdk-0.23.7/src/unified_to/models/shared/property_hriscompany_address.py +0 -22
  943. Unified-python-sdk-0.23.7/src/unified_to/models/shared/property_hrisemployee_address.py +0 -22
  944. Unified-python-sdk-0.23.7/src/unified_to/models/shared/property_hrisemployee_employee_roles.py +0 -12
  945. Unified-python-sdk-0.23.7/src/unified_to/models/shared/property_integration_categories.py +0 -24
  946. Unified-python-sdk-0.23.7/src/unified_to/models/shared/property_integrationsupport_webhook_events.py +0 -20
  947. Unified-python-sdk-0.23.7/src/unified_to/models/shared/property_messagingmessage_author_member.py +0 -17
  948. Unified-python-sdk-0.23.7/src/unified_to/models/shared/property_property_integrationsupport_webhook_events_created.py +0 -9
  949. Unified-python-sdk-0.23.7/src/unified_to/models/shared/property_property_integrationsupport_webhook_events_deleted.py +0 -9
  950. Unified-python-sdk-0.23.7/src/unified_to/models/shared/property_property_integrationsupport_webhook_events_updated.py +0 -9
  951. Unified-python-sdk-0.23.7/src/unified_to/models/shared/property_storagepermission_roles.py +0 -10
  952. Unified-python-sdk-0.23.7/src/unified_to/models/shared/property_uccall_telephone.py +0 -26
  953. Unified-python-sdk-0.23.7/src/unified_to/models/shared/security.py +0 -12
  954. Unified-python-sdk-0.23.7/src/unified_to/models/shared/storagefile.py +0 -37
  955. Unified-python-sdk-0.23.7/src/unified_to/models/shared/storagepermission.py +0 -18
  956. Unified-python-sdk-0.23.7/src/unified_to/models/shared/taskproject.py +0 -24
  957. Unified-python-sdk-0.23.7/src/unified_to/models/shared/tasktask.py +0 -40
  958. Unified-python-sdk-0.23.7/src/unified_to/models/shared/ticketingcustomer.py +0 -26
  959. Unified-python-sdk-0.23.7/src/unified_to/models/shared/ticketingemail.py +0 -23
  960. Unified-python-sdk-0.23.7/src/unified_to/models/shared/ticketingnote.py +0 -24
  961. Unified-python-sdk-0.23.7/src/unified_to/models/shared/ticketingtelephone.py +0 -25
  962. Unified-python-sdk-0.23.7/src/unified_to/models/shared/ticketingticket.py +0 -38
  963. Unified-python-sdk-0.23.7/src/unified_to/models/shared/uccall.py +0 -28
  964. Unified-python-sdk-0.23.7/src/unified_to/models/shared/uccontact.py +0 -31
  965. Unified-python-sdk-0.23.7/src/unified_to/models/shared/ucemail.py +0 -23
  966. Unified-python-sdk-0.23.7/src/unified_to/models/shared/uctelephone.py +0 -25
  967. Unified-python-sdk-0.23.7/src/unified_to/models/shared/webhook.py +0 -106
  968. Unified-python-sdk-0.23.7/src/unified_to/note.py +0 -358
  969. Unified-python-sdk-0.23.7/src/unified_to/organization.py +0 -129
  970. Unified-python-sdk-0.23.7/src/unified_to/page.py +0 -358
  971. Unified-python-sdk-0.23.7/src/unified_to/passthrough.py +0 -301
  972. Unified-python-sdk-0.23.7/src/unified_to/payment.py +0 -923
  973. Unified-python-sdk-0.23.7/src/unified_to/payout.py +0 -129
  974. Unified-python-sdk-0.23.7/src/unified_to/payslip.py +0 -129
  975. Unified-python-sdk-0.23.7/src/unified_to/person.py +0 -73
  976. Unified-python-sdk-0.23.7/src/unified_to/pipeline.py +0 -358
  977. Unified-python-sdk-0.23.7/src/unified_to/project.py +0 -358
  978. Unified-python-sdk-0.23.7/src/unified_to/prompt.py +0 -75
  979. Unified-python-sdk-0.23.7/src/unified_to/refund.py +0 -129
  980. Unified-python-sdk-0.23.7/src/unified_to/scorecard.py +0 -358
  981. Unified-python-sdk-0.23.7/src/unified_to/sdk.py +0 -278
  982. Unified-python-sdk-0.23.7/src/unified_to/sdkconfiguration.py +0 -47
  983. Unified-python-sdk-0.23.7/src/unified_to/space.py +0 -358
  984. Unified-python-sdk-0.23.7/src/unified_to/storage.py +0 -358
  985. Unified-python-sdk-0.23.7/src/unified_to/task.py +0 -699
  986. Unified-python-sdk-0.23.7/src/unified_to/taxrate.py +0 -358
  987. Unified-python-sdk-0.23.7/src/unified_to/ticket.py +0 -358
  988. Unified-python-sdk-0.23.7/src/unified_to/ticketing.py +0 -1040
  989. Unified-python-sdk-0.23.7/src/unified_to/timeoff.py +0 -129
  990. Unified-python-sdk-0.23.7/src/unified_to/transaction.py +0 -358
  991. Unified-python-sdk-0.23.7/src/unified_to/uc.py +0 -414
  992. Unified-python-sdk-0.23.7/src/unified_to/unified.py +0 -1032
  993. Unified-python-sdk-0.23.7/src/unified_to/utils/__init__.py +0 -4
  994. Unified-python-sdk-0.23.7/src/unified_to/utils/retries.py +0 -119
  995. Unified-python-sdk-0.23.7/src/unified_to/utils/utils.py +0 -1116
  996. Unified-python-sdk-0.23.7/src/unified_to/webhook.py +0 -354
  997. {Unified-python-sdk-0.23.7 → Unified-python-sdk-0.23.8}/LICENSE.md +0 -0
  998. {Unified-python-sdk-0.23.7 → Unified-python-sdk-0.23.8}/README.md +0 -0
  999. {Unified-python-sdk-0.23.7 → Unified-python-sdk-0.23.8}/setup.cfg +0 -0
  1000. {Unified-python-sdk-0.23.7 → Unified-python-sdk-0.23.8}/src/Unified_python_sdk.egg-info/SOURCES.txt +0 -0
  1001. {Unified-python-sdk-0.23.7 → Unified-python-sdk-0.23.8}/src/Unified_python_sdk.egg-info/dependency_links.txt +0 -0
  1002. {Unified-python-sdk-0.23.7 → Unified-python-sdk-0.23.8}/src/Unified_python_sdk.egg-info/requires.txt +0 -0
  1003. {Unified-python-sdk-0.23.7 → Unified-python-sdk-0.23.8}/src/Unified_python_sdk.egg-info/top_level.txt +0 -0
@@ -0,0 +1,991 @@
1
+ Metadata-Version: 2.1
2
+ Name: Unified-python-sdk
3
+ Version: 0.23.8
4
+ Summary: Python Client SDK for Unified.to
5
+ Home-page: https://github.com/unified-to/unified-python-sdk.git
6
+ Author: Unified API Inc
7
+ License: UNKNOWN
8
+ Description: <div align="left">
9
+ <a href="https://speakeasyapi.dev/"><img src="https://custom-icon-badges.demolab.com/badge/-Built%20By%20Speakeasy-212015?style=for-the-badge&logoColor=FBE331&logo=speakeasy&labelColor=545454" /></a>
10
+ <a href="https://github.com/unified-to/unified-python-sdk/actions"><img src="https://img.shields.io/github/actions/workflow/status/unified-to/unified-python-sdk/speakeasy_sdk_generation.yml?style=for-the-badge" /></a>
11
+
12
+ </div>
13
+
14
+ <!-- Start SDK Installation [installation] -->
15
+ ## SDK Installation
16
+
17
+ ```bash
18
+ pip install Unified-python-sdk
19
+ ```
20
+ <!-- End SDK Installation [installation] -->
21
+
22
+ <!-- Start SDK Example Usage [usage] -->
23
+ ## SDK Example Usage
24
+
25
+ ### Example
26
+
27
+ ```python
28
+ import unified_to
29
+ from unified_to.models import operations, shared
30
+
31
+ s = unified_to.UnifiedTo(
32
+ security=shared.Security(
33
+ jwt="<YOUR_API_KEY_HERE>",
34
+ ),
35
+ )
36
+
37
+
38
+ res = s.accounting.create_accounting_account(request=operations.CreateAccountingAccountRequest(
39
+ connection_id='<value>',
40
+ ))
41
+
42
+ if res.accounting_account is not None:
43
+ # handle response
44
+ pass
45
+
46
+ ```
47
+ <!-- End SDK Example Usage [usage] -->
48
+
49
+ <!-- Start Available Resources and Operations [operations] -->
50
+ ## Available Resources and Operations
51
+
52
+ ### [accounting](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/accounting/README.md)
53
+
54
+ * [create_accounting_account](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/accounting/README.md#create_accounting_account) - Create an account
55
+ * [create_accounting_contact](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/accounting/README.md#create_accounting_contact) - Create a contact
56
+ * [create_accounting_invoice](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/accounting/README.md#create_accounting_invoice) - Create an invoice
57
+ * [create_accounting_journal](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/accounting/README.md#create_accounting_journal) - Create a journal
58
+ * [create_accounting_taxrate](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/accounting/README.md#create_accounting_taxrate) - Create a taxrate
59
+ * [create_accounting_transaction](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/accounting/README.md#create_accounting_transaction) - Create a transaction
60
+ * [get_accounting_account](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/accounting/README.md#get_accounting_account) - Retrieve an account
61
+ * [get_accounting_contact](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/accounting/README.md#get_accounting_contact) - Retrieve a contact
62
+ * [get_accounting_invoice](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/accounting/README.md#get_accounting_invoice) - Retrieve an invoice
63
+ * [get_accounting_journal](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/accounting/README.md#get_accounting_journal) - Retrieve a journal
64
+ * [get_accounting_organization](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/accounting/README.md#get_accounting_organization) - Retrieve an organization
65
+ * [get_accounting_taxrate](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/accounting/README.md#get_accounting_taxrate) - Retrieve a taxrate
66
+ * [get_accounting_transaction](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/accounting/README.md#get_accounting_transaction) - Retrieve a transaction
67
+ * [list_accounting_accounts](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/accounting/README.md#list_accounting_accounts) - List all accounts
68
+ * [list_accounting_contacts](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/accounting/README.md#list_accounting_contacts) - List all contacts
69
+ * [list_accounting_invoices](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/accounting/README.md#list_accounting_invoices) - List all invoices
70
+ * [list_accounting_journals](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/accounting/README.md#list_accounting_journals) - List all journals
71
+ * [list_accounting_organizations](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/accounting/README.md#list_accounting_organizations) - List all organizations
72
+ * [list_accounting_taxrates](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/accounting/README.md#list_accounting_taxrates) - List all taxrates
73
+ * [list_accounting_transactions](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/accounting/README.md#list_accounting_transactions) - List all transactions
74
+ * [patch_accounting_account](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/accounting/README.md#patch_accounting_account) - Update an account
75
+ * [patch_accounting_contact](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/accounting/README.md#patch_accounting_contact) - Update a contact
76
+ * [patch_accounting_invoice](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/accounting/README.md#patch_accounting_invoice) - Update an invoice
77
+ * [patch_accounting_journal](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/accounting/README.md#patch_accounting_journal) - Update a journal
78
+ * [patch_accounting_taxrate](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/accounting/README.md#patch_accounting_taxrate) - Update a taxrate
79
+ * [patch_accounting_transaction](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/accounting/README.md#patch_accounting_transaction) - Update a transaction
80
+ * [remove_accounting_account](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/accounting/README.md#remove_accounting_account) - Remove an account
81
+ * [remove_accounting_contact](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/accounting/README.md#remove_accounting_contact) - Remove a contact
82
+ * [remove_accounting_invoice](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/accounting/README.md#remove_accounting_invoice) - Remove an invoice
83
+ * [remove_accounting_journal](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/accounting/README.md#remove_accounting_journal) - Remove a journal
84
+ * [remove_accounting_taxrate](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/accounting/README.md#remove_accounting_taxrate) - Remove a taxrate
85
+ * [remove_accounting_transaction](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/accounting/README.md#remove_accounting_transaction) - Remove a transaction
86
+ * [update_accounting_account](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/accounting/README.md#update_accounting_account) - Update an account
87
+ * [update_accounting_contact](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/accounting/README.md#update_accounting_contact) - Update a contact
88
+ * [update_accounting_invoice](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/accounting/README.md#update_accounting_invoice) - Update an invoice
89
+ * [update_accounting_journal](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/accounting/README.md#update_accounting_journal) - Update a journal
90
+ * [update_accounting_taxrate](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/accounting/README.md#update_accounting_taxrate) - Update a taxrate
91
+ * [update_accounting_transaction](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/accounting/README.md#update_accounting_transaction) - Update a transaction
92
+
93
+ ### [account](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/account/README.md)
94
+
95
+ * [create_accounting_account](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/account/README.md#create_accounting_account) - Create an account
96
+ * [get_accounting_account](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/account/README.md#get_accounting_account) - Retrieve an account
97
+ * [list_accounting_accounts](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/account/README.md#list_accounting_accounts) - List all accounts
98
+ * [patch_accounting_account](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/account/README.md#patch_accounting_account) - Update an account
99
+ * [remove_accounting_account](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/account/README.md#remove_accounting_account) - Remove an account
100
+ * [update_accounting_account](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/account/README.md#update_accounting_account) - Update an account
101
+
102
+ ### [contact](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/contact/README.md)
103
+
104
+ * [create_accounting_contact](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/contact/README.md#create_accounting_contact) - Create a contact
105
+ * [create_crm_contact](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/contact/README.md#create_crm_contact) - Create a contact
106
+ * [create_uc_contact](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/contact/README.md#create_uc_contact) - Create a contact
107
+ * [get_accounting_contact](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/contact/README.md#get_accounting_contact) - Retrieve a contact
108
+ * [get_crm_contact](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/contact/README.md#get_crm_contact) - Retrieve a contact
109
+ * [get_uc_contact](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/contact/README.md#get_uc_contact) - Retrieve a contact
110
+ * [list_accounting_contacts](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/contact/README.md#list_accounting_contacts) - List all contacts
111
+ * [list_crm_contacts](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/contact/README.md#list_crm_contacts) - List all contacts
112
+ * [list_uc_contacts](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/contact/README.md#list_uc_contacts) - List all contacts
113
+ * [patch_accounting_contact](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/contact/README.md#patch_accounting_contact) - Update a contact
114
+ * [patch_crm_contact](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/contact/README.md#patch_crm_contact) - Update a contact
115
+ * [patch_uc_contact](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/contact/README.md#patch_uc_contact) - Update a contact
116
+ * [remove_accounting_contact](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/contact/README.md#remove_accounting_contact) - Remove a contact
117
+ * [remove_crm_contact](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/contact/README.md#remove_crm_contact) - Remove a contact
118
+ * [remove_uc_contact](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/contact/README.md#remove_uc_contact) - Remove a contact
119
+ * [update_accounting_contact](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/contact/README.md#update_accounting_contact) - Update a contact
120
+ * [update_crm_contact](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/contact/README.md#update_crm_contact) - Update a contact
121
+ * [update_uc_contact](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/contact/README.md#update_uc_contact) - Update a contact
122
+
123
+ ### [invoice](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/invoice/README.md)
124
+
125
+ * [create_accounting_invoice](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/invoice/README.md#create_accounting_invoice) - Create an invoice
126
+ * [get_accounting_invoice](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/invoice/README.md#get_accounting_invoice) - Retrieve an invoice
127
+ * [list_accounting_invoices](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/invoice/README.md#list_accounting_invoices) - List all invoices
128
+ * [patch_accounting_invoice](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/invoice/README.md#patch_accounting_invoice) - Update an invoice
129
+ * [remove_accounting_invoice](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/invoice/README.md#remove_accounting_invoice) - Remove an invoice
130
+ * [update_accounting_invoice](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/invoice/README.md#update_accounting_invoice) - Update an invoice
131
+
132
+ ### [journal](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/journal/README.md)
133
+
134
+ * [create_accounting_journal](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/journal/README.md#create_accounting_journal) - Create a journal
135
+ * [get_accounting_journal](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/journal/README.md#get_accounting_journal) - Retrieve a journal
136
+ * [list_accounting_journals](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/journal/README.md#list_accounting_journals) - List all journals
137
+ * [patch_accounting_journal](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/journal/README.md#patch_accounting_journal) - Update a journal
138
+ * [remove_accounting_journal](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/journal/README.md#remove_accounting_journal) - Remove a journal
139
+ * [update_accounting_journal](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/journal/README.md#update_accounting_journal) - Update a journal
140
+
141
+ ### [organization](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/organization/README.md)
142
+
143
+ * [get_accounting_organization](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/organization/README.md#get_accounting_organization) - Retrieve an organization
144
+ * [list_accounting_organizations](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/organization/README.md#list_accounting_organizations) - List all organizations
145
+
146
+ ### [taxrate](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/taxrate/README.md)
147
+
148
+ * [create_accounting_taxrate](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/taxrate/README.md#create_accounting_taxrate) - Create a taxrate
149
+ * [get_accounting_taxrate](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/taxrate/README.md#get_accounting_taxrate) - Retrieve a taxrate
150
+ * [list_accounting_taxrates](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/taxrate/README.md#list_accounting_taxrates) - List all taxrates
151
+ * [patch_accounting_taxrate](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/taxrate/README.md#patch_accounting_taxrate) - Update a taxrate
152
+ * [remove_accounting_taxrate](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/taxrate/README.md#remove_accounting_taxrate) - Remove a taxrate
153
+ * [update_accounting_taxrate](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/taxrate/README.md#update_accounting_taxrate) - Update a taxrate
154
+
155
+ ### [transaction](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/transaction/README.md)
156
+
157
+ * [create_accounting_transaction](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/transaction/README.md#create_accounting_transaction) - Create a transaction
158
+ * [get_accounting_transaction](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/transaction/README.md#get_accounting_transaction) - Retrieve a transaction
159
+ * [list_accounting_transactions](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/transaction/README.md#list_accounting_transactions) - List all transactions
160
+ * [patch_accounting_transaction](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/transaction/README.md#patch_accounting_transaction) - Update a transaction
161
+ * [remove_accounting_transaction](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/transaction/README.md#remove_accounting_transaction) - Remove a transaction
162
+ * [update_accounting_transaction](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/transaction/README.md#update_accounting_transaction) - Update a transaction
163
+
164
+ ### [ats](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/ats/README.md)
165
+
166
+ * [create_ats_activity](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/ats/README.md#create_ats_activity) - Create an activity
167
+ * [create_ats_application](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/ats/README.md#create_ats_application) - Create an application
168
+ * [create_ats_candidate](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/ats/README.md#create_ats_candidate) - Create a candidate
169
+ * [create_ats_document](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/ats/README.md#create_ats_document) - Create a document
170
+ * [create_ats_interview](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/ats/README.md#create_ats_interview) - Create an interview
171
+ * [create_ats_job](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/ats/README.md#create_ats_job) - Create a job
172
+ * [create_ats_scorecard](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/ats/README.md#create_ats_scorecard) - Create a scorecard
173
+ * [get_ats_activity](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/ats/README.md#get_ats_activity) - Retrieve an activity
174
+ * [get_ats_application](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/ats/README.md#get_ats_application) - Retrieve an application
175
+ * [get_ats_candidate](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/ats/README.md#get_ats_candidate) - Retrieve a candidate
176
+ * [get_ats_company](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/ats/README.md#get_ats_company) - Retrieve a company
177
+ * [get_ats_document](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/ats/README.md#get_ats_document) - Retrieve a document
178
+ * [get_ats_interview](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/ats/README.md#get_ats_interview) - Retrieve an interview
179
+ * [get_ats_job](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/ats/README.md#get_ats_job) - Retrieve a job
180
+ * [get_ats_scorecard](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/ats/README.md#get_ats_scorecard) - Retrieve a scorecard
181
+ * [list_ats_activities](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/ats/README.md#list_ats_activities) - List all activities
182
+ * [list_ats_applications](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/ats/README.md#list_ats_applications) - List all applications
183
+ * [list_ats_applicationstatuses](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/ats/README.md#list_ats_applicationstatuses) - List all applicationstatuses
184
+ * [list_ats_candidates](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/ats/README.md#list_ats_candidates) - List all candidates
185
+ * [list_ats_companies](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/ats/README.md#list_ats_companies) - List all companies
186
+ * [list_ats_documents](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/ats/README.md#list_ats_documents) - List all documents
187
+ * [list_ats_interviews](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/ats/README.md#list_ats_interviews) - List all interviews
188
+ * [list_ats_jobs](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/ats/README.md#list_ats_jobs) - List all jobs
189
+ * [list_ats_scorecards](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/ats/README.md#list_ats_scorecards) - List all scorecards
190
+ * [patch_ats_activity](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/ats/README.md#patch_ats_activity) - Update an activity
191
+ * [patch_ats_application](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/ats/README.md#patch_ats_application) - Update an application
192
+ * [patch_ats_candidate](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/ats/README.md#patch_ats_candidate) - Update a candidate
193
+ * [patch_ats_document](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/ats/README.md#patch_ats_document) - Update a document
194
+ * [patch_ats_interview](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/ats/README.md#patch_ats_interview) - Update an interview
195
+ * [patch_ats_job](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/ats/README.md#patch_ats_job) - Update a job
196
+ * [patch_ats_scorecard](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/ats/README.md#patch_ats_scorecard) - Update a scorecard
197
+ * [remove_ats_activity](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/ats/README.md#remove_ats_activity) - Remove an activity
198
+ * [remove_ats_application](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/ats/README.md#remove_ats_application) - Remove an application
199
+ * [remove_ats_candidate](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/ats/README.md#remove_ats_candidate) - Remove a candidate
200
+ * [remove_ats_document](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/ats/README.md#remove_ats_document) - Remove a document
201
+ * [remove_ats_interview](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/ats/README.md#remove_ats_interview) - Remove an interview
202
+ * [remove_ats_job](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/ats/README.md#remove_ats_job) - Remove a job
203
+ * [remove_ats_scorecard](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/ats/README.md#remove_ats_scorecard) - Remove a scorecard
204
+ * [update_ats_activity](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/ats/README.md#update_ats_activity) - Update an activity
205
+ * [update_ats_application](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/ats/README.md#update_ats_application) - Update an application
206
+ * [update_ats_candidate](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/ats/README.md#update_ats_candidate) - Update a candidate
207
+ * [update_ats_document](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/ats/README.md#update_ats_document) - Update a document
208
+ * [update_ats_interview](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/ats/README.md#update_ats_interview) - Update an interview
209
+ * [update_ats_job](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/ats/README.md#update_ats_job) - Update a job
210
+ * [update_ats_scorecard](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/ats/README.md#update_ats_scorecard) - Update a scorecard
211
+
212
+ ### [activity](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/activity/README.md)
213
+
214
+ * [create_ats_activity](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/activity/README.md#create_ats_activity) - Create an activity
215
+ * [get_ats_activity](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/activity/README.md#get_ats_activity) - Retrieve an activity
216
+ * [list_ats_activities](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/activity/README.md#list_ats_activities) - List all activities
217
+ * [patch_ats_activity](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/activity/README.md#patch_ats_activity) - Update an activity
218
+ * [remove_ats_activity](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/activity/README.md#remove_ats_activity) - Remove an activity
219
+ * [update_ats_activity](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/activity/README.md#update_ats_activity) - Update an activity
220
+
221
+ ### [application](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/application/README.md)
222
+
223
+ * [create_ats_application](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/application/README.md#create_ats_application) - Create an application
224
+ * [get_ats_application](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/application/README.md#get_ats_application) - Retrieve an application
225
+ * [list_ats_applications](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/application/README.md#list_ats_applications) - List all applications
226
+ * [patch_ats_application](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/application/README.md#patch_ats_application) - Update an application
227
+ * [remove_ats_application](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/application/README.md#remove_ats_application) - Remove an application
228
+ * [update_ats_application](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/application/README.md#update_ats_application) - Update an application
229
+
230
+ ### [applicationstatus](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/applicationstatus/README.md)
231
+
232
+ * [list_ats_applicationstatuses](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/applicationstatus/README.md#list_ats_applicationstatuses) - List all applicationstatuses
233
+
234
+ ### [candidate](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/candidate/README.md)
235
+
236
+ * [create_ats_candidate](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/candidate/README.md#create_ats_candidate) - Create a candidate
237
+ * [get_ats_candidate](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/candidate/README.md#get_ats_candidate) - Retrieve a candidate
238
+ * [list_ats_candidates](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/candidate/README.md#list_ats_candidates) - List all candidates
239
+ * [patch_ats_candidate](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/candidate/README.md#patch_ats_candidate) - Update a candidate
240
+ * [remove_ats_candidate](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/candidate/README.md#remove_ats_candidate) - Remove a candidate
241
+ * [update_ats_candidate](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/candidate/README.md#update_ats_candidate) - Update a candidate
242
+
243
+ ### [company](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/company/README.md)
244
+
245
+ * [create_crm_company](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/company/README.md#create_crm_company) - Create a company
246
+ * [create_hris_company](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/company/README.md#create_hris_company) - Create a company
247
+ * [get_ats_company](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/company/README.md#get_ats_company) - Retrieve a company
248
+ * [get_crm_company](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/company/README.md#get_crm_company) - Retrieve a company
249
+ * [get_hris_company](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/company/README.md#get_hris_company) - Retrieve a company
250
+ * [list_ats_companies](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/company/README.md#list_ats_companies) - List all companies
251
+ * [list_crm_companies](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/company/README.md#list_crm_companies) - List all companies
252
+ * [list_enrich_companies](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/company/README.md#list_enrich_companies) - Retrieve enrichment information for a company
253
+ * [list_hris_companies](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/company/README.md#list_hris_companies) - List all companies
254
+ * [patch_crm_company](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/company/README.md#patch_crm_company) - Update a company
255
+ * [patch_hris_company](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/company/README.md#patch_hris_company) - Update a company
256
+ * [remove_crm_company](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/company/README.md#remove_crm_company) - Remove a company
257
+ * [remove_hris_company](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/company/README.md#remove_hris_company) - Remove a company
258
+ * [update_crm_company](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/company/README.md#update_crm_company) - Update a company
259
+ * [update_hris_company](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/company/README.md#update_hris_company) - Update a company
260
+
261
+ ### [document](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/document/README.md)
262
+
263
+ * [create_ats_document](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/document/README.md#create_ats_document) - Create a document
264
+ * [get_ats_document](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/document/README.md#get_ats_document) - Retrieve a document
265
+ * [list_ats_documents](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/document/README.md#list_ats_documents) - List all documents
266
+ * [patch_ats_document](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/document/README.md#patch_ats_document) - Update a document
267
+ * [remove_ats_document](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/document/README.md#remove_ats_document) - Remove a document
268
+ * [update_ats_document](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/document/README.md#update_ats_document) - Update a document
269
+
270
+ ### [interview](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/interview/README.md)
271
+
272
+ * [create_ats_interview](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/interview/README.md#create_ats_interview) - Create an interview
273
+ * [get_ats_interview](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/interview/README.md#get_ats_interview) - Retrieve an interview
274
+ * [list_ats_interviews](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/interview/README.md#list_ats_interviews) - List all interviews
275
+ * [patch_ats_interview](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/interview/README.md#patch_ats_interview) - Update an interview
276
+ * [remove_ats_interview](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/interview/README.md#remove_ats_interview) - Remove an interview
277
+ * [update_ats_interview](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/interview/README.md#update_ats_interview) - Update an interview
278
+
279
+ ### [job](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/job/README.md)
280
+
281
+ * [create_ats_job](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/job/README.md#create_ats_job) - Create a job
282
+ * [get_ats_job](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/job/README.md#get_ats_job) - Retrieve a job
283
+ * [list_ats_jobs](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/job/README.md#list_ats_jobs) - List all jobs
284
+ * [patch_ats_job](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/job/README.md#patch_ats_job) - Update a job
285
+ * [remove_ats_job](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/job/README.md#remove_ats_job) - Remove a job
286
+ * [update_ats_job](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/job/README.md#update_ats_job) - Update a job
287
+
288
+ ### [scorecard](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/scorecard/README.md)
289
+
290
+ * [create_ats_scorecard](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/scorecard/README.md#create_ats_scorecard) - Create a scorecard
291
+ * [get_ats_scorecard](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/scorecard/README.md#get_ats_scorecard) - Retrieve a scorecard
292
+ * [list_ats_scorecards](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/scorecard/README.md#list_ats_scorecards) - List all scorecards
293
+ * [patch_ats_scorecard](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/scorecard/README.md#patch_ats_scorecard) - Update a scorecard
294
+ * [remove_ats_scorecard](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/scorecard/README.md#remove_ats_scorecard) - Remove a scorecard
295
+ * [update_ats_scorecard](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/scorecard/README.md#update_ats_scorecard) - Update a scorecard
296
+
297
+ ### [commerce](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/commerce/README.md)
298
+
299
+ * [create_commerce_collection](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/commerce/README.md#create_commerce_collection) - Create a collection
300
+ * [create_commerce_inventory](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/commerce/README.md#create_commerce_inventory) - Create an inventory
301
+ * [create_commerce_item](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/commerce/README.md#create_commerce_item) - Create an item
302
+ * [create_commerce_location](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/commerce/README.md#create_commerce_location) - Create a location
303
+ * [get_commerce_collection](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/commerce/README.md#get_commerce_collection) - Retrieve a collection
304
+ * [get_commerce_inventory](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/commerce/README.md#get_commerce_inventory) - Retrieve an inventory
305
+ * [get_commerce_item](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/commerce/README.md#get_commerce_item) - Retrieve an item
306
+ * [get_commerce_location](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/commerce/README.md#get_commerce_location) - Retrieve a location
307
+ * [list_commerce_collections](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/commerce/README.md#list_commerce_collections) - List all collections
308
+ * [list_commerce_inventories](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/commerce/README.md#list_commerce_inventories) - List all inventories
309
+ * [list_commerce_items](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/commerce/README.md#list_commerce_items) - List all items
310
+ * [list_commerce_locations](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/commerce/README.md#list_commerce_locations) - List all locations
311
+ * [patch_commerce_collection](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/commerce/README.md#patch_commerce_collection) - Update a collection
312
+ * [patch_commerce_inventory](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/commerce/README.md#patch_commerce_inventory) - Update an inventory
313
+ * [patch_commerce_item](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/commerce/README.md#patch_commerce_item) - Update an item
314
+ * [patch_commerce_location](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/commerce/README.md#patch_commerce_location) - Update a location
315
+ * [remove_commerce_collection](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/commerce/README.md#remove_commerce_collection) - Remove a collection
316
+ * [remove_commerce_inventory](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/commerce/README.md#remove_commerce_inventory) - Remove an inventory
317
+ * [remove_commerce_item](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/commerce/README.md#remove_commerce_item) - Remove an item
318
+ * [remove_commerce_location](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/commerce/README.md#remove_commerce_location) - Remove a location
319
+ * [update_commerce_collection](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/commerce/README.md#update_commerce_collection) - Update a collection
320
+ * [update_commerce_inventory](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/commerce/README.md#update_commerce_inventory) - Update an inventory
321
+ * [update_commerce_item](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/commerce/README.md#update_commerce_item) - Update an item
322
+ * [update_commerce_location](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/commerce/README.md#update_commerce_location) - Update a location
323
+
324
+ ### [collection](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/collection/README.md)
325
+
326
+ * [create_commerce_collection](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/collection/README.md#create_commerce_collection) - Create a collection
327
+ * [get_commerce_collection](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/collection/README.md#get_commerce_collection) - Retrieve a collection
328
+ * [list_commerce_collections](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/collection/README.md#list_commerce_collections) - List all collections
329
+ * [patch_commerce_collection](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/collection/README.md#patch_commerce_collection) - Update a collection
330
+ * [remove_commerce_collection](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/collection/README.md#remove_commerce_collection) - Remove a collection
331
+ * [update_commerce_collection](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/collection/README.md#update_commerce_collection) - Update a collection
332
+
333
+ ### [inventory](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/inventory/README.md)
334
+
335
+ * [create_commerce_inventory](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/inventory/README.md#create_commerce_inventory) - Create an inventory
336
+ * [get_commerce_inventory](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/inventory/README.md#get_commerce_inventory) - Retrieve an inventory
337
+ * [list_commerce_inventories](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/inventory/README.md#list_commerce_inventories) - List all inventories
338
+ * [patch_commerce_inventory](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/inventory/README.md#patch_commerce_inventory) - Update an inventory
339
+ * [remove_commerce_inventory](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/inventory/README.md#remove_commerce_inventory) - Remove an inventory
340
+ * [update_commerce_inventory](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/inventory/README.md#update_commerce_inventory) - Update an inventory
341
+
342
+ ### [item](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/item/README.md)
343
+
344
+ * [create_commerce_item](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/item/README.md#create_commerce_item) - Create an item
345
+ * [get_commerce_item](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/item/README.md#get_commerce_item) - Retrieve an item
346
+ * [list_commerce_items](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/item/README.md#list_commerce_items) - List all items
347
+ * [patch_commerce_item](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/item/README.md#patch_commerce_item) - Update an item
348
+ * [remove_commerce_item](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/item/README.md#remove_commerce_item) - Remove an item
349
+ * [update_commerce_item](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/item/README.md#update_commerce_item) - Update an item
350
+
351
+ ### [location](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/location/README.md)
352
+
353
+ * [create_commerce_location](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/location/README.md#create_commerce_location) - Create a location
354
+ * [get_commerce_location](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/location/README.md#get_commerce_location) - Retrieve a location
355
+ * [list_commerce_locations](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/location/README.md#list_commerce_locations) - List all locations
356
+ * [patch_commerce_location](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/location/README.md#patch_commerce_location) - Update a location
357
+ * [remove_commerce_location](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/location/README.md#remove_commerce_location) - Remove a location
358
+ * [update_commerce_location](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/location/README.md#update_commerce_location) - Update a location
359
+
360
+ ### [crm](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/crm/README.md)
361
+
362
+ * [create_crm_company](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/crm/README.md#create_crm_company) - Create a company
363
+ * [create_crm_contact](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/crm/README.md#create_crm_contact) - Create a contact
364
+ * [create_crm_deal](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/crm/README.md#create_crm_deal) - Create a deal
365
+ * [create_crm_event](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/crm/README.md#create_crm_event) - Create an event
366
+ * [create_crm_lead](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/crm/README.md#create_crm_lead) - Create a lead
367
+ * [create_crm_pipeline](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/crm/README.md#create_crm_pipeline) - Create a pipeline
368
+ * [get_crm_company](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/crm/README.md#get_crm_company) - Retrieve a company
369
+ * [get_crm_contact](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/crm/README.md#get_crm_contact) - Retrieve a contact
370
+ * [get_crm_deal](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/crm/README.md#get_crm_deal) - Retrieve a deal
371
+ * [get_crm_event](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/crm/README.md#get_crm_event) - Retrieve an event
372
+ * [get_crm_lead](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/crm/README.md#get_crm_lead) - Retrieve a lead
373
+ * [get_crm_pipeline](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/crm/README.md#get_crm_pipeline) - Retrieve a pipeline
374
+ * [list_crm_companies](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/crm/README.md#list_crm_companies) - List all companies
375
+ * [list_crm_contacts](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/crm/README.md#list_crm_contacts) - List all contacts
376
+ * [list_crm_deals](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/crm/README.md#list_crm_deals) - List all deals
377
+ * [list_crm_events](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/crm/README.md#list_crm_events) - List all events
378
+ * [list_crm_leads](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/crm/README.md#list_crm_leads) - List all leads
379
+ * [list_crm_pipelines](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/crm/README.md#list_crm_pipelines) - List all pipelines
380
+ * [patch_crm_company](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/crm/README.md#patch_crm_company) - Update a company
381
+ * [patch_crm_contact](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/crm/README.md#patch_crm_contact) - Update a contact
382
+ * [patch_crm_deal](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/crm/README.md#patch_crm_deal) - Update a deal
383
+ * [patch_crm_event](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/crm/README.md#patch_crm_event) - Update an event
384
+ * [patch_crm_lead](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/crm/README.md#patch_crm_lead) - Update a lead
385
+ * [patch_crm_pipeline](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/crm/README.md#patch_crm_pipeline) - Update a pipeline
386
+ * [remove_crm_company](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/crm/README.md#remove_crm_company) - Remove a company
387
+ * [remove_crm_contact](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/crm/README.md#remove_crm_contact) - Remove a contact
388
+ * [remove_crm_deal](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/crm/README.md#remove_crm_deal) - Remove a deal
389
+ * [remove_crm_event](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/crm/README.md#remove_crm_event) - Remove an event
390
+ * [remove_crm_lead](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/crm/README.md#remove_crm_lead) - Remove a lead
391
+ * [remove_crm_pipeline](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/crm/README.md#remove_crm_pipeline) - Remove a pipeline
392
+ * [update_crm_company](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/crm/README.md#update_crm_company) - Update a company
393
+ * [update_crm_contact](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/crm/README.md#update_crm_contact) - Update a contact
394
+ * [update_crm_deal](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/crm/README.md#update_crm_deal) - Update a deal
395
+ * [update_crm_event](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/crm/README.md#update_crm_event) - Update an event
396
+ * [update_crm_lead](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/crm/README.md#update_crm_lead) - Update a lead
397
+ * [update_crm_pipeline](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/crm/README.md#update_crm_pipeline) - Update a pipeline
398
+
399
+ ### [deal](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/deal/README.md)
400
+
401
+ * [create_crm_deal](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/deal/README.md#create_crm_deal) - Create a deal
402
+ * [get_crm_deal](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/deal/README.md#get_crm_deal) - Retrieve a deal
403
+ * [list_crm_deals](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/deal/README.md#list_crm_deals) - List all deals
404
+ * [patch_crm_deal](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/deal/README.md#patch_crm_deal) - Update a deal
405
+ * [remove_crm_deal](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/deal/README.md#remove_crm_deal) - Remove a deal
406
+ * [update_crm_deal](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/deal/README.md#update_crm_deal) - Update a deal
407
+
408
+ ### [event](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/event/README.md)
409
+
410
+ * [create_crm_event](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/event/README.md#create_crm_event) - Create an event
411
+ * [get_crm_event](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/event/README.md#get_crm_event) - Retrieve an event
412
+ * [list_crm_events](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/event/README.md#list_crm_events) - List all events
413
+ * [patch_crm_event](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/event/README.md#patch_crm_event) - Update an event
414
+ * [remove_crm_event](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/event/README.md#remove_crm_event) - Remove an event
415
+ * [update_crm_event](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/event/README.md#update_crm_event) - Update an event
416
+
417
+ ### [lead](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/lead/README.md)
418
+
419
+ * [create_crm_lead](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/lead/README.md#create_crm_lead) - Create a lead
420
+ * [get_crm_lead](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/lead/README.md#get_crm_lead) - Retrieve a lead
421
+ * [list_crm_leads](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/lead/README.md#list_crm_leads) - List all leads
422
+ * [patch_crm_lead](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/lead/README.md#patch_crm_lead) - Update a lead
423
+ * [remove_crm_lead](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/lead/README.md#remove_crm_lead) - Remove a lead
424
+ * [update_crm_lead](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/lead/README.md#update_crm_lead) - Update a lead
425
+
426
+ ### [pipeline](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/pipeline/README.md)
427
+
428
+ * [create_crm_pipeline](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/pipeline/README.md#create_crm_pipeline) - Create a pipeline
429
+ * [get_crm_pipeline](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/pipeline/README.md#get_crm_pipeline) - Retrieve a pipeline
430
+ * [list_crm_pipelines](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/pipeline/README.md#list_crm_pipelines) - List all pipelines
431
+ * [patch_crm_pipeline](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/pipeline/README.md#patch_crm_pipeline) - Update a pipeline
432
+ * [remove_crm_pipeline](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/pipeline/README.md#remove_crm_pipeline) - Remove a pipeline
433
+ * [update_crm_pipeline](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/pipeline/README.md#update_crm_pipeline) - Update a pipeline
434
+
435
+ ### [enrich](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/enrich/README.md)
436
+
437
+ * [list_enrich_companies](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/enrich/README.md#list_enrich_companies) - Retrieve enrichment information for a company
438
+ * [list_enrich_people](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/enrich/README.md#list_enrich_people) - Retrieve enrichment information for a person
439
+
440
+ ### [person](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/person/README.md)
441
+
442
+ * [list_enrich_people](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/person/README.md#list_enrich_people) - Retrieve enrichment information for a person
443
+
444
+ ### [genai](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/genai/README.md)
445
+
446
+ * [create_genai_prompt](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/genai/README.md#create_genai_prompt) - Create a prompt
447
+ * [list_genai_models](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/genai/README.md#list_genai_models) - List all models
448
+
449
+ ### [model](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/model/README.md)
450
+
451
+ * [list_genai_models](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/model/README.md#list_genai_models) - List all models
452
+
453
+ ### [prompt](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/prompt/README.md)
454
+
455
+ * [create_genai_prompt](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/prompt/README.md#create_genai_prompt) - Create a prompt
456
+
457
+ ### [hris](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/hris/README.md)
458
+
459
+ * [create_hris_company](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/hris/README.md#create_hris_company) - Create a company
460
+ * [create_hris_employee](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/hris/README.md#create_hris_employee) - Create an employee
461
+ * [create_hris_group](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/hris/README.md#create_hris_group) - Create a group
462
+ * [get_hris_company](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/hris/README.md#get_hris_company) - Retrieve a company
463
+ * [get_hris_employee](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/hris/README.md#get_hris_employee) - Retrieve an employee
464
+ * [get_hris_group](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/hris/README.md#get_hris_group) - Retrieve a group
465
+ * [get_hris_payslip](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/hris/README.md#get_hris_payslip) - Retrieve a payslip
466
+ * [get_hris_timeoff](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/hris/README.md#get_hris_timeoff) - Retrieve a timeoff
467
+ * [list_hris_companies](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/hris/README.md#list_hris_companies) - List all companies
468
+ * [list_hris_employees](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/hris/README.md#list_hris_employees) - List all employees
469
+ * [list_hris_groups](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/hris/README.md#list_hris_groups) - List all groups
470
+ * [list_hris_payslips](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/hris/README.md#list_hris_payslips) - List all payslips
471
+ * [list_hris_timeoffs](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/hris/README.md#list_hris_timeoffs) - List all timeoffs
472
+ * [patch_hris_company](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/hris/README.md#patch_hris_company) - Update a company
473
+ * [patch_hris_employee](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/hris/README.md#patch_hris_employee) - Update an employee
474
+ * [patch_hris_group](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/hris/README.md#patch_hris_group) - Update a group
475
+ * [remove_hris_company](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/hris/README.md#remove_hris_company) - Remove a company
476
+ * [remove_hris_employee](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/hris/README.md#remove_hris_employee) - Remove an employee
477
+ * [remove_hris_group](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/hris/README.md#remove_hris_group) - Remove a group
478
+ * [update_hris_company](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/hris/README.md#update_hris_company) - Update a company
479
+ * [update_hris_employee](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/hris/README.md#update_hris_employee) - Update an employee
480
+ * [update_hris_group](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/hris/README.md#update_hris_group) - Update a group
481
+
482
+ ### [employee](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/employee/README.md)
483
+
484
+ * [create_hris_employee](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/employee/README.md#create_hris_employee) - Create an employee
485
+ * [get_hris_employee](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/employee/README.md#get_hris_employee) - Retrieve an employee
486
+ * [list_hris_employees](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/employee/README.md#list_hris_employees) - List all employees
487
+ * [patch_hris_employee](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/employee/README.md#patch_hris_employee) - Update an employee
488
+ * [remove_hris_employee](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/employee/README.md#remove_hris_employee) - Remove an employee
489
+ * [update_hris_employee](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/employee/README.md#update_hris_employee) - Update an employee
490
+
491
+ ### [group](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/group/README.md)
492
+
493
+ * [create_hris_group](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/group/README.md#create_hris_group) - Create a group
494
+ * [get_hris_group](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/group/README.md#get_hris_group) - Retrieve a group
495
+ * [list_hris_groups](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/group/README.md#list_hris_groups) - List all groups
496
+ * [patch_hris_group](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/group/README.md#patch_hris_group) - Update a group
497
+ * [remove_hris_group](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/group/README.md#remove_hris_group) - Remove a group
498
+ * [update_hris_group](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/group/README.md#update_hris_group) - Update a group
499
+
500
+ ### [payslip](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/payslip/README.md)
501
+
502
+ * [get_hris_payslip](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/payslip/README.md#get_hris_payslip) - Retrieve a payslip
503
+ * [list_hris_payslips](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/payslip/README.md#list_hris_payslips) - List all payslips
504
+
505
+ ### [timeoff](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/timeoff/README.md)
506
+
507
+ * [get_hris_timeoff](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/timeoff/README.md#get_hris_timeoff) - Retrieve a timeoff
508
+ * [list_hris_timeoffs](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/timeoff/README.md#list_hris_timeoffs) - List all timeoffs
509
+
510
+ ### [kms](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/kms/README.md)
511
+
512
+ * [create_kms_page](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/kms/README.md#create_kms_page) - Create a page
513
+ * [create_kms_space](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/kms/README.md#create_kms_space) - Create a space
514
+ * [get_kms_page](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/kms/README.md#get_kms_page) - Retrieve a page
515
+ * [get_kms_space](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/kms/README.md#get_kms_space) - Retrieve a space
516
+ * [list_kms_pages](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/kms/README.md#list_kms_pages) - List all pages
517
+ * [list_kms_spaces](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/kms/README.md#list_kms_spaces) - List all spaces
518
+ * [patch_kms_page](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/kms/README.md#patch_kms_page) - Update a page
519
+ * [patch_kms_space](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/kms/README.md#patch_kms_space) - Update a space
520
+ * [remove_kms_page](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/kms/README.md#remove_kms_page) - Remove a page
521
+ * [remove_kms_space](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/kms/README.md#remove_kms_space) - Remove a space
522
+ * [update_kms_page](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/kms/README.md#update_kms_page) - Update a page
523
+ * [update_kms_space](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/kms/README.md#update_kms_space) - Update a space
524
+
525
+ ### [page](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/page/README.md)
526
+
527
+ * [create_kms_page](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/page/README.md#create_kms_page) - Create a page
528
+ * [get_kms_page](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/page/README.md#get_kms_page) - Retrieve a page
529
+ * [list_kms_pages](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/page/README.md#list_kms_pages) - List all pages
530
+ * [patch_kms_page](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/page/README.md#patch_kms_page) - Update a page
531
+ * [remove_kms_page](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/page/README.md#remove_kms_page) - Remove a page
532
+ * [update_kms_page](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/page/README.md#update_kms_page) - Update a page
533
+
534
+ ### [space](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/space/README.md)
535
+
536
+ * [create_kms_space](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/space/README.md#create_kms_space) - Create a space
537
+ * [get_kms_space](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/space/README.md#get_kms_space) - Retrieve a space
538
+ * [list_kms_spaces](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/space/README.md#list_kms_spaces) - List all spaces
539
+ * [patch_kms_space](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/space/README.md#patch_kms_space) - Update a space
540
+ * [remove_kms_space](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/space/README.md#remove_kms_space) - Remove a space
541
+ * [update_kms_space](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/space/README.md#update_kms_space) - Update a space
542
+
543
+ ### [martech](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/martech/README.md)
544
+
545
+ * [create_martech_list](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/martech/README.md#create_martech_list) - Create a list
546
+ * [create_martech_member](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/martech/README.md#create_martech_member) - Create a member
547
+ * [get_martech_list](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/martech/README.md#get_martech_list) - Retrieve a list
548
+ * [get_martech_member](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/martech/README.md#get_martech_member) - Retrieve a member
549
+ * [list_martech_lists](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/martech/README.md#list_martech_lists) - List all lists
550
+ * [list_martech_members](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/martech/README.md#list_martech_members) - List all members
551
+ * [patch_martech_list](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/martech/README.md#patch_martech_list) - Update a list
552
+ * [patch_martech_member](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/martech/README.md#patch_martech_member) - Update a member
553
+ * [remove_martech_list](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/martech/README.md#remove_martech_list) - Remove a list
554
+ * [remove_martech_member](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/martech/README.md#remove_martech_member) - Remove a member
555
+ * [update_martech_list](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/martech/README.md#update_martech_list) - Update a list
556
+ * [update_martech_member](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/martech/README.md#update_martech_member) - Update a member
557
+
558
+ ### [list](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/list/README.md)
559
+
560
+ * [create_martech_list](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/list/README.md#create_martech_list) - Create a list
561
+ * [get_martech_list](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/list/README.md#get_martech_list) - Retrieve a list
562
+ * [list_martech_lists](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/list/README.md#list_martech_lists) - List all lists
563
+ * [patch_martech_list](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/list/README.md#patch_martech_list) - Update a list
564
+ * [remove_martech_list](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/list/README.md#remove_martech_list) - Remove a list
565
+ * [update_martech_list](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/list/README.md#update_martech_list) - Update a list
566
+
567
+ ### [member](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/member/README.md)
568
+
569
+ * [create_martech_member](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/member/README.md#create_martech_member) - Create a member
570
+ * [get_martech_member](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/member/README.md#get_martech_member) - Retrieve a member
571
+ * [list_martech_members](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/member/README.md#list_martech_members) - List all members
572
+ * [patch_martech_member](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/member/README.md#patch_martech_member) - Update a member
573
+ * [remove_martech_member](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/member/README.md#remove_martech_member) - Remove a member
574
+ * [update_martech_member](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/member/README.md#update_martech_member) - Update a member
575
+
576
+ ### [messaging](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/messaging/README.md)
577
+
578
+ * [create_messaging_message](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/messaging/README.md#create_messaging_message) - Create a message
579
+ * [get_messaging_channel](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/messaging/README.md#get_messaging_channel) - Retrieve a channel
580
+ * [get_messaging_message](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/messaging/README.md#get_messaging_message) - Retrieve a message
581
+ * [list_messaging_channels](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/messaging/README.md#list_messaging_channels) - List all channels
582
+ * [list_messaging_messages](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/messaging/README.md#list_messaging_messages) - List all messages
583
+ * [patch_messaging_message](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/messaging/README.md#patch_messaging_message) - Update a message
584
+ * [remove_messaging_message](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/messaging/README.md#remove_messaging_message) - Remove a message
585
+ * [update_messaging_message](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/messaging/README.md#update_messaging_message) - Update a message
586
+
587
+ ### [channel](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/channel/README.md)
588
+
589
+ * [get_messaging_channel](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/channel/README.md#get_messaging_channel) - Retrieve a channel
590
+ * [list_messaging_channels](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/channel/README.md#list_messaging_channels) - List all channels
591
+
592
+ ### [message](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/message/README.md)
593
+
594
+ * [create_messaging_message](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/message/README.md#create_messaging_message) - Create a message
595
+ * [get_messaging_message](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/message/README.md#get_messaging_message) - Retrieve a message
596
+ * [list_messaging_messages](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/message/README.md#list_messaging_messages) - List all messages
597
+ * [patch_messaging_message](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/message/README.md#patch_messaging_message) - Update a message
598
+ * [remove_messaging_message](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/message/README.md#remove_messaging_message) - Remove a message
599
+ * [update_messaging_message](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/message/README.md#update_messaging_message) - Update a message
600
+
601
+ ### [passthrough](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/passthrough/README.md)
602
+
603
+ * [create_passthrough](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/passthrough/README.md#create_passthrough) - Passthrough POST
604
+ * [list_passthroughs](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/passthrough/README.md#list_passthroughs) - Passthrough GET
605
+ * [patch_passthrough](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/passthrough/README.md#patch_passthrough) - Passthrough PUT
606
+ * [remove_passthrough](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/passthrough/README.md#remove_passthrough) - Passthrough DELETE
607
+ * [update_passthrough](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/passthrough/README.md#update_passthrough) - Passthrough PUT
608
+
609
+ ### [payment](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/payment/README.md)
610
+
611
+ * [create_payment_link](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/payment/README.md#create_payment_link) - Create a link
612
+ * [create_payment_payment](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/payment/README.md#create_payment_payment) - Create a payment
613
+ * [get_payment_link](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/payment/README.md#get_payment_link) - Retrieve a link
614
+ * [get_payment_payment](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/payment/README.md#get_payment_payment) - Retrieve a payment
615
+ * [get_payment_payout](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/payment/README.md#get_payment_payout) - Retrieve a payout
616
+ * [get_payment_refund](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/payment/README.md#get_payment_refund) - Retrieve a refund
617
+ * [list_payment_links](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/payment/README.md#list_payment_links) - List all links
618
+ * [list_payment_payments](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/payment/README.md#list_payment_payments) - List all payments
619
+ * [list_payment_payouts](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/payment/README.md#list_payment_payouts) - List all payouts
620
+ * [list_payment_refunds](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/payment/README.md#list_payment_refunds) - List all refunds
621
+ * [patch_payment_link](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/payment/README.md#patch_payment_link) - Update a link
622
+ * [patch_payment_payment](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/payment/README.md#patch_payment_payment) - Update a payment
623
+ * [remove_payment_link](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/payment/README.md#remove_payment_link) - Remove a link
624
+ * [remove_payment_payment](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/payment/README.md#remove_payment_payment) - Remove a payment
625
+ * [update_payment_link](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/payment/README.md#update_payment_link) - Update a link
626
+ * [update_payment_payment](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/payment/README.md#update_payment_payment) - Update a payment
627
+
628
+ ### [link](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/link/README.md)
629
+
630
+ * [create_payment_link](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/link/README.md#create_payment_link) - Create a link
631
+ * [get_payment_link](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/link/README.md#get_payment_link) - Retrieve a link
632
+ * [list_payment_links](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/link/README.md#list_payment_links) - List all links
633
+ * [patch_payment_link](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/link/README.md#patch_payment_link) - Update a link
634
+ * [remove_payment_link](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/link/README.md#remove_payment_link) - Remove a link
635
+ * [update_payment_link](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/link/README.md#update_payment_link) - Update a link
636
+
637
+ ### [payout](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/payout/README.md)
638
+
639
+ * [get_payment_payout](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/payout/README.md#get_payment_payout) - Retrieve a payout
640
+ * [list_payment_payouts](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/payout/README.md#list_payment_payouts) - List all payouts
641
+
642
+ ### [refund](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/refund/README.md)
643
+
644
+ * [get_payment_refund](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/refund/README.md#get_payment_refund) - Retrieve a refund
645
+ * [list_payment_refunds](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/refund/README.md#list_payment_refunds) - List all refunds
646
+
647
+ ### [storage](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/storage/README.md)
648
+
649
+ * [create_storage_file](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/storage/README.md#create_storage_file) - Create a file
650
+ * [get_storage_file](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/storage/README.md#get_storage_file) - Retrieve a file
651
+ * [list_storage_files](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/storage/README.md#list_storage_files) - List all files
652
+ * [patch_storage_file](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/storage/README.md#patch_storage_file) - Update a file
653
+ * [remove_storage_file](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/storage/README.md#remove_storage_file) - Remove a file
654
+ * [update_storage_file](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/storage/README.md#update_storage_file) - Update a file
655
+
656
+ ### [file](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/file/README.md)
657
+
658
+ * [create_storage_file](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/file/README.md#create_storage_file) - Create a file
659
+ * [get_storage_file](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/file/README.md#get_storage_file) - Retrieve a file
660
+ * [list_storage_files](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/file/README.md#list_storage_files) - List all files
661
+ * [patch_storage_file](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/file/README.md#patch_storage_file) - Update a file
662
+ * [remove_storage_file](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/file/README.md#remove_storage_file) - Remove a file
663
+ * [update_storage_file](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/file/README.md#update_storage_file) - Update a file
664
+
665
+ ### [task](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/task/README.md)
666
+
667
+ * [create_task_project](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/task/README.md#create_task_project) - Create a project
668
+ * [create_task_task](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/task/README.md#create_task_task) - Create a task
669
+ * [get_task_project](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/task/README.md#get_task_project) - Retrieve a project
670
+ * [get_task_task](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/task/README.md#get_task_task) - Retrieve a task
671
+ * [list_task_projects](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/task/README.md#list_task_projects) - List all projects
672
+ * [list_task_tasks](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/task/README.md#list_task_tasks) - List all tasks
673
+ * [patch_task_project](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/task/README.md#patch_task_project) - Update a project
674
+ * [patch_task_task](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/task/README.md#patch_task_task) - Update a task
675
+ * [remove_task_project](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/task/README.md#remove_task_project) - Remove a project
676
+ * [remove_task_task](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/task/README.md#remove_task_task) - Remove a task
677
+ * [update_task_project](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/task/README.md#update_task_project) - Update a project
678
+ * [update_task_task](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/task/README.md#update_task_task) - Update a task
679
+
680
+ ### [project](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/project/README.md)
681
+
682
+ * [create_task_project](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/project/README.md#create_task_project) - Create a project
683
+ * [get_task_project](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/project/README.md#get_task_project) - Retrieve a project
684
+ * [list_task_projects](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/project/README.md#list_task_projects) - List all projects
685
+ * [patch_task_project](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/project/README.md#patch_task_project) - Update a project
686
+ * [remove_task_project](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/project/README.md#remove_task_project) - Remove a project
687
+ * [update_task_project](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/project/README.md#update_task_project) - Update a project
688
+
689
+ ### [ticketing](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/ticketing/README.md)
690
+
691
+ * [create_ticketing_customer](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/ticketing/README.md#create_ticketing_customer) - Create a customer
692
+ * [create_ticketing_note](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/ticketing/README.md#create_ticketing_note) - Create a note
693
+ * [create_ticketing_ticket](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/ticketing/README.md#create_ticketing_ticket) - Create a ticket
694
+ * [get_ticketing_customer](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/ticketing/README.md#get_ticketing_customer) - Retrieve a customer
695
+ * [get_ticketing_note](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/ticketing/README.md#get_ticketing_note) - Retrieve a note
696
+ * [get_ticketing_ticket](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/ticketing/README.md#get_ticketing_ticket) - Retrieve a ticket
697
+ * [list_ticketing_customers](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/ticketing/README.md#list_ticketing_customers) - List all customers
698
+ * [list_ticketing_notes](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/ticketing/README.md#list_ticketing_notes) - List all notes
699
+ * [list_ticketing_tickets](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/ticketing/README.md#list_ticketing_tickets) - List all tickets
700
+ * [patch_ticketing_customer](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/ticketing/README.md#patch_ticketing_customer) - Update a customer
701
+ * [patch_ticketing_note](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/ticketing/README.md#patch_ticketing_note) - Update a note
702
+ * [patch_ticketing_ticket](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/ticketing/README.md#patch_ticketing_ticket) - Update a ticket
703
+ * [remove_ticketing_customer](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/ticketing/README.md#remove_ticketing_customer) - Remove a customer
704
+ * [remove_ticketing_note](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/ticketing/README.md#remove_ticketing_note) - Remove a note
705
+ * [remove_ticketing_ticket](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/ticketing/README.md#remove_ticketing_ticket) - Remove a ticket
706
+ * [update_ticketing_customer](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/ticketing/README.md#update_ticketing_customer) - Update a customer
707
+ * [update_ticketing_note](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/ticketing/README.md#update_ticketing_note) - Update a note
708
+ * [update_ticketing_ticket](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/ticketing/README.md#update_ticketing_ticket) - Update a ticket
709
+
710
+ ### [customer](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/customer/README.md)
711
+
712
+ * [create_ticketing_customer](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/customer/README.md#create_ticketing_customer) - Create a customer
713
+ * [get_ticketing_customer](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/customer/README.md#get_ticketing_customer) - Retrieve a customer
714
+ * [list_ticketing_customers](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/customer/README.md#list_ticketing_customers) - List all customers
715
+ * [patch_ticketing_customer](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/customer/README.md#patch_ticketing_customer) - Update a customer
716
+ * [remove_ticketing_customer](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/customer/README.md#remove_ticketing_customer) - Remove a customer
717
+ * [update_ticketing_customer](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/customer/README.md#update_ticketing_customer) - Update a customer
718
+
719
+ ### [note](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/note/README.md)
720
+
721
+ * [create_ticketing_note](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/note/README.md#create_ticketing_note) - Create a note
722
+ * [get_ticketing_note](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/note/README.md#get_ticketing_note) - Retrieve a note
723
+ * [list_ticketing_notes](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/note/README.md#list_ticketing_notes) - List all notes
724
+ * [patch_ticketing_note](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/note/README.md#patch_ticketing_note) - Update a note
725
+ * [remove_ticketing_note](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/note/README.md#remove_ticketing_note) - Remove a note
726
+ * [update_ticketing_note](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/note/README.md#update_ticketing_note) - Update a note
727
+
728
+ ### [ticket](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/ticket/README.md)
729
+
730
+ * [create_ticketing_ticket](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/ticket/README.md#create_ticketing_ticket) - Create a ticket
731
+ * [get_ticketing_ticket](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/ticket/README.md#get_ticketing_ticket) - Retrieve a ticket
732
+ * [list_ticketing_tickets](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/ticket/README.md#list_ticketing_tickets) - List all tickets
733
+ * [patch_ticketing_ticket](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/ticket/README.md#patch_ticketing_ticket) - Update a ticket
734
+ * [remove_ticketing_ticket](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/ticket/README.md#remove_ticketing_ticket) - Remove a ticket
735
+ * [update_ticketing_ticket](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/ticket/README.md#update_ticketing_ticket) - Update a ticket
736
+
737
+ ### [uc](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/uc/README.md)
738
+
739
+ * [create_uc_contact](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/uc/README.md#create_uc_contact) - Create a contact
740
+ * [get_uc_contact](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/uc/README.md#get_uc_contact) - Retrieve a contact
741
+ * [list_uc_calls](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/uc/README.md#list_uc_calls) - List all calls
742
+ * [list_uc_contacts](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/uc/README.md#list_uc_contacts) - List all contacts
743
+ * [patch_uc_contact](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/uc/README.md#patch_uc_contact) - Update a contact
744
+ * [remove_uc_contact](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/uc/README.md#remove_uc_contact) - Remove a contact
745
+ * [update_uc_contact](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/uc/README.md#update_uc_contact) - Update a contact
746
+
747
+ ### [call](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/call/README.md)
748
+
749
+ * [list_uc_calls](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/call/README.md#list_uc_calls) - List all calls
750
+
751
+ ### [unified](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/unified/README.md)
752
+
753
+ * [create_unified_connection](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/unified/README.md#create_unified_connection) - Create connection
754
+ * [create_unified_webhook](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/unified/README.md#create_unified_webhook) - Create webhook subscription
755
+ * [get_unified_apicall](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/unified/README.md#get_unified_apicall) - Retrieve specific API Call by its ID
756
+ * [get_unified_connection](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/unified/README.md#get_unified_connection) - Retrieve connection
757
+ * [get_unified_integration_auth](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/unified/README.md#get_unified_integration_auth) - Create connection indirectly
758
+ * [get_unified_webhook](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/unified/README.md#get_unified_webhook) - Retrieve webhook by its ID
759
+ * [list_unified_apicalls](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/unified/README.md#list_unified_apicalls) - Returns API Calls
760
+ * [list_unified_connections](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/unified/README.md#list_unified_connections) - List all connections
761
+ * [list_unified_integration_workspaces](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/unified/README.md#list_unified_integration_workspaces) - Returns all activated integrations in a workspace
762
+ * [list_unified_integrations](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/unified/README.md#list_unified_integrations) - Returns all integrations
763
+ * [list_unified_issues](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/unified/README.md#list_unified_issues) - List support issues
764
+ * [list_unified_webhooks](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/unified/README.md#list_unified_webhooks) - Returns all registered webhooks
765
+ * [patch_unified_connection](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/unified/README.md#patch_unified_connection) - Update connection
766
+ * [patch_unified_webhook_trigger](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/unified/README.md#patch_unified_webhook_trigger) - Trigger webhook
767
+ * [remove_unified_connection](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/unified/README.md#remove_unified_connection) - Remove connection
768
+ * [remove_unified_webhook](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/unified/README.md#remove_unified_webhook) - Remove webhook subscription
769
+ * [update_unified_connection](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/unified/README.md#update_unified_connection) - Update connection
770
+ * [update_unified_webhook_trigger](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/unified/README.md#update_unified_webhook_trigger) - Trigger webhook
771
+
772
+ ### [apicall](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/apicall/README.md)
773
+
774
+ * [get_unified_apicall](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/apicall/README.md#get_unified_apicall) - Retrieve specific API Call by its ID
775
+ * [list_unified_apicalls](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/apicall/README.md#list_unified_apicalls) - Returns API Calls
776
+
777
+ ### [connection](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/connection/README.md)
778
+
779
+ * [create_unified_connection](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/connection/README.md#create_unified_connection) - Create connection
780
+ * [get_unified_connection](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/connection/README.md#get_unified_connection) - Retrieve connection
781
+ * [list_unified_connections](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/connection/README.md#list_unified_connections) - List all connections
782
+ * [patch_unified_connection](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/connection/README.md#patch_unified_connection) - Update connection
783
+ * [remove_unified_connection](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/connection/README.md#remove_unified_connection) - Remove connection
784
+ * [update_unified_connection](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/connection/README.md#update_unified_connection) - Update connection
785
+
786
+ ### [integration](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/integration/README.md)
787
+
788
+ * [get_unified_integration_auth](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/integration/README.md#get_unified_integration_auth) - Create connection indirectly
789
+ * [list_unified_integration_workspaces](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/integration/README.md#list_unified_integration_workspaces) - Returns all activated integrations in a workspace
790
+ * [list_unified_integrations](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/integration/README.md#list_unified_integrations) - Returns all integrations
791
+
792
+ ### [auth](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/auth/README.md)
793
+
794
+ * [get_unified_integration_auth](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/auth/README.md#get_unified_integration_auth) - Create connection indirectly
795
+ * [get_unified_integration_login](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/auth/README.md#get_unified_integration_login) - Sign in a user
796
+
797
+ ### [login](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/login/README.md)
798
+
799
+ * [get_unified_integration_login](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/login/README.md#get_unified_integration_login) - Sign in a user
800
+
801
+ ### [issue](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/issue/README.md)
802
+
803
+ * [list_unified_issues](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/issue/README.md#list_unified_issues) - List support issues
804
+
805
+ ### [webhook](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/webhook/README.md)
806
+
807
+ * [create_unified_webhook](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/webhook/README.md#create_unified_webhook) - Create webhook subscription
808
+ * [get_unified_webhook](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/webhook/README.md#get_unified_webhook) - Retrieve webhook by its ID
809
+ * [list_unified_webhooks](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/webhook/README.md#list_unified_webhooks) - Returns all registered webhooks
810
+ * [patch_unified_webhook_trigger](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/webhook/README.md#patch_unified_webhook_trigger) - Trigger webhook
811
+ * [remove_unified_webhook](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/webhook/README.md#remove_unified_webhook) - Remove webhook subscription
812
+ * [update_unified_webhook_trigger](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/webhook/README.md#update_unified_webhook_trigger) - Trigger webhook
813
+ <!-- End Available Resources and Operations [operations] -->
814
+
815
+
816
+
817
+
818
+
819
+
820
+
821
+ <!-- Start Error Handling [errors] -->
822
+ ## Error Handling
823
+
824
+ Handling errors in this SDK should largely match your expectations. All operations return a response object or raise an error. If Error objects are specified in your OpenAPI Spec, the SDK will raise the appropriate Error type.
825
+
826
+ | Error Object | Status Code | Content Type |
827
+ | --------------- | --------------- | --------------- |
828
+ | errors.SDKError | 4xx-5xx | */* |
829
+
830
+ ### Example
831
+
832
+ ```python
833
+ import unified_to
834
+ from unified_to.models import errors, operations, shared
835
+
836
+ s = unified_to.UnifiedTo(
837
+ security=shared.Security(
838
+ jwt="<YOUR_API_KEY_HERE>",
839
+ ),
840
+ )
841
+
842
+ res = None
843
+ try:
844
+ res = s.accounting.create_accounting_account(request=operations.CreateAccountingAccountRequest(
845
+ connection_id='<value>',
846
+ ))
847
+
848
+ except errors.SDKError as e:
849
+ # handle exception
850
+ raise(e)
851
+
852
+ if res.accounting_account is not None:
853
+ # handle response
854
+ pass
855
+
856
+ ```
857
+ <!-- End Error Handling [errors] -->
858
+
859
+
860
+
861
+ <!-- Start Server Selection [server] -->
862
+ ## Server Selection
863
+
864
+ ### Select Server by Index
865
+
866
+ You can override the default server globally by passing a server index to the `server_idx: int` optional parameter when initializing the SDK client instance. The selected server will then be used as the default on the operations that use it. This table lists the indexes associated with the available servers:
867
+
868
+ | # | Server | Variables |
869
+ | - | ------ | --------- |
870
+ | 0 | `https://api.unified.to` | None |
871
+ | 1 | `https://api-eu.unified.to` | None |
872
+
873
+ #### Example
874
+
875
+ ```python
876
+ import unified_to
877
+ from unified_to.models import operations, shared
878
+
879
+ s = unified_to.UnifiedTo(
880
+ server_idx=1,
881
+ security=shared.Security(
882
+ jwt="<YOUR_API_KEY_HERE>",
883
+ ),
884
+ )
885
+
886
+
887
+ res = s.accounting.create_accounting_account(request=operations.CreateAccountingAccountRequest(
888
+ connection_id='<value>',
889
+ ))
890
+
891
+ if res.accounting_account is not None:
892
+ # handle response
893
+ pass
894
+
895
+ ```
896
+
897
+
898
+ ### Override Server URL Per-Client
899
+
900
+ The default server can also be overridden globally by passing a URL to the `server_url: str` optional parameter when initializing the SDK client instance. For example:
901
+ ```python
902
+ import unified_to
903
+ from unified_to.models import operations, shared
904
+
905
+ s = unified_to.UnifiedTo(
906
+ server_url="https://api.unified.to",
907
+ security=shared.Security(
908
+ jwt="<YOUR_API_KEY_HERE>",
909
+ ),
910
+ )
911
+
912
+
913
+ res = s.accounting.create_accounting_account(request=operations.CreateAccountingAccountRequest(
914
+ connection_id='<value>',
915
+ ))
916
+
917
+ if res.accounting_account is not None:
918
+ # handle response
919
+ pass
920
+
921
+ ```
922
+ <!-- End Server Selection [server] -->
923
+
924
+
925
+
926
+ <!-- Start Custom HTTP Client [http-client] -->
927
+ ## Custom HTTP Client
928
+
929
+ The Python SDK makes API calls using the [requests](https://pypi.org/project/requests/) HTTP library. In order to provide a convenient way to configure timeouts, cookies, proxies, custom headers, and other low-level configuration, you can initialize the SDK client with a custom `requests.Session` object.
930
+
931
+ For example, you could specify a header for every request that this sdk makes as follows:
932
+ ```python
933
+ import unified_to
934
+ import requests
935
+
936
+ http_client = requests.Session()
937
+ http_client.headers.update({'x-custom-header': 'someValue'})
938
+ s = unified_to.UnifiedTo(client=http_client)
939
+ ```
940
+ <!-- End Custom HTTP Client [http-client] -->
941
+
942
+
943
+
944
+ <!-- Start Authentication [security] -->
945
+ ## Authentication
946
+
947
+ ### Per-Client Security Schemes
948
+
949
+ This SDK supports the following security scheme globally:
950
+
951
+ | Name | Type | Scheme |
952
+ | ------- | ------- | ------- |
953
+ | `jwt` | apiKey | API key |
954
+
955
+ You can set the security parameters through the `security` optional parameter when initializing the SDK client instance. For example:
956
+ ```python
957
+ import unified_to
958
+ from unified_to.models import operations, shared
959
+
960
+ s = unified_to.UnifiedTo(
961
+ security=shared.Security(
962
+ jwt="<YOUR_API_KEY_HERE>",
963
+ ),
964
+ )
965
+
966
+
967
+ res = s.accounting.create_accounting_account(request=operations.CreateAccountingAccountRequest(
968
+ connection_id='<value>',
969
+ ))
970
+
971
+ if res.accounting_account is not None:
972
+ # handle response
973
+ pass
974
+
975
+ ```
976
+ <!-- End Authentication [security] -->
977
+
978
+ <!-- Placeholder for Future Speakeasy SDK Sections -->
979
+
980
+
981
+ ### Contributions
982
+
983
+ While we value open-source contributions to this SDK, this library is generated programmatically.
984
+ Feel free to open a PR or a Github issue as a proof of concept and we'll do our best to include it in a future release!
985
+
986
+ ### SDK Created by [Speakeasy](https://docs.speakeasyapi.dev/docs/using-speakeasy/client-sdks)
987
+
988
+ Platform: UNKNOWN
989
+ Requires-Python: >=3.8
990
+ Description-Content-Type: text/markdown
991
+ Provides-Extra: dev