Unified-python-sdk 0.32.1__tar.gz → 0.34.1__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 (956) hide show
  1. unified_python_sdk-0.34.1/PKG-INFO +1551 -0
  2. unified_python_sdk-0.34.1/README-PYPI.md +1529 -0
  3. unified_python_sdk-0.34.1/pyproject.toml +57 -0
  4. unified_python_sdk-0.34.1/src/unified_python_sdk/_version.py +15 -0
  5. unified_python_sdk-0.34.1/src/unified_python_sdk/account.py +1166 -0
  6. unified_python_sdk-0.34.1/src/unified_python_sdk/accounting.py +8450 -0
  7. unified_python_sdk-0.34.1/src/unified_python_sdk/activity.py +1128 -0
  8. unified_python_sdk-0.34.1/src/unified_python_sdk/application.py +1130 -0
  9. unified_python_sdk-0.34.1/src/unified_python_sdk/ats.py +8366 -0
  10. unified_python_sdk-0.34.1/src/unified_python_sdk/branch.py +1128 -0
  11. unified_python_sdk-0.34.1/src/unified_python_sdk/candidate.py +1130 -0
  12. unified_python_sdk-0.34.1/src/unified_python_sdk/class_.py +1118 -0
  13. unified_python_sdk-0.34.1/src/unified_python_sdk/collection.py +1174 -0
  14. unified_python_sdk-0.34.1/src/unified_python_sdk/comment.py +2246 -0
  15. unified_python_sdk-0.34.1/src/unified_python_sdk/commerce.py +4574 -0
  16. unified_python_sdk-0.34.1/src/unified_python_sdk/commit.py +1128 -0
  17. unified_python_sdk-0.34.1/src/unified_python_sdk/company.py +2790 -0
  18. unified_python_sdk-0.34.1/src/unified_python_sdk/connection.py +1136 -0
  19. unified_python_sdk-0.34.1/src/unified_python_sdk/contact.py +3398 -0
  20. unified_python_sdk-0.34.1/src/unified_python_sdk/course.py +1124 -0
  21. unified_python_sdk-0.34.1/src/unified_python_sdk/crm.py +6656 -0
  22. unified_python_sdk-0.34.1/src/unified_python_sdk/customer.py +1166 -0
  23. unified_python_sdk-0.34.1/src/unified_python_sdk/deal.py +1102 -0
  24. unified_python_sdk-0.34.1/src/unified_python_sdk/document.py +1128 -0
  25. unified_python_sdk-0.34.1/src/unified_python_sdk/employee.py +1130 -0
  26. unified_python_sdk-0.34.1/src/unified_python_sdk/event.py +1118 -0
  27. unified_python_sdk-0.34.1/src/unified_python_sdk/file.py +1128 -0
  28. unified_python_sdk-0.34.1/src/unified_python_sdk/genai.py +380 -0
  29. unified_python_sdk-0.34.1/src/unified_python_sdk/group.py +2240 -0
  30. unified_python_sdk-0.34.1/src/unified_python_sdk/hris.py +5206 -0
  31. unified_python_sdk-0.34.1/src/unified_python_sdk/instructor.py +1130 -0
  32. unified_python_sdk-0.34.1/src/unified_python_sdk/interview.py +1130 -0
  33. unified_python_sdk-0.34.1/src/unified_python_sdk/inventory.py +1170 -0
  34. unified_python_sdk-0.34.1/src/unified_python_sdk/invoice.py +1166 -0
  35. unified_python_sdk-0.34.1/src/unified_python_sdk/item.py +1130 -0
  36. unified_python_sdk-0.34.1/src/unified_python_sdk/job.py +1102 -0
  37. unified_python_sdk-0.34.1/src/unified_python_sdk/journal.py +1166 -0
  38. unified_python_sdk-0.34.1/src/unified_python_sdk/kms.py +3328 -0
  39. unified_python_sdk-0.34.1/src/unified_python_sdk/lead.py +1102 -0
  40. unified_python_sdk-0.34.1/src/unified_python_sdk/link.py +1128 -0
  41. unified_python_sdk-0.34.1/src/unified_python_sdk/list.py +1128 -0
  42. unified_python_sdk-0.34.1/src/unified_python_sdk/lms.py +4470 -0
  43. unified_python_sdk-0.34.1/src/unified_python_sdk/location.py +2250 -0
  44. unified_python_sdk-0.34.1/src/unified_python_sdk/martech.py +2248 -0
  45. unified_python_sdk-0.34.1/src/unified_python_sdk/member.py +1130 -0
  46. unified_python_sdk-0.34.1/src/unified_python_sdk/message.py +1130 -0
  47. unified_python_sdk-0.34.1/src/unified_python_sdk/messaging.py +1494 -0
  48. unified_python_sdk-0.34.1/src/unified_python_sdk/metadata.py +1130 -0
  49. unified_python_sdk-0.34.1/src/unified_python_sdk/models/operations/createaccountingaccount.py +69 -0
  50. unified_python_sdk-0.34.1/src/unified_python_sdk/models/operations/createaccountingcontact.py +67 -0
  51. unified_python_sdk-0.34.1/src/unified_python_sdk/models/operations/createaccountinginvoice.py +67 -0
  52. unified_python_sdk-0.34.1/src/unified_python_sdk/models/operations/createaccountingjournal.py +67 -0
  53. unified_python_sdk-0.34.1/src/unified_python_sdk/models/operations/createaccountingorder.py +65 -0
  54. unified_python_sdk-0.34.1/src/unified_python_sdk/models/operations/createaccountingtaxrate.py +67 -0
  55. unified_python_sdk-0.34.1/src/unified_python_sdk/models/operations/createaccountingtransaction.py +71 -0
  56. unified_python_sdk-0.34.1/src/unified_python_sdk/models/operations/createatsactivity.py +65 -0
  57. unified_python_sdk-0.34.1/src/unified_python_sdk/models/operations/createatsapplication.py +65 -0
  58. unified_python_sdk-0.34.1/src/unified_python_sdk/models/operations/createatscandidate.py +65 -0
  59. unified_python_sdk-0.34.1/src/unified_python_sdk/models/operations/createatsdocument.py +65 -0
  60. unified_python_sdk-0.34.1/src/unified_python_sdk/models/operations/createatsinterview.py +65 -0
  61. unified_python_sdk-0.34.1/src/unified_python_sdk/models/operations/createatsjob.py +65 -0
  62. unified_python_sdk-0.34.1/src/unified_python_sdk/models/operations/createatsscorecard.py +65 -0
  63. unified_python_sdk-0.34.1/src/unified_python_sdk/models/operations/createcommercecollection.py +71 -0
  64. unified_python_sdk-0.34.1/src/unified_python_sdk/models/operations/createcommerceinventory.py +67 -0
  65. unified_python_sdk-0.34.1/src/unified_python_sdk/models/operations/createcommerceitem.py +65 -0
  66. unified_python_sdk-0.34.1/src/unified_python_sdk/models/operations/createcommercelocation.py +65 -0
  67. unified_python_sdk-0.34.1/src/unified_python_sdk/models/operations/createcrmcompany.py +67 -0
  68. unified_python_sdk-0.34.1/src/unified_python_sdk/models/operations/createcrmcontact.py +67 -0
  69. unified_python_sdk-0.34.1/src/unified_python_sdk/models/operations/createcrmdeal.py +67 -0
  70. unified_python_sdk-0.34.1/src/unified_python_sdk/models/operations/createcrmevent.py +67 -0
  71. unified_python_sdk-0.34.1/src/unified_python_sdk/models/operations/createcrmlead.py +65 -0
  72. unified_python_sdk-0.34.1/src/unified_python_sdk/models/operations/createcrmpipeline.py +65 -0
  73. unified_python_sdk-0.34.1/src/unified_python_sdk/models/operations/creategenaiprompt.py +65 -0
  74. unified_python_sdk-0.34.1/src/unified_python_sdk/models/operations/createhriscompany.py +65 -0
  75. unified_python_sdk-0.34.1/src/unified_python_sdk/models/operations/createhrisemployee.py +65 -0
  76. unified_python_sdk-0.34.1/src/unified_python_sdk/models/operations/createhrisgroup.py +65 -0
  77. unified_python_sdk-0.34.1/src/unified_python_sdk/models/operations/createhrislocation.py +65 -0
  78. unified_python_sdk-0.34.1/src/unified_python_sdk/models/operations/createkmscomment.py +65 -0
  79. unified_python_sdk-0.34.1/src/unified_python_sdk/models/operations/createkmspage.py +65 -0
  80. unified_python_sdk-0.34.1/src/unified_python_sdk/models/operations/createkmsspace.py +65 -0
  81. unified_python_sdk-0.34.1/src/unified_python_sdk/models/operations/createlmsclass.py +65 -0
  82. unified_python_sdk-0.34.1/src/unified_python_sdk/models/operations/createlmscourse.py +65 -0
  83. unified_python_sdk-0.34.1/src/unified_python_sdk/models/operations/createlmsinstructor.py +65 -0
  84. unified_python_sdk-0.34.1/src/unified_python_sdk/models/operations/createlmsstudent.py +65 -0
  85. unified_python_sdk-0.34.1/src/unified_python_sdk/models/operations/createmartechlist.py +67 -0
  86. unified_python_sdk-0.34.1/src/unified_python_sdk/models/operations/createmartechmember.py +67 -0
  87. unified_python_sdk-0.34.1/src/unified_python_sdk/models/operations/createmessagingmessage.py +65 -0
  88. unified_python_sdk-0.34.1/src/unified_python_sdk/models/operations/createmetadatametadata.py +65 -0
  89. unified_python_sdk-0.34.1/src/unified_python_sdk/models/operations/createpaymentlink.py +65 -0
  90. unified_python_sdk-0.34.1/src/unified_python_sdk/models/operations/createpaymentpayment.py +65 -0
  91. unified_python_sdk-0.34.1/src/unified_python_sdk/models/operations/createpaymentsubscription.py +71 -0
  92. unified_python_sdk-0.34.1/src/unified_python_sdk/models/operations/createrepobranch.py +65 -0
  93. unified_python_sdk-0.34.1/src/unified_python_sdk/models/operations/createrepocommit.py +65 -0
  94. unified_python_sdk-0.34.1/src/unified_python_sdk/models/operations/createrepoorganization.py +65 -0
  95. unified_python_sdk-0.34.1/src/unified_python_sdk/models/operations/createrepopullrequest.py +65 -0
  96. unified_python_sdk-0.34.1/src/unified_python_sdk/models/operations/createreporepository.py +65 -0
  97. unified_python_sdk-0.34.1/src/unified_python_sdk/models/operations/createscimgroups.py +52 -0
  98. unified_python_sdk-0.34.1/src/unified_python_sdk/models/operations/createscimusers.py +92 -0
  99. unified_python_sdk-0.34.1/src/unified_python_sdk/models/operations/createstoragefile.py +65 -0
  100. unified_python_sdk-0.34.1/src/unified_python_sdk/models/operations/createtaskcomment.py +65 -0
  101. unified_python_sdk-0.34.1/src/unified_python_sdk/models/operations/createtaskproject.py +65 -0
  102. unified_python_sdk-0.34.1/src/unified_python_sdk/models/operations/createtasktask.py +65 -0
  103. unified_python_sdk-0.34.1/src/unified_python_sdk/models/operations/createticketingcustomer.py +67 -0
  104. unified_python_sdk-0.34.1/src/unified_python_sdk/models/operations/createticketingnote.py +65 -0
  105. unified_python_sdk-0.34.1/src/unified_python_sdk/models/operations/createticketingticket.py +65 -0
  106. unified_python_sdk-0.34.1/src/unified_python_sdk/models/operations/createuccontact.py +67 -0
  107. unified_python_sdk-0.34.1/src/unified_python_sdk/models/operations/createunifiedwebhook.py +55 -0
  108. unified_python_sdk-0.34.1/src/unified_python_sdk/models/operations/listaccountinginvoices.py +117 -0
  109. unified_python_sdk-0.34.1/src/unified_python_sdk/models/operations/listatsdocuments.py +117 -0
  110. unified_python_sdk-0.34.1/src/unified_python_sdk/models/operations/patchaccountingaccount.py +76 -0
  111. unified_python_sdk-0.34.1/src/unified_python_sdk/models/operations/patchaccountingcontact.py +74 -0
  112. unified_python_sdk-0.34.1/src/unified_python_sdk/models/operations/patchaccountinginvoice.py +74 -0
  113. unified_python_sdk-0.34.1/src/unified_python_sdk/models/operations/patchaccountingjournal.py +74 -0
  114. unified_python_sdk-0.34.1/src/unified_python_sdk/models/operations/patchaccountingorder.py +72 -0
  115. unified_python_sdk-0.34.1/src/unified_python_sdk/models/operations/patchaccountingtaxrate.py +74 -0
  116. unified_python_sdk-0.34.1/src/unified_python_sdk/models/operations/patchaccountingtransaction.py +78 -0
  117. unified_python_sdk-0.34.1/src/unified_python_sdk/models/operations/patchatsactivity.py +72 -0
  118. unified_python_sdk-0.34.1/src/unified_python_sdk/models/operations/patchatsapplication.py +72 -0
  119. unified_python_sdk-0.34.1/src/unified_python_sdk/models/operations/patchatscandidate.py +72 -0
  120. unified_python_sdk-0.34.1/src/unified_python_sdk/models/operations/patchatsdocument.py +72 -0
  121. unified_python_sdk-0.34.1/src/unified_python_sdk/models/operations/patchatsinterview.py +72 -0
  122. unified_python_sdk-0.34.1/src/unified_python_sdk/models/operations/patchatsjob.py +72 -0
  123. unified_python_sdk-0.34.1/src/unified_python_sdk/models/operations/patchatsscorecard.py +72 -0
  124. unified_python_sdk-0.34.1/src/unified_python_sdk/models/operations/patchcommercecollection.py +78 -0
  125. unified_python_sdk-0.34.1/src/unified_python_sdk/models/operations/patchcommerceinventory.py +74 -0
  126. unified_python_sdk-0.34.1/src/unified_python_sdk/models/operations/patchcommerceitem.py +72 -0
  127. unified_python_sdk-0.34.1/src/unified_python_sdk/models/operations/patchcommercelocation.py +72 -0
  128. unified_python_sdk-0.34.1/src/unified_python_sdk/models/operations/patchcrmcompany.py +74 -0
  129. unified_python_sdk-0.34.1/src/unified_python_sdk/models/operations/patchcrmcontact.py +74 -0
  130. unified_python_sdk-0.34.1/src/unified_python_sdk/models/operations/patchcrmdeal.py +74 -0
  131. unified_python_sdk-0.34.1/src/unified_python_sdk/models/operations/patchcrmevent.py +74 -0
  132. unified_python_sdk-0.34.1/src/unified_python_sdk/models/operations/patchcrmlead.py +72 -0
  133. unified_python_sdk-0.34.1/src/unified_python_sdk/models/operations/patchcrmpipeline.py +72 -0
  134. unified_python_sdk-0.34.1/src/unified_python_sdk/models/operations/patchhriscompany.py +72 -0
  135. unified_python_sdk-0.34.1/src/unified_python_sdk/models/operations/patchhrisemployee.py +72 -0
  136. unified_python_sdk-0.34.1/src/unified_python_sdk/models/operations/patchhrisgroup.py +72 -0
  137. unified_python_sdk-0.34.1/src/unified_python_sdk/models/operations/patchhrislocation.py +72 -0
  138. unified_python_sdk-0.34.1/src/unified_python_sdk/models/operations/patchkmscomment.py +72 -0
  139. unified_python_sdk-0.34.1/src/unified_python_sdk/models/operations/patchkmspage.py +72 -0
  140. unified_python_sdk-0.34.1/src/unified_python_sdk/models/operations/patchkmsspace.py +72 -0
  141. unified_python_sdk-0.34.1/src/unified_python_sdk/models/operations/patchlmsclass.py +72 -0
  142. unified_python_sdk-0.34.1/src/unified_python_sdk/models/operations/patchlmscourse.py +72 -0
  143. unified_python_sdk-0.34.1/src/unified_python_sdk/models/operations/patchlmsinstructor.py +72 -0
  144. unified_python_sdk-0.34.1/src/unified_python_sdk/models/operations/patchlmsstudent.py +72 -0
  145. unified_python_sdk-0.34.1/src/unified_python_sdk/models/operations/patchmartechlist.py +74 -0
  146. unified_python_sdk-0.34.1/src/unified_python_sdk/models/operations/patchmartechmember.py +74 -0
  147. unified_python_sdk-0.34.1/src/unified_python_sdk/models/operations/patchmessagingmessage.py +72 -0
  148. unified_python_sdk-0.34.1/src/unified_python_sdk/models/operations/patchmetadatametadata.py +72 -0
  149. unified_python_sdk-0.34.1/src/unified_python_sdk/models/operations/patchpaymentlink.py +72 -0
  150. unified_python_sdk-0.34.1/src/unified_python_sdk/models/operations/patchpaymentpayment.py +72 -0
  151. unified_python_sdk-0.34.1/src/unified_python_sdk/models/operations/patchpaymentsubscription.py +78 -0
  152. unified_python_sdk-0.34.1/src/unified_python_sdk/models/operations/patchrepobranch.py +72 -0
  153. unified_python_sdk-0.34.1/src/unified_python_sdk/models/operations/patchrepocommit.py +72 -0
  154. unified_python_sdk-0.34.1/src/unified_python_sdk/models/operations/patchrepoorganization.py +72 -0
  155. unified_python_sdk-0.34.1/src/unified_python_sdk/models/operations/patchrepopullrequest.py +72 -0
  156. unified_python_sdk-0.34.1/src/unified_python_sdk/models/operations/patchreporepository.py +72 -0
  157. unified_python_sdk-0.34.1/src/unified_python_sdk/models/operations/patchscimgroups.py +59 -0
  158. unified_python_sdk-0.34.1/src/unified_python_sdk/models/operations/patchscimusers.py +59 -0
  159. unified_python_sdk-0.34.1/src/unified_python_sdk/models/operations/patchstoragefile.py +72 -0
  160. unified_python_sdk-0.34.1/src/unified_python_sdk/models/operations/patchtaskcomment.py +72 -0
  161. unified_python_sdk-0.34.1/src/unified_python_sdk/models/operations/patchtaskproject.py +72 -0
  162. unified_python_sdk-0.34.1/src/unified_python_sdk/models/operations/patchtasktask.py +72 -0
  163. unified_python_sdk-0.34.1/src/unified_python_sdk/models/operations/patchticketingcustomer.py +74 -0
  164. unified_python_sdk-0.34.1/src/unified_python_sdk/models/operations/patchticketingnote.py +72 -0
  165. unified_python_sdk-0.34.1/src/unified_python_sdk/models/operations/patchticketingticket.py +72 -0
  166. unified_python_sdk-0.34.1/src/unified_python_sdk/models/operations/patchuccontact.py +74 -0
  167. unified_python_sdk-0.34.1/src/unified_python_sdk/models/operations/patchunifiedconnection.py +54 -0
  168. unified_python_sdk-0.34.1/src/unified_python_sdk/models/operations/patchunifiedwebhook.py +54 -0
  169. unified_python_sdk-0.34.1/src/unified_python_sdk/models/operations/updateaccountingaccount.py +76 -0
  170. unified_python_sdk-0.34.1/src/unified_python_sdk/models/operations/updateaccountingcontact.py +74 -0
  171. unified_python_sdk-0.34.1/src/unified_python_sdk/models/operations/updateaccountinginvoice.py +74 -0
  172. unified_python_sdk-0.34.1/src/unified_python_sdk/models/operations/updateaccountingjournal.py +74 -0
  173. unified_python_sdk-0.34.1/src/unified_python_sdk/models/operations/updateaccountingorder.py +72 -0
  174. unified_python_sdk-0.34.1/src/unified_python_sdk/models/operations/updateaccountingtaxrate.py +74 -0
  175. unified_python_sdk-0.34.1/src/unified_python_sdk/models/operations/updateaccountingtransaction.py +78 -0
  176. unified_python_sdk-0.34.1/src/unified_python_sdk/models/operations/updateatsactivity.py +72 -0
  177. unified_python_sdk-0.34.1/src/unified_python_sdk/models/operations/updateatsapplication.py +72 -0
  178. unified_python_sdk-0.34.1/src/unified_python_sdk/models/operations/updateatscandidate.py +72 -0
  179. unified_python_sdk-0.34.1/src/unified_python_sdk/models/operations/updateatsdocument.py +72 -0
  180. unified_python_sdk-0.34.1/src/unified_python_sdk/models/operations/updateatsinterview.py +72 -0
  181. unified_python_sdk-0.34.1/src/unified_python_sdk/models/operations/updateatsjob.py +72 -0
  182. unified_python_sdk-0.34.1/src/unified_python_sdk/models/operations/updateatsscorecard.py +72 -0
  183. unified_python_sdk-0.34.1/src/unified_python_sdk/models/operations/updatecommercecollection.py +78 -0
  184. unified_python_sdk-0.34.1/src/unified_python_sdk/models/operations/updatecommerceinventory.py +74 -0
  185. unified_python_sdk-0.34.1/src/unified_python_sdk/models/operations/updatecommerceitem.py +72 -0
  186. unified_python_sdk-0.34.1/src/unified_python_sdk/models/operations/updatecommercelocation.py +72 -0
  187. unified_python_sdk-0.34.1/src/unified_python_sdk/models/operations/updatecrmcompany.py +74 -0
  188. unified_python_sdk-0.34.1/src/unified_python_sdk/models/operations/updatecrmcontact.py +74 -0
  189. unified_python_sdk-0.34.1/src/unified_python_sdk/models/operations/updatecrmdeal.py +74 -0
  190. unified_python_sdk-0.34.1/src/unified_python_sdk/models/operations/updatecrmevent.py +74 -0
  191. unified_python_sdk-0.34.1/src/unified_python_sdk/models/operations/updatecrmlead.py +72 -0
  192. unified_python_sdk-0.34.1/src/unified_python_sdk/models/operations/updatecrmpipeline.py +72 -0
  193. unified_python_sdk-0.34.1/src/unified_python_sdk/models/operations/updatehriscompany.py +72 -0
  194. unified_python_sdk-0.34.1/src/unified_python_sdk/models/operations/updatehrisemployee.py +72 -0
  195. unified_python_sdk-0.34.1/src/unified_python_sdk/models/operations/updatehrisgroup.py +72 -0
  196. unified_python_sdk-0.34.1/src/unified_python_sdk/models/operations/updatehrislocation.py +72 -0
  197. unified_python_sdk-0.34.1/src/unified_python_sdk/models/operations/updatekmscomment.py +72 -0
  198. unified_python_sdk-0.34.1/src/unified_python_sdk/models/operations/updatekmspage.py +72 -0
  199. unified_python_sdk-0.34.1/src/unified_python_sdk/models/operations/updatekmsspace.py +72 -0
  200. unified_python_sdk-0.34.1/src/unified_python_sdk/models/operations/updatelmsclass.py +72 -0
  201. unified_python_sdk-0.34.1/src/unified_python_sdk/models/operations/updatelmscourse.py +72 -0
  202. unified_python_sdk-0.34.1/src/unified_python_sdk/models/operations/updatelmsinstructor.py +72 -0
  203. unified_python_sdk-0.34.1/src/unified_python_sdk/models/operations/updatelmsstudent.py +72 -0
  204. unified_python_sdk-0.34.1/src/unified_python_sdk/models/operations/updatemartechlist.py +74 -0
  205. unified_python_sdk-0.34.1/src/unified_python_sdk/models/operations/updatemartechmember.py +74 -0
  206. unified_python_sdk-0.34.1/src/unified_python_sdk/models/operations/updatemessagingmessage.py +72 -0
  207. unified_python_sdk-0.34.1/src/unified_python_sdk/models/operations/updatemetadatametadata.py +72 -0
  208. unified_python_sdk-0.34.1/src/unified_python_sdk/models/operations/updatepaymentlink.py +72 -0
  209. unified_python_sdk-0.34.1/src/unified_python_sdk/models/operations/updatepaymentpayment.py +72 -0
  210. unified_python_sdk-0.34.1/src/unified_python_sdk/models/operations/updatepaymentsubscription.py +78 -0
  211. unified_python_sdk-0.34.1/src/unified_python_sdk/models/operations/updaterepobranch.py +72 -0
  212. unified_python_sdk-0.34.1/src/unified_python_sdk/models/operations/updaterepocommit.py +72 -0
  213. unified_python_sdk-0.34.1/src/unified_python_sdk/models/operations/updaterepoorganization.py +72 -0
  214. unified_python_sdk-0.34.1/src/unified_python_sdk/models/operations/updaterepopullrequest.py +72 -0
  215. unified_python_sdk-0.34.1/src/unified_python_sdk/models/operations/updatereporepository.py +72 -0
  216. unified_python_sdk-0.34.1/src/unified_python_sdk/models/operations/updatescimgroups.py +59 -0
  217. unified_python_sdk-0.34.1/src/unified_python_sdk/models/operations/updatescimusers.py +59 -0
  218. unified_python_sdk-0.34.1/src/unified_python_sdk/models/operations/updatestoragefile.py +72 -0
  219. unified_python_sdk-0.34.1/src/unified_python_sdk/models/operations/updatetaskcomment.py +72 -0
  220. unified_python_sdk-0.34.1/src/unified_python_sdk/models/operations/updatetaskproject.py +72 -0
  221. unified_python_sdk-0.34.1/src/unified_python_sdk/models/operations/updatetasktask.py +72 -0
  222. unified_python_sdk-0.34.1/src/unified_python_sdk/models/operations/updateticketingcustomer.py +74 -0
  223. unified_python_sdk-0.34.1/src/unified_python_sdk/models/operations/updateticketingnote.py +72 -0
  224. unified_python_sdk-0.34.1/src/unified_python_sdk/models/operations/updateticketingticket.py +72 -0
  225. unified_python_sdk-0.34.1/src/unified_python_sdk/models/operations/updateuccontact.py +74 -0
  226. unified_python_sdk-0.34.1/src/unified_python_sdk/models/operations/updateunifiedconnection.py +54 -0
  227. unified_python_sdk-0.34.1/src/unified_python_sdk/models/operations/updateunifiedwebhook.py +54 -0
  228. unified_python_sdk-0.34.1/src/unified_python_sdk/models/shared/__init__.py +1261 -0
  229. unified_python_sdk-0.34.1/src/unified_python_sdk/models/shared/accountinginvoice.py +118 -0
  230. unified_python_sdk-0.34.1/src/unified_python_sdk/models/shared/atsactivity.py +99 -0
  231. unified_python_sdk-0.34.1/src/unified_python_sdk/models/shared/atsgroup.py +31 -0
  232. unified_python_sdk-0.34.1/src/unified_python_sdk/models/shared/atsjob.py +121 -0
  233. unified_python_sdk-0.34.1/src/unified_python_sdk/models/shared/integrationsupport.py +594 -0
  234. unified_python_sdk-0.34.1/src/unified_python_sdk/models/shared/metadatametadata.py +68 -0
  235. unified_python_sdk-0.34.1/src/unified_python_sdk/models/shared/webhook.py +189 -0
  236. unified_python_sdk-0.34.1/src/unified_python_sdk/note.py +1130 -0
  237. unified_python_sdk-0.34.1/src/unified_python_sdk/order.py +1130 -0
  238. unified_python_sdk-0.34.1/src/unified_python_sdk/organization.py +1502 -0
  239. unified_python_sdk-0.34.1/src/unified_python_sdk/page.py +1102 -0
  240. unified_python_sdk-0.34.1/src/unified_python_sdk/payment.py +4140 -0
  241. unified_python_sdk-0.34.1/src/unified_python_sdk/pipeline.py +1128 -0
  242. unified_python_sdk-0.34.1/src/unified_python_sdk/project.py +1128 -0
  243. unified_python_sdk-0.34.1/src/unified_python_sdk/prompt.py +198 -0
  244. unified_python_sdk-0.34.1/src/unified_python_sdk/pullrequest.py +1130 -0
  245. unified_python_sdk-0.34.1/src/unified_python_sdk/repo.py +5606 -0
  246. unified_python_sdk-0.34.1/src/unified_python_sdk/repository.py +1130 -0
  247. unified_python_sdk-0.34.1/src/unified_python_sdk/scim.py +2240 -0
  248. unified_python_sdk-0.34.1/src/unified_python_sdk/scorecard.py +1130 -0
  249. unified_python_sdk-0.34.1/src/unified_python_sdk/space.py +1118 -0
  250. unified_python_sdk-0.34.1/src/unified_python_sdk/storage.py +1128 -0
  251. unified_python_sdk-0.34.1/src/unified_python_sdk/student.py +1128 -0
  252. unified_python_sdk-0.34.1/src/unified_python_sdk/subscription.py +1174 -0
  253. unified_python_sdk-0.34.1/src/unified_python_sdk/task.py +3354 -0
  254. unified_python_sdk-0.34.1/src/unified_python_sdk/taxrate.py +1166 -0
  255. unified_python_sdk-0.34.1/src/unified_python_sdk/ticket.py +1130 -0
  256. unified_python_sdk-0.34.1/src/unified_python_sdk/ticketing.py +3406 -0
  257. unified_python_sdk-0.34.1/src/unified_python_sdk/transaction.py +1178 -0
  258. unified_python_sdk-0.34.1/src/unified_python_sdk/uc.py +1304 -0
  259. unified_python_sdk-0.34.1/src/unified_python_sdk/unified.py +3740 -0
  260. unified_python_sdk-0.34.1/src/unified_python_sdk/user.py +1124 -0
  261. unified_python_sdk-0.34.1/src/unified_python_sdk/webhook.py +1510 -0
  262. unified_python_sdk-0.32.1/PKG-INFO +0 -1543
  263. unified_python_sdk-0.32.1/README-PYPI.md +0 -1521
  264. unified_python_sdk-0.32.1/pyproject.toml +0 -57
  265. unified_python_sdk-0.32.1/src/unified_python_sdk/_version.py +0 -15
  266. unified_python_sdk-0.32.1/src/unified_python_sdk/account.py +0 -1166
  267. unified_python_sdk-0.32.1/src/unified_python_sdk/accounting.py +0 -8474
  268. unified_python_sdk-0.32.1/src/unified_python_sdk/activity.py +0 -1128
  269. unified_python_sdk-0.32.1/src/unified_python_sdk/application.py +0 -1154
  270. unified_python_sdk-0.32.1/src/unified_python_sdk/ats.py +0 -8462
  271. unified_python_sdk-0.32.1/src/unified_python_sdk/branch.py +0 -1128
  272. unified_python_sdk-0.32.1/src/unified_python_sdk/candidate.py +0 -1154
  273. unified_python_sdk-0.32.1/src/unified_python_sdk/class_.py +0 -1118
  274. unified_python_sdk-0.32.1/src/unified_python_sdk/collection.py +0 -1174
  275. unified_python_sdk-0.32.1/src/unified_python_sdk/comment.py +0 -2246
  276. unified_python_sdk-0.32.1/src/unified_python_sdk/commerce.py +0 -4622
  277. unified_python_sdk-0.32.1/src/unified_python_sdk/commit.py +0 -1128
  278. unified_python_sdk-0.32.1/src/unified_python_sdk/company.py +0 -2790
  279. unified_python_sdk-0.32.1/src/unified_python_sdk/connection.py +0 -1136
  280. unified_python_sdk-0.32.1/src/unified_python_sdk/contact.py +0 -3398
  281. unified_python_sdk-0.32.1/src/unified_python_sdk/course.py +0 -1124
  282. unified_python_sdk-0.32.1/src/unified_python_sdk/crm.py +0 -6656
  283. unified_python_sdk-0.32.1/src/unified_python_sdk/customer.py +0 -1166
  284. unified_python_sdk-0.32.1/src/unified_python_sdk/deal.py +0 -1102
  285. unified_python_sdk-0.32.1/src/unified_python_sdk/document.py +0 -1128
  286. unified_python_sdk-0.32.1/src/unified_python_sdk/employee.py +0 -1154
  287. unified_python_sdk-0.32.1/src/unified_python_sdk/event.py +0 -1118
  288. unified_python_sdk-0.32.1/src/unified_python_sdk/file.py +0 -1128
  289. unified_python_sdk-0.32.1/src/unified_python_sdk/genai.py +0 -380
  290. unified_python_sdk-0.32.1/src/unified_python_sdk/group.py +0 -2240
  291. unified_python_sdk-0.32.1/src/unified_python_sdk/hris.py +0 -5254
  292. unified_python_sdk-0.32.1/src/unified_python_sdk/instructor.py +0 -1154
  293. unified_python_sdk-0.32.1/src/unified_python_sdk/interview.py +0 -1154
  294. unified_python_sdk-0.32.1/src/unified_python_sdk/inventory.py +0 -1170
  295. unified_python_sdk-0.32.1/src/unified_python_sdk/invoice.py +0 -1166
  296. unified_python_sdk-0.32.1/src/unified_python_sdk/item.py +0 -1154
  297. unified_python_sdk-0.32.1/src/unified_python_sdk/job.py +0 -1102
  298. unified_python_sdk-0.32.1/src/unified_python_sdk/journal.py +0 -1166
  299. unified_python_sdk-0.32.1/src/unified_python_sdk/kms.py +0 -3328
  300. unified_python_sdk-0.32.1/src/unified_python_sdk/lead.py +0 -1102
  301. unified_python_sdk-0.32.1/src/unified_python_sdk/link.py +0 -1128
  302. unified_python_sdk-0.32.1/src/unified_python_sdk/list.py +0 -1152
  303. unified_python_sdk-0.32.1/src/unified_python_sdk/lms.py +0 -4494
  304. unified_python_sdk-0.32.1/src/unified_python_sdk/location.py +0 -2298
  305. unified_python_sdk-0.32.1/src/unified_python_sdk/martech.py +0 -2296
  306. unified_python_sdk-0.32.1/src/unified_python_sdk/member.py +0 -1154
  307. unified_python_sdk-0.32.1/src/unified_python_sdk/message.py +0 -1154
  308. unified_python_sdk-0.32.1/src/unified_python_sdk/messaging.py +0 -1518
  309. unified_python_sdk-0.32.1/src/unified_python_sdk/metadata.py +0 -1154
  310. unified_python_sdk-0.32.1/src/unified_python_sdk/models/operations/createaccountingaccount.py +0 -69
  311. unified_python_sdk-0.32.1/src/unified_python_sdk/models/operations/createaccountingcontact.py +0 -67
  312. unified_python_sdk-0.32.1/src/unified_python_sdk/models/operations/createaccountinginvoice.py +0 -67
  313. unified_python_sdk-0.32.1/src/unified_python_sdk/models/operations/createaccountingjournal.py +0 -67
  314. unified_python_sdk-0.32.1/src/unified_python_sdk/models/operations/createaccountingorder.py +0 -65
  315. unified_python_sdk-0.32.1/src/unified_python_sdk/models/operations/createaccountingtaxrate.py +0 -67
  316. unified_python_sdk-0.32.1/src/unified_python_sdk/models/operations/createaccountingtransaction.py +0 -73
  317. unified_python_sdk-0.32.1/src/unified_python_sdk/models/operations/createatsactivity.py +0 -65
  318. unified_python_sdk-0.32.1/src/unified_python_sdk/models/operations/createatsapplication.py +0 -65
  319. unified_python_sdk-0.32.1/src/unified_python_sdk/models/operations/createatscandidate.py +0 -65
  320. unified_python_sdk-0.32.1/src/unified_python_sdk/models/operations/createatsdocument.py +0 -65
  321. unified_python_sdk-0.32.1/src/unified_python_sdk/models/operations/createatsinterview.py +0 -65
  322. unified_python_sdk-0.32.1/src/unified_python_sdk/models/operations/createatsjob.py +0 -65
  323. unified_python_sdk-0.32.1/src/unified_python_sdk/models/operations/createatsscorecard.py +0 -65
  324. unified_python_sdk-0.32.1/src/unified_python_sdk/models/operations/createcommercecollection.py +0 -73
  325. unified_python_sdk-0.32.1/src/unified_python_sdk/models/operations/createcommerceinventory.py +0 -67
  326. unified_python_sdk-0.32.1/src/unified_python_sdk/models/operations/createcommerceitem.py +0 -65
  327. unified_python_sdk-0.32.1/src/unified_python_sdk/models/operations/createcommercelocation.py +0 -65
  328. unified_python_sdk-0.32.1/src/unified_python_sdk/models/operations/createcrmcompany.py +0 -67
  329. unified_python_sdk-0.32.1/src/unified_python_sdk/models/operations/createcrmcontact.py +0 -67
  330. unified_python_sdk-0.32.1/src/unified_python_sdk/models/operations/createcrmdeal.py +0 -67
  331. unified_python_sdk-0.32.1/src/unified_python_sdk/models/operations/createcrmevent.py +0 -67
  332. unified_python_sdk-0.32.1/src/unified_python_sdk/models/operations/createcrmlead.py +0 -65
  333. unified_python_sdk-0.32.1/src/unified_python_sdk/models/operations/createcrmpipeline.py +0 -65
  334. unified_python_sdk-0.32.1/src/unified_python_sdk/models/operations/creategenaiprompt.py +0 -65
  335. unified_python_sdk-0.32.1/src/unified_python_sdk/models/operations/createhriscompany.py +0 -65
  336. unified_python_sdk-0.32.1/src/unified_python_sdk/models/operations/createhrisemployee.py +0 -65
  337. unified_python_sdk-0.32.1/src/unified_python_sdk/models/operations/createhrisgroup.py +0 -65
  338. unified_python_sdk-0.32.1/src/unified_python_sdk/models/operations/createhrislocation.py +0 -65
  339. unified_python_sdk-0.32.1/src/unified_python_sdk/models/operations/createkmscomment.py +0 -65
  340. unified_python_sdk-0.32.1/src/unified_python_sdk/models/operations/createkmspage.py +0 -65
  341. unified_python_sdk-0.32.1/src/unified_python_sdk/models/operations/createkmsspace.py +0 -65
  342. unified_python_sdk-0.32.1/src/unified_python_sdk/models/operations/createlmsclass.py +0 -65
  343. unified_python_sdk-0.32.1/src/unified_python_sdk/models/operations/createlmscourse.py +0 -65
  344. unified_python_sdk-0.32.1/src/unified_python_sdk/models/operations/createlmsinstructor.py +0 -65
  345. unified_python_sdk-0.32.1/src/unified_python_sdk/models/operations/createlmsstudent.py +0 -65
  346. unified_python_sdk-0.32.1/src/unified_python_sdk/models/operations/createmartechlist.py +0 -67
  347. unified_python_sdk-0.32.1/src/unified_python_sdk/models/operations/createmartechmember.py +0 -67
  348. unified_python_sdk-0.32.1/src/unified_python_sdk/models/operations/createmessagingmessage.py +0 -65
  349. unified_python_sdk-0.32.1/src/unified_python_sdk/models/operations/createmetadatametadata.py +0 -65
  350. unified_python_sdk-0.32.1/src/unified_python_sdk/models/operations/createpaymentlink.py +0 -65
  351. unified_python_sdk-0.32.1/src/unified_python_sdk/models/operations/createpaymentpayment.py +0 -65
  352. unified_python_sdk-0.32.1/src/unified_python_sdk/models/operations/createpaymentsubscription.py +0 -73
  353. unified_python_sdk-0.32.1/src/unified_python_sdk/models/operations/createrepobranch.py +0 -65
  354. unified_python_sdk-0.32.1/src/unified_python_sdk/models/operations/createrepocommit.py +0 -65
  355. unified_python_sdk-0.32.1/src/unified_python_sdk/models/operations/createrepoorganization.py +0 -65
  356. unified_python_sdk-0.32.1/src/unified_python_sdk/models/operations/createrepopullrequest.py +0 -65
  357. unified_python_sdk-0.32.1/src/unified_python_sdk/models/operations/createreporepository.py +0 -65
  358. unified_python_sdk-0.32.1/src/unified_python_sdk/models/operations/createscimgroups.py +0 -52
  359. unified_python_sdk-0.32.1/src/unified_python_sdk/models/operations/createscimusers.py +0 -92
  360. unified_python_sdk-0.32.1/src/unified_python_sdk/models/operations/createstoragefile.py +0 -65
  361. unified_python_sdk-0.32.1/src/unified_python_sdk/models/operations/createtaskcomment.py +0 -65
  362. unified_python_sdk-0.32.1/src/unified_python_sdk/models/operations/createtaskproject.py +0 -65
  363. unified_python_sdk-0.32.1/src/unified_python_sdk/models/operations/createtasktask.py +0 -65
  364. unified_python_sdk-0.32.1/src/unified_python_sdk/models/operations/createticketingcustomer.py +0 -67
  365. unified_python_sdk-0.32.1/src/unified_python_sdk/models/operations/createticketingnote.py +0 -65
  366. unified_python_sdk-0.32.1/src/unified_python_sdk/models/operations/createticketingticket.py +0 -65
  367. unified_python_sdk-0.32.1/src/unified_python_sdk/models/operations/createuccontact.py +0 -67
  368. unified_python_sdk-0.32.1/src/unified_python_sdk/models/operations/createunifiedwebhook.py +0 -55
  369. unified_python_sdk-0.32.1/src/unified_python_sdk/models/operations/listaccountinginvoices.py +0 -111
  370. unified_python_sdk-0.32.1/src/unified_python_sdk/models/operations/listatsdocuments.py +0 -111
  371. unified_python_sdk-0.32.1/src/unified_python_sdk/models/operations/patchaccountingaccount.py +0 -76
  372. unified_python_sdk-0.32.1/src/unified_python_sdk/models/operations/patchaccountingcontact.py +0 -74
  373. unified_python_sdk-0.32.1/src/unified_python_sdk/models/operations/patchaccountinginvoice.py +0 -74
  374. unified_python_sdk-0.32.1/src/unified_python_sdk/models/operations/patchaccountingjournal.py +0 -74
  375. unified_python_sdk-0.32.1/src/unified_python_sdk/models/operations/patchaccountingorder.py +0 -72
  376. unified_python_sdk-0.32.1/src/unified_python_sdk/models/operations/patchaccountingtaxrate.py +0 -74
  377. unified_python_sdk-0.32.1/src/unified_python_sdk/models/operations/patchaccountingtransaction.py +0 -80
  378. unified_python_sdk-0.32.1/src/unified_python_sdk/models/operations/patchatsactivity.py +0 -72
  379. unified_python_sdk-0.32.1/src/unified_python_sdk/models/operations/patchatsapplication.py +0 -72
  380. unified_python_sdk-0.32.1/src/unified_python_sdk/models/operations/patchatscandidate.py +0 -72
  381. unified_python_sdk-0.32.1/src/unified_python_sdk/models/operations/patchatsdocument.py +0 -72
  382. unified_python_sdk-0.32.1/src/unified_python_sdk/models/operations/patchatsinterview.py +0 -72
  383. unified_python_sdk-0.32.1/src/unified_python_sdk/models/operations/patchatsjob.py +0 -72
  384. unified_python_sdk-0.32.1/src/unified_python_sdk/models/operations/patchatsscorecard.py +0 -72
  385. unified_python_sdk-0.32.1/src/unified_python_sdk/models/operations/patchcommercecollection.py +0 -80
  386. unified_python_sdk-0.32.1/src/unified_python_sdk/models/operations/patchcommerceinventory.py +0 -74
  387. unified_python_sdk-0.32.1/src/unified_python_sdk/models/operations/patchcommerceitem.py +0 -72
  388. unified_python_sdk-0.32.1/src/unified_python_sdk/models/operations/patchcommercelocation.py +0 -72
  389. unified_python_sdk-0.32.1/src/unified_python_sdk/models/operations/patchcrmcompany.py +0 -74
  390. unified_python_sdk-0.32.1/src/unified_python_sdk/models/operations/patchcrmcontact.py +0 -74
  391. unified_python_sdk-0.32.1/src/unified_python_sdk/models/operations/patchcrmdeal.py +0 -74
  392. unified_python_sdk-0.32.1/src/unified_python_sdk/models/operations/patchcrmevent.py +0 -74
  393. unified_python_sdk-0.32.1/src/unified_python_sdk/models/operations/patchcrmlead.py +0 -72
  394. unified_python_sdk-0.32.1/src/unified_python_sdk/models/operations/patchcrmpipeline.py +0 -72
  395. unified_python_sdk-0.32.1/src/unified_python_sdk/models/operations/patchhriscompany.py +0 -72
  396. unified_python_sdk-0.32.1/src/unified_python_sdk/models/operations/patchhrisemployee.py +0 -72
  397. unified_python_sdk-0.32.1/src/unified_python_sdk/models/operations/patchhrisgroup.py +0 -72
  398. unified_python_sdk-0.32.1/src/unified_python_sdk/models/operations/patchhrislocation.py +0 -72
  399. unified_python_sdk-0.32.1/src/unified_python_sdk/models/operations/patchkmscomment.py +0 -72
  400. unified_python_sdk-0.32.1/src/unified_python_sdk/models/operations/patchkmspage.py +0 -72
  401. unified_python_sdk-0.32.1/src/unified_python_sdk/models/operations/patchkmsspace.py +0 -72
  402. unified_python_sdk-0.32.1/src/unified_python_sdk/models/operations/patchlmsclass.py +0 -72
  403. unified_python_sdk-0.32.1/src/unified_python_sdk/models/operations/patchlmscourse.py +0 -72
  404. unified_python_sdk-0.32.1/src/unified_python_sdk/models/operations/patchlmsinstructor.py +0 -72
  405. unified_python_sdk-0.32.1/src/unified_python_sdk/models/operations/patchlmsstudent.py +0 -72
  406. unified_python_sdk-0.32.1/src/unified_python_sdk/models/operations/patchmartechlist.py +0 -74
  407. unified_python_sdk-0.32.1/src/unified_python_sdk/models/operations/patchmartechmember.py +0 -74
  408. unified_python_sdk-0.32.1/src/unified_python_sdk/models/operations/patchmessagingmessage.py +0 -72
  409. unified_python_sdk-0.32.1/src/unified_python_sdk/models/operations/patchmetadatametadata.py +0 -72
  410. unified_python_sdk-0.32.1/src/unified_python_sdk/models/operations/patchpaymentlink.py +0 -72
  411. unified_python_sdk-0.32.1/src/unified_python_sdk/models/operations/patchpaymentpayment.py +0 -72
  412. unified_python_sdk-0.32.1/src/unified_python_sdk/models/operations/patchpaymentsubscription.py +0 -80
  413. unified_python_sdk-0.32.1/src/unified_python_sdk/models/operations/patchrepobranch.py +0 -72
  414. unified_python_sdk-0.32.1/src/unified_python_sdk/models/operations/patchrepocommit.py +0 -72
  415. unified_python_sdk-0.32.1/src/unified_python_sdk/models/operations/patchrepoorganization.py +0 -72
  416. unified_python_sdk-0.32.1/src/unified_python_sdk/models/operations/patchrepopullrequest.py +0 -72
  417. unified_python_sdk-0.32.1/src/unified_python_sdk/models/operations/patchreporepository.py +0 -72
  418. unified_python_sdk-0.32.1/src/unified_python_sdk/models/operations/patchscimgroups.py +0 -59
  419. unified_python_sdk-0.32.1/src/unified_python_sdk/models/operations/patchscimusers.py +0 -59
  420. unified_python_sdk-0.32.1/src/unified_python_sdk/models/operations/patchstoragefile.py +0 -72
  421. unified_python_sdk-0.32.1/src/unified_python_sdk/models/operations/patchtaskcomment.py +0 -72
  422. unified_python_sdk-0.32.1/src/unified_python_sdk/models/operations/patchtaskproject.py +0 -72
  423. unified_python_sdk-0.32.1/src/unified_python_sdk/models/operations/patchtasktask.py +0 -72
  424. unified_python_sdk-0.32.1/src/unified_python_sdk/models/operations/patchticketingcustomer.py +0 -74
  425. unified_python_sdk-0.32.1/src/unified_python_sdk/models/operations/patchticketingnote.py +0 -72
  426. unified_python_sdk-0.32.1/src/unified_python_sdk/models/operations/patchticketingticket.py +0 -72
  427. unified_python_sdk-0.32.1/src/unified_python_sdk/models/operations/patchuccontact.py +0 -74
  428. unified_python_sdk-0.32.1/src/unified_python_sdk/models/operations/patchunifiedconnection.py +0 -54
  429. unified_python_sdk-0.32.1/src/unified_python_sdk/models/operations/patchunifiedwebhook.py +0 -54
  430. unified_python_sdk-0.32.1/src/unified_python_sdk/models/operations/updateaccountingaccount.py +0 -76
  431. unified_python_sdk-0.32.1/src/unified_python_sdk/models/operations/updateaccountingcontact.py +0 -74
  432. unified_python_sdk-0.32.1/src/unified_python_sdk/models/operations/updateaccountinginvoice.py +0 -74
  433. unified_python_sdk-0.32.1/src/unified_python_sdk/models/operations/updateaccountingjournal.py +0 -74
  434. unified_python_sdk-0.32.1/src/unified_python_sdk/models/operations/updateaccountingorder.py +0 -72
  435. unified_python_sdk-0.32.1/src/unified_python_sdk/models/operations/updateaccountingtaxrate.py +0 -74
  436. unified_python_sdk-0.32.1/src/unified_python_sdk/models/operations/updateaccountingtransaction.py +0 -80
  437. unified_python_sdk-0.32.1/src/unified_python_sdk/models/operations/updateatsactivity.py +0 -72
  438. unified_python_sdk-0.32.1/src/unified_python_sdk/models/operations/updateatsapplication.py +0 -72
  439. unified_python_sdk-0.32.1/src/unified_python_sdk/models/operations/updateatscandidate.py +0 -72
  440. unified_python_sdk-0.32.1/src/unified_python_sdk/models/operations/updateatsdocument.py +0 -72
  441. unified_python_sdk-0.32.1/src/unified_python_sdk/models/operations/updateatsinterview.py +0 -72
  442. unified_python_sdk-0.32.1/src/unified_python_sdk/models/operations/updateatsjob.py +0 -72
  443. unified_python_sdk-0.32.1/src/unified_python_sdk/models/operations/updateatsscorecard.py +0 -72
  444. unified_python_sdk-0.32.1/src/unified_python_sdk/models/operations/updatecommercecollection.py +0 -80
  445. unified_python_sdk-0.32.1/src/unified_python_sdk/models/operations/updatecommerceinventory.py +0 -74
  446. unified_python_sdk-0.32.1/src/unified_python_sdk/models/operations/updatecommerceitem.py +0 -72
  447. unified_python_sdk-0.32.1/src/unified_python_sdk/models/operations/updatecommercelocation.py +0 -72
  448. unified_python_sdk-0.32.1/src/unified_python_sdk/models/operations/updatecrmcompany.py +0 -74
  449. unified_python_sdk-0.32.1/src/unified_python_sdk/models/operations/updatecrmcontact.py +0 -74
  450. unified_python_sdk-0.32.1/src/unified_python_sdk/models/operations/updatecrmdeal.py +0 -74
  451. unified_python_sdk-0.32.1/src/unified_python_sdk/models/operations/updatecrmevent.py +0 -74
  452. unified_python_sdk-0.32.1/src/unified_python_sdk/models/operations/updatecrmlead.py +0 -72
  453. unified_python_sdk-0.32.1/src/unified_python_sdk/models/operations/updatecrmpipeline.py +0 -72
  454. unified_python_sdk-0.32.1/src/unified_python_sdk/models/operations/updatehriscompany.py +0 -72
  455. unified_python_sdk-0.32.1/src/unified_python_sdk/models/operations/updatehrisemployee.py +0 -72
  456. unified_python_sdk-0.32.1/src/unified_python_sdk/models/operations/updatehrisgroup.py +0 -72
  457. unified_python_sdk-0.32.1/src/unified_python_sdk/models/operations/updatehrislocation.py +0 -72
  458. unified_python_sdk-0.32.1/src/unified_python_sdk/models/operations/updatekmscomment.py +0 -72
  459. unified_python_sdk-0.32.1/src/unified_python_sdk/models/operations/updatekmspage.py +0 -72
  460. unified_python_sdk-0.32.1/src/unified_python_sdk/models/operations/updatekmsspace.py +0 -72
  461. unified_python_sdk-0.32.1/src/unified_python_sdk/models/operations/updatelmsclass.py +0 -72
  462. unified_python_sdk-0.32.1/src/unified_python_sdk/models/operations/updatelmscourse.py +0 -72
  463. unified_python_sdk-0.32.1/src/unified_python_sdk/models/operations/updatelmsinstructor.py +0 -72
  464. unified_python_sdk-0.32.1/src/unified_python_sdk/models/operations/updatelmsstudent.py +0 -72
  465. unified_python_sdk-0.32.1/src/unified_python_sdk/models/operations/updatemartechlist.py +0 -74
  466. unified_python_sdk-0.32.1/src/unified_python_sdk/models/operations/updatemartechmember.py +0 -74
  467. unified_python_sdk-0.32.1/src/unified_python_sdk/models/operations/updatemessagingmessage.py +0 -72
  468. unified_python_sdk-0.32.1/src/unified_python_sdk/models/operations/updatemetadatametadata.py +0 -72
  469. unified_python_sdk-0.32.1/src/unified_python_sdk/models/operations/updatepaymentlink.py +0 -72
  470. unified_python_sdk-0.32.1/src/unified_python_sdk/models/operations/updatepaymentpayment.py +0 -72
  471. unified_python_sdk-0.32.1/src/unified_python_sdk/models/operations/updatepaymentsubscription.py +0 -80
  472. unified_python_sdk-0.32.1/src/unified_python_sdk/models/operations/updaterepobranch.py +0 -72
  473. unified_python_sdk-0.32.1/src/unified_python_sdk/models/operations/updaterepocommit.py +0 -72
  474. unified_python_sdk-0.32.1/src/unified_python_sdk/models/operations/updaterepoorganization.py +0 -72
  475. unified_python_sdk-0.32.1/src/unified_python_sdk/models/operations/updaterepopullrequest.py +0 -72
  476. unified_python_sdk-0.32.1/src/unified_python_sdk/models/operations/updatereporepository.py +0 -72
  477. unified_python_sdk-0.32.1/src/unified_python_sdk/models/operations/updatescimgroups.py +0 -59
  478. unified_python_sdk-0.32.1/src/unified_python_sdk/models/operations/updatescimusers.py +0 -59
  479. unified_python_sdk-0.32.1/src/unified_python_sdk/models/operations/updatestoragefile.py +0 -72
  480. unified_python_sdk-0.32.1/src/unified_python_sdk/models/operations/updatetaskcomment.py +0 -72
  481. unified_python_sdk-0.32.1/src/unified_python_sdk/models/operations/updatetaskproject.py +0 -72
  482. unified_python_sdk-0.32.1/src/unified_python_sdk/models/operations/updatetasktask.py +0 -72
  483. unified_python_sdk-0.32.1/src/unified_python_sdk/models/operations/updateticketingcustomer.py +0 -74
  484. unified_python_sdk-0.32.1/src/unified_python_sdk/models/operations/updateticketingnote.py +0 -72
  485. unified_python_sdk-0.32.1/src/unified_python_sdk/models/operations/updateticketingticket.py +0 -72
  486. unified_python_sdk-0.32.1/src/unified_python_sdk/models/operations/updateuccontact.py +0 -74
  487. unified_python_sdk-0.32.1/src/unified_python_sdk/models/operations/updateunifiedconnection.py +0 -54
  488. unified_python_sdk-0.32.1/src/unified_python_sdk/models/operations/updateunifiedwebhook.py +0 -54
  489. unified_python_sdk-0.32.1/src/unified_python_sdk/models/shared/__init__.py +0 -1253
  490. unified_python_sdk-0.32.1/src/unified_python_sdk/models/shared/accountinginvoice.py +0 -117
  491. unified_python_sdk-0.32.1/src/unified_python_sdk/models/shared/atsactivity.py +0 -94
  492. unified_python_sdk-0.32.1/src/unified_python_sdk/models/shared/atsjob.py +0 -115
  493. unified_python_sdk-0.32.1/src/unified_python_sdk/models/shared/integrationsupport.py +0 -576
  494. unified_python_sdk-0.32.1/src/unified_python_sdk/models/shared/metadatametadata.py +0 -64
  495. unified_python_sdk-0.32.1/src/unified_python_sdk/models/shared/webhook.py +0 -186
  496. unified_python_sdk-0.32.1/src/unified_python_sdk/note.py +0 -1154
  497. unified_python_sdk-0.32.1/src/unified_python_sdk/order.py +0 -1154
  498. unified_python_sdk-0.32.1/src/unified_python_sdk/organization.py +0 -1526
  499. unified_python_sdk-0.32.1/src/unified_python_sdk/page.py +0 -1102
  500. unified_python_sdk-0.32.1/src/unified_python_sdk/payment.py +0 -4164
  501. unified_python_sdk-0.32.1/src/unified_python_sdk/pipeline.py +0 -1128
  502. unified_python_sdk-0.32.1/src/unified_python_sdk/project.py +0 -1128
  503. unified_python_sdk-0.32.1/src/unified_python_sdk/prompt.py +0 -198
  504. unified_python_sdk-0.32.1/src/unified_python_sdk/pullrequest.py +0 -1154
  505. unified_python_sdk-0.32.1/src/unified_python_sdk/repo.py +0 -5678
  506. unified_python_sdk-0.32.1/src/unified_python_sdk/repository.py +0 -1154
  507. unified_python_sdk-0.32.1/src/unified_python_sdk/scim.py +0 -2240
  508. unified_python_sdk-0.32.1/src/unified_python_sdk/scorecard.py +0 -1154
  509. unified_python_sdk-0.32.1/src/unified_python_sdk/space.py +0 -1118
  510. unified_python_sdk-0.32.1/src/unified_python_sdk/storage.py +0 -1128
  511. unified_python_sdk-0.32.1/src/unified_python_sdk/student.py +0 -1128
  512. unified_python_sdk-0.32.1/src/unified_python_sdk/subscription.py +0 -1174
  513. unified_python_sdk-0.32.1/src/unified_python_sdk/task.py +0 -3354
  514. unified_python_sdk-0.32.1/src/unified_python_sdk/taxrate.py +0 -1166
  515. unified_python_sdk-0.32.1/src/unified_python_sdk/ticket.py +0 -1154
  516. unified_python_sdk-0.32.1/src/unified_python_sdk/ticketing.py +0 -3454
  517. unified_python_sdk-0.32.1/src/unified_python_sdk/transaction.py +0 -1178
  518. unified_python_sdk-0.32.1/src/unified_python_sdk/uc.py +0 -1304
  519. unified_python_sdk-0.32.1/src/unified_python_sdk/unified.py +0 -3740
  520. unified_python_sdk-0.32.1/src/unified_python_sdk/user.py +0 -1124
  521. unified_python_sdk-0.32.1/src/unified_python_sdk/webhook.py +0 -1510
  522. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/LICENSE.md +0 -0
  523. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/py.typed +0 -0
  524. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/__init__.py +0 -0
  525. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/_hooks/__init__.py +0 -0
  526. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/_hooks/sdkhooks.py +0 -0
  527. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/_hooks/types.py +0 -0
  528. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/apicall.py +0 -0
  529. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/applicationstatus.py +0 -0
  530. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/auth.py +0 -0
  531. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/basesdk.py +0 -0
  532. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/call.py +0 -0
  533. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/channel.py +0 -0
  534. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/enrich.py +0 -0
  535. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/httpclient.py +0 -0
  536. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/integration.py +0 -0
  537. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/issue.py +0 -0
  538. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/login.py +0 -0
  539. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/model.py +0 -0
  540. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/models/errors/__init__.py +0 -0
  541. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/models/errors/sdkerror.py +0 -0
  542. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/models/operations/__init__.py +0 -0
  543. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/models/operations/createpassthrough_json.py +0 -0
  544. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/models/operations/createpassthrough_raw.py +0 -0
  545. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/models/operations/createunifiedconnection.py +0 -0
  546. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/models/operations/getaccountingaccount.py +0 -0
  547. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/models/operations/getaccountingcontact.py +0 -0
  548. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/models/operations/getaccountinginvoice.py +0 -0
  549. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/models/operations/getaccountingjournal.py +0 -0
  550. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/models/operations/getaccountingorder.py +0 -0
  551. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/models/operations/getaccountingorganization.py +0 -0
  552. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/models/operations/getaccountingtaxrate.py +0 -0
  553. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/models/operations/getaccountingtransaction.py +0 -0
  554. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/models/operations/getatsactivity.py +0 -0
  555. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/models/operations/getatsapplication.py +0 -0
  556. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/models/operations/getatscandidate.py +0 -0
  557. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/models/operations/getatscompany.py +0 -0
  558. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/models/operations/getatsdocument.py +0 -0
  559. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/models/operations/getatsinterview.py +0 -0
  560. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/models/operations/getatsjob.py +0 -0
  561. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/models/operations/getatsscorecard.py +0 -0
  562. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/models/operations/getcommercecollection.py +0 -0
  563. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/models/operations/getcommerceinventory.py +0 -0
  564. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/models/operations/getcommerceitem.py +0 -0
  565. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/models/operations/getcommercelocation.py +0 -0
  566. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/models/operations/getcrmcompany.py +0 -0
  567. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/models/operations/getcrmcontact.py +0 -0
  568. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/models/operations/getcrmdeal.py +0 -0
  569. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/models/operations/getcrmevent.py +0 -0
  570. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/models/operations/getcrmlead.py +0 -0
  571. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/models/operations/getcrmpipeline.py +0 -0
  572. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/models/operations/gethriscompany.py +0 -0
  573. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/models/operations/gethrisemployee.py +0 -0
  574. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/models/operations/gethrisgroup.py +0 -0
  575. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/models/operations/gethrislocation.py +0 -0
  576. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/models/operations/gethrispayslip.py +0 -0
  577. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/models/operations/gethristimeoff.py +0 -0
  578. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/models/operations/getkmscomment.py +0 -0
  579. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/models/operations/getkmspage.py +0 -0
  580. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/models/operations/getkmsspace.py +0 -0
  581. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/models/operations/getlmsclass.py +0 -0
  582. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/models/operations/getlmscourse.py +0 -0
  583. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/models/operations/getlmsinstructor.py +0 -0
  584. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/models/operations/getlmsstudent.py +0 -0
  585. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/models/operations/getmartechlist.py +0 -0
  586. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/models/operations/getmartechmember.py +0 -0
  587. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/models/operations/getmessagingchannel.py +0 -0
  588. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/models/operations/getmessagingmessage.py +0 -0
  589. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/models/operations/getmetadatametadata.py +0 -0
  590. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/models/operations/getpaymentlink.py +0 -0
  591. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/models/operations/getpaymentpayment.py +0 -0
  592. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/models/operations/getpaymentpayout.py +0 -0
  593. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/models/operations/getpaymentrefund.py +0 -0
  594. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/models/operations/getpaymentsubscription.py +0 -0
  595. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/models/operations/getrepobranch.py +0 -0
  596. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/models/operations/getrepocommit.py +0 -0
  597. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/models/operations/getrepoorganization.py +0 -0
  598. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/models/operations/getrepopullrequest.py +0 -0
  599. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/models/operations/getreporepository.py +0 -0
  600. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/models/operations/getscimgroups.py +0 -0
  601. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/models/operations/getscimusers.py +0 -0
  602. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/models/operations/getstoragefile.py +0 -0
  603. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/models/operations/gettaskcomment.py +0 -0
  604. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/models/operations/gettaskproject.py +0 -0
  605. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/models/operations/gettasktask.py +0 -0
  606. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/models/operations/getticketingcustomer.py +0 -0
  607. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/models/operations/getticketingnote.py +0 -0
  608. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/models/operations/getticketingticket.py +0 -0
  609. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/models/operations/getuccontact.py +0 -0
  610. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/models/operations/getunifiedapicall.py +0 -0
  611. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/models/operations/getunifiedconnection.py +0 -0
  612. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/models/operations/getunifiedintegrationauth.py +0 -0
  613. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/models/operations/getunifiedintegrationlogin.py +0 -0
  614. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/models/operations/getunifiedwebhook.py +0 -0
  615. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/models/operations/listaccountingaccounts.py +0 -0
  616. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/models/operations/listaccountingcontacts.py +0 -0
  617. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/models/operations/listaccountingjournals.py +0 -0
  618. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/models/operations/listaccountingorders.py +0 -0
  619. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/models/operations/listaccountingorganizations.py +0 -0
  620. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/models/operations/listaccountingtaxrates.py +0 -0
  621. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/models/operations/listaccountingtransactions.py +0 -0
  622. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/models/operations/listatsactivities.py +0 -0
  623. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/models/operations/listatsapplications.py +0 -0
  624. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/models/operations/listatsapplicationstatuses.py +0 -0
  625. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/models/operations/listatscandidates.py +0 -0
  626. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/models/operations/listatscompanies.py +0 -0
  627. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/models/operations/listatsinterviews.py +0 -0
  628. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/models/operations/listatsjobs.py +0 -0
  629. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/models/operations/listatsscorecards.py +0 -0
  630. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/models/operations/listcommercecollections.py +0 -0
  631. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/models/operations/listcommerceinventories.py +0 -0
  632. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/models/operations/listcommerceitems.py +0 -0
  633. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/models/operations/listcommercelocations.py +0 -0
  634. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/models/operations/listcrmcompanies.py +0 -0
  635. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/models/operations/listcrmcontacts.py +0 -0
  636. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/models/operations/listcrmdeals.py +0 -0
  637. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/models/operations/listcrmevents.py +0 -0
  638. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/models/operations/listcrmleads.py +0 -0
  639. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/models/operations/listcrmpipelines.py +0 -0
  640. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/models/operations/listenrichcompanies.py +0 -0
  641. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/models/operations/listenrichpeople.py +0 -0
  642. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/models/operations/listgenaimodels.py +0 -0
  643. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/models/operations/listhriscompanies.py +0 -0
  644. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/models/operations/listhrisemployees.py +0 -0
  645. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/models/operations/listhrisgroups.py +0 -0
  646. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/models/operations/listhrislocations.py +0 -0
  647. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/models/operations/listhrispayslips.py +0 -0
  648. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/models/operations/listhristimeoffs.py +0 -0
  649. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/models/operations/listkmscomments.py +0 -0
  650. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/models/operations/listkmspages.py +0 -0
  651. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/models/operations/listkmsspaces.py +0 -0
  652. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/models/operations/listlmsclasses.py +0 -0
  653. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/models/operations/listlmscourses.py +0 -0
  654. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/models/operations/listlmsinstructors.py +0 -0
  655. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/models/operations/listlmsstudents.py +0 -0
  656. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/models/operations/listmartechlists.py +0 -0
  657. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/models/operations/listmartechmembers.py +0 -0
  658. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/models/operations/listmessagingchannels.py +0 -0
  659. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/models/operations/listmessagingmessages.py +0 -0
  660. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/models/operations/listmetadatametadatas.py +0 -0
  661. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/models/operations/listpassthroughs.py +0 -0
  662. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/models/operations/listpaymentlinks.py +0 -0
  663. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/models/operations/listpaymentpayments.py +0 -0
  664. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/models/operations/listpaymentpayouts.py +0 -0
  665. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/models/operations/listpaymentrefunds.py +0 -0
  666. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/models/operations/listpaymentsubscriptions.py +0 -0
  667. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/models/operations/listrepobranches.py +0 -0
  668. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/models/operations/listrepocommits.py +0 -0
  669. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/models/operations/listrepoorganizations.py +0 -0
  670. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/models/operations/listrepopullrequests.py +0 -0
  671. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/models/operations/listreporepositories.py +0 -0
  672. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/models/operations/listscimgroups.py +0 -0
  673. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/models/operations/listscimusers.py +0 -0
  674. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/models/operations/liststoragefiles.py +0 -0
  675. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/models/operations/listtaskcomments.py +0 -0
  676. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/models/operations/listtaskprojects.py +0 -0
  677. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/models/operations/listtasktasks.py +0 -0
  678. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/models/operations/listticketingcustomers.py +0 -0
  679. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/models/operations/listticketingnotes.py +0 -0
  680. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/models/operations/listticketingtickets.py +0 -0
  681. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/models/operations/listuccalls.py +0 -0
  682. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/models/operations/listuccontacts.py +0 -0
  683. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/models/operations/listunifiedapicalls.py +0 -0
  684. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/models/operations/listunifiedconnections.py +0 -0
  685. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/models/operations/listunifiedintegrations.py +0 -0
  686. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/models/operations/listunifiedintegrationworkspaces.py +0 -0
  687. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/models/operations/listunifiedissues.py +0 -0
  688. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/models/operations/listunifiedwebhooks.py +0 -0
  689. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/models/operations/patchpassthrough_json.py +0 -0
  690. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/models/operations/patchpassthrough_raw.py +0 -0
  691. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/models/operations/patchunifiedwebhooktrigger.py +0 -0
  692. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/models/operations/removeaccountingaccount.py +0 -0
  693. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/models/operations/removeaccountingcontact.py +0 -0
  694. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/models/operations/removeaccountinginvoice.py +0 -0
  695. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/models/operations/removeaccountingjournal.py +0 -0
  696. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/models/operations/removeaccountingorder.py +0 -0
  697. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/models/operations/removeaccountingtaxrate.py +0 -0
  698. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/models/operations/removeaccountingtransaction.py +0 -0
  699. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/models/operations/removeatsactivity.py +0 -0
  700. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/models/operations/removeatsapplication.py +0 -0
  701. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/models/operations/removeatscandidate.py +0 -0
  702. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/models/operations/removeatsdocument.py +0 -0
  703. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/models/operations/removeatsinterview.py +0 -0
  704. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/models/operations/removeatsjob.py +0 -0
  705. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/models/operations/removeatsscorecard.py +0 -0
  706. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/models/operations/removecommercecollection.py +0 -0
  707. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/models/operations/removecommerceinventory.py +0 -0
  708. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/models/operations/removecommerceitem.py +0 -0
  709. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/models/operations/removecommercelocation.py +0 -0
  710. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/models/operations/removecrmcompany.py +0 -0
  711. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/models/operations/removecrmcontact.py +0 -0
  712. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/models/operations/removecrmdeal.py +0 -0
  713. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/models/operations/removecrmevent.py +0 -0
  714. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/models/operations/removecrmlead.py +0 -0
  715. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/models/operations/removecrmpipeline.py +0 -0
  716. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/models/operations/removehriscompany.py +0 -0
  717. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/models/operations/removehrisemployee.py +0 -0
  718. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/models/operations/removehrisgroup.py +0 -0
  719. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/models/operations/removehrislocation.py +0 -0
  720. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/models/operations/removekmscomment.py +0 -0
  721. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/models/operations/removekmspage.py +0 -0
  722. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/models/operations/removekmsspace.py +0 -0
  723. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/models/operations/removelmsclass.py +0 -0
  724. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/models/operations/removelmscourse.py +0 -0
  725. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/models/operations/removelmsinstructor.py +0 -0
  726. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/models/operations/removelmsstudent.py +0 -0
  727. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/models/operations/removemartechlist.py +0 -0
  728. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/models/operations/removemartechmember.py +0 -0
  729. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/models/operations/removemessagingmessage.py +0 -0
  730. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/models/operations/removemetadatametadata.py +0 -0
  731. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/models/operations/removepassthrough.py +0 -0
  732. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/models/operations/removepaymentlink.py +0 -0
  733. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/models/operations/removepaymentpayment.py +0 -0
  734. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/models/operations/removepaymentsubscription.py +0 -0
  735. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/models/operations/removerepobranch.py +0 -0
  736. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/models/operations/removerepocommit.py +0 -0
  737. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/models/operations/removerepoorganization.py +0 -0
  738. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/models/operations/removerepopullrequest.py +0 -0
  739. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/models/operations/removereporepository.py +0 -0
  740. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/models/operations/removescimgroups.py +0 -0
  741. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/models/operations/removescimusers.py +0 -0
  742. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/models/operations/removestoragefile.py +0 -0
  743. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/models/operations/removetaskcomment.py +0 -0
  744. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/models/operations/removetaskproject.py +0 -0
  745. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/models/operations/removetasktask.py +0 -0
  746. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/models/operations/removeticketingcustomer.py +0 -0
  747. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/models/operations/removeticketingnote.py +0 -0
  748. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/models/operations/removeticketingticket.py +0 -0
  749. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/models/operations/removeuccontact.py +0 -0
  750. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/models/operations/removeunifiedconnection.py +0 -0
  751. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/models/operations/removeunifiedwebhook.py +0 -0
  752. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/models/operations/updatepassthrough_json.py +0 -0
  753. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/models/operations/updatepassthrough_raw.py +0 -0
  754. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/models/operations/updateunifiedwebhooktrigger.py +0 -0
  755. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/models/shared/accountingaccount.py +0 -0
  756. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/models/shared/accountingcontact.py +0 -0
  757. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/models/shared/accountingcontactpaymentmethod.py +0 -0
  758. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/models/shared/accountingemail.py +0 -0
  759. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/models/shared/accountingjournal.py +0 -0
  760. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/models/shared/accountingjournallineitem.py +0 -0
  761. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/models/shared/accountinglineitem.py +0 -0
  762. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/models/shared/accountingorder.py +0 -0
  763. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/models/shared/accountingorganization.py +0 -0
  764. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/models/shared/accountingtaxrate.py +0 -0
  765. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/models/shared/accountingtelephone.py +0 -0
  766. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/models/shared/accountingtransaction.py +0 -0
  767. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/models/shared/accountingtransactioncontact.py +0 -0
  768. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/models/shared/accountingtransactionlineitem.py +0 -0
  769. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/models/shared/apicall.py +0 -0
  770. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/models/shared/atsaddress.py +0 -0
  771. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/models/shared/atsapplication.py +0 -0
  772. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/models/shared/atsapplicationanswer.py +0 -0
  773. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/models/shared/atscandidate.py +0 -0
  774. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/models/shared/atscompany.py +0 -0
  775. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/models/shared/atscompensation.py +0 -0
  776. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/models/shared/atsdocument.py +0 -0
  777. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/models/shared/atsemail.py +0 -0
  778. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/models/shared/atsinterview.py +0 -0
  779. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/models/shared/atsjobposting.py +0 -0
  780. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/models/shared/atsjobquestion.py +0 -0
  781. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/models/shared/atsoffer.py +0 -0
  782. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/models/shared/atsscorecard.py +0 -0
  783. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/models/shared/atsscorecardquestion.py +0 -0
  784. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/models/shared/atsstatus.py +0 -0
  785. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/models/shared/atstelephone.py +0 -0
  786. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/models/shared/commercecollection.py +0 -0
  787. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/models/shared/commerceinventory.py +0 -0
  788. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/models/shared/commerceitem.py +0 -0
  789. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/models/shared/commerceitemmedia.py +0 -0
  790. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/models/shared/commerceitemmetadata.py +0 -0
  791. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/models/shared/commerceitemoption.py +0 -0
  792. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/models/shared/commerceitemprice.py +0 -0
  793. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/models/shared/commerceitemvariant.py +0 -0
  794. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/models/shared/commercelocation.py +0 -0
  795. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/models/shared/connection.py +0 -0
  796. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/models/shared/crmcompany.py +0 -0
  797. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/models/shared/crmcontact.py +0 -0
  798. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/models/shared/crmdeal.py +0 -0
  799. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/models/shared/crmemail.py +0 -0
  800. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/models/shared/crmevent.py +0 -0
  801. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/models/shared/crmeventformfield.py +0 -0
  802. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/models/shared/crmeventformoption.py +0 -0
  803. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/models/shared/crmlead.py +0 -0
  804. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/models/shared/crmpipeline.py +0 -0
  805. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/models/shared/crmstage.py +0 -0
  806. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/models/shared/crmtelephone.py +0 -0
  807. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/models/shared/enrichcompany.py +0 -0
  808. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/models/shared/enrichemail.py +0 -0
  809. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/models/shared/enrichperson.py +0 -0
  810. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/models/shared/enrichpersonworkhistory.py +0 -0
  811. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/models/shared/enrichtelephone.py +0 -0
  812. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/models/shared/genaicontent.py +0 -0
  813. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/models/shared/genaimodel.py +0 -0
  814. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/models/shared/genaiprompt.py +0 -0
  815. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/models/shared/hriscompany.py +0 -0
  816. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/models/shared/hriscompensation.py +0 -0
  817. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/models/shared/hrisemail.py +0 -0
  818. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/models/shared/hrisemployee.py +0 -0
  819. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/models/shared/hrisgroup.py +0 -0
  820. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/models/shared/hrislocation.py +0 -0
  821. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/models/shared/hrispayslip.py +0 -0
  822. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/models/shared/hrispayslipdetail.py +0 -0
  823. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/models/shared/hristelephone.py +0 -0
  824. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/models/shared/hristimeoff.py +0 -0
  825. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/models/shared/integration.py +0 -0
  826. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/models/shared/issue.py +0 -0
  827. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/models/shared/kmscomment.py +0 -0
  828. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/models/shared/kmspage.py +0 -0
  829. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/models/shared/kmspagemetadata.py +0 -0
  830. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/models/shared/kmsspace.py +0 -0
  831. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/models/shared/lmsclass.py +0 -0
  832. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/models/shared/lmscourse.py +0 -0
  833. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/models/shared/lmsemail.py +0 -0
  834. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/models/shared/lmsinstructor.py +0 -0
  835. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/models/shared/lmsmedia.py +0 -0
  836. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/models/shared/lmsstudent.py +0 -0
  837. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/models/shared/lmstelephone.py +0 -0
  838. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/models/shared/marketingemail.py +0 -0
  839. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/models/shared/marketinglist.py +0 -0
  840. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/models/shared/marketingmember.py +0 -0
  841. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/models/shared/messagingattachment.py +0 -0
  842. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/models/shared/messagingchannel.py +0 -0
  843. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/models/shared/messagingmember.py +0 -0
  844. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/models/shared/messagingmessage.py +0 -0
  845. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/models/shared/paymentlineitem.py +0 -0
  846. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/models/shared/paymentlink.py +0 -0
  847. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/models/shared/paymentpayment.py +0 -0
  848. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/models/shared/paymentpayout.py +0 -0
  849. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/models/shared/paymentrefund.py +0 -0
  850. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/models/shared/paymentsubscription.py +0 -0
  851. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/models/shared/property_accountingcontact_billing_address.py +0 -0
  852. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/models/shared/property_accountingcontact_shipping_address.py +0 -0
  853. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/models/shared/property_accountingorder_billing_address.py +0 -0
  854. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/models/shared/property_accountingorder_shipping_address.py +0 -0
  855. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/models/shared/property_accountingorganization_address.py +0 -0
  856. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/models/shared/property_atsactivity_from.py +0 -0
  857. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/models/shared/property_atscandidate_address.py +0 -0
  858. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/models/shared/property_atscompany_address.py +0 -0
  859. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/models/shared/property_atsjobposting_address.py +0 -0
  860. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/models/shared/property_commercelocation_address.py +0 -0
  861. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/models/shared/property_connection_auth.py +0 -0
  862. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/models/shared/property_connection_categories.py +0 -0
  863. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/models/shared/property_connection_permissions.py +0 -0
  864. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/models/shared/property_crmcompany_address.py +0 -0
  865. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/models/shared/property_crmcontact_address.py +0 -0
  866. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/models/shared/property_crmevent_call.py +0 -0
  867. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/models/shared/property_crmevent_email.py +0 -0
  868. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/models/shared/property_crmevent_form.py +0 -0
  869. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/models/shared/property_crmevent_marketing_email.py +0 -0
  870. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/models/shared/property_crmevent_meeting.py +0 -0
  871. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/models/shared/property_crmevent_note.py +0 -0
  872. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/models/shared/property_crmevent_page_view.py +0 -0
  873. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/models/shared/property_crmevent_task.py +0 -0
  874. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/models/shared/property_crmlead_address.py +0 -0
  875. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/models/shared/property_enrichcompany_address.py +0 -0
  876. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/models/shared/property_enrichperson_address.py +0 -0
  877. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/models/shared/property_hriscompany_address.py +0 -0
  878. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/models/shared/property_hrisemployee_address.py +0 -0
  879. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/models/shared/property_hrisemployee_employee_roles.py +0 -0
  880. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/models/shared/property_hrislocation_address.py +0 -0
  881. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/models/shared/property_integration_categories.py +0 -0
  882. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/models/shared/property_integrationsupport_webhook_events.py +0 -0
  883. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/models/shared/property_integrationsupport_webhook_events_created.py +0 -0
  884. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/models/shared/property_integrationsupport_webhook_events_deleted.py +0 -0
  885. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/models/shared/property_integrationsupport_webhook_events_updated.py +0 -0
  886. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/models/shared/property_lmsstudent_address.py +0 -0
  887. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/models/shared/property_messagingmessage_author_member.py +0 -0
  888. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/models/shared/property_scimgroup_meta.py +0 -0
  889. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/models/shared/property_scimgroup_schemas.py +0 -0
  890. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/models/shared/property_scimuser_meta.py +0 -0
  891. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/models/shared/property_scimuser_name.py +0 -0
  892. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/models/shared/property_scimuser_schemas.py +0 -0
  893. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/models/shared/property_scimuser_urn_ietf_params_scim_schemas_extension_enterprise_2_0_user.py +0 -0
  894. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/models/shared/property_scimuser_urn_ietf_params_scim_schemas_extension_enterprise_2_0_user_manager.py +0 -0
  895. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/models/shared/property_scimuser_urn_ietf_params_scim_schemas_extension_lattice_attributes_1_0_user.py +0 -0
  896. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/models/shared/property_scimuser_urn_ietf_params_scim_schemas_extension_peakon_2_0_user.py +0 -0
  897. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/models/shared/property_storagepermission_roles.py +0 -0
  898. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/models/shared/property_uccall_telephone.py +0 -0
  899. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/models/shared/repobranch.py +0 -0
  900. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/models/shared/repocommit.py +0 -0
  901. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/models/shared/repoorganization.py +0 -0
  902. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/models/shared/repopullrequest.py +0 -0
  903. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/models/shared/reporepository.py +0 -0
  904. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/models/shared/scimaddress.py +0 -0
  905. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/models/shared/scimemail.py +0 -0
  906. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/models/shared/scimentitlement.py +0 -0
  907. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/models/shared/scimgroup.py +0 -0
  908. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/models/shared/scimgroupmember.py +0 -0
  909. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/models/shared/scimims.py +0 -0
  910. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/models/shared/scimmanager.py +0 -0
  911. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/models/shared/scimphonenumber.py +0 -0
  912. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/models/shared/scimphoto.py +0 -0
  913. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/models/shared/scimrole.py +0 -0
  914. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/models/shared/scimuser.py +0 -0
  915. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/models/shared/scimusergroups.py +0 -0
  916. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/models/shared/security.py +0 -0
  917. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/models/shared/storagefile.py +0 -0
  918. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/models/shared/storagepermission.py +0 -0
  919. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/models/shared/taskcomment.py +0 -0
  920. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/models/shared/taskproject.py +0 -0
  921. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/models/shared/tasktask.py +0 -0
  922. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/models/shared/ticketingcustomer.py +0 -0
  923. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/models/shared/ticketingemail.py +0 -0
  924. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/models/shared/ticketingnote.py +0 -0
  925. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/models/shared/ticketingtelephone.py +0 -0
  926. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/models/shared/ticketingticket.py +0 -0
  927. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/models/shared/uccall.py +0 -0
  928. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/models/shared/uccontact.py +0 -0
  929. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/models/shared/ucemail.py +0 -0
  930. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/models/shared/uctelephone.py +0 -0
  931. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/passthrough.py +0 -0
  932. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/payout.py +0 -0
  933. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/payslip.py +0 -0
  934. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/person.py +0 -0
  935. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/py.typed +0 -0
  936. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/refund.py +0 -0
  937. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/sdk.py +0 -0
  938. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/sdkconfiguration.py +0 -0
  939. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/timeoff.py +0 -0
  940. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/types/__init__.py +0 -0
  941. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/types/basemodel.py +0 -0
  942. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/utils/__init__.py +0 -0
  943. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/utils/annotations.py +0 -0
  944. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/utils/enums.py +0 -0
  945. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/utils/eventstreaming.py +0 -0
  946. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/utils/forms.py +0 -0
  947. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/utils/headers.py +0 -0
  948. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/utils/logger.py +0 -0
  949. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/utils/metadata.py +0 -0
  950. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/utils/queryparams.py +0 -0
  951. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/utils/requestbodies.py +0 -0
  952. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/utils/retries.py +0 -0
  953. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/utils/security.py +0 -0
  954. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/utils/serializers.py +0 -0
  955. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/utils/url.py +0 -0
  956. {unified_python_sdk-0.32.1 → unified_python_sdk-0.34.1}/src/unified_python_sdk/utils/values.py +0 -0
@@ -0,0 +1,1551 @@
1
+ Metadata-Version: 2.3
2
+ Name: Unified-python-sdk
3
+ Version: 0.34.1
4
+ Summary: Python Client SDK for Unified.to
5
+ Author: Unified API Inc.
6
+ Requires-Python: >=3.9
7
+ Classifier: Programming Language :: Python :: 3
8
+ Classifier: Programming Language :: Python :: 3.9
9
+ Classifier: Programming Language :: Python :: 3.10
10
+ Classifier: Programming Language :: Python :: 3.11
11
+ Classifier: Programming Language :: Python :: 3.12
12
+ Classifier: Programming Language :: Python :: 3.13
13
+ Requires-Dist: eval-type-backport (>=0.2.0,<0.3.0)
14
+ Requires-Dist: httpx (>=0.28.1,<0.29.0)
15
+ Requires-Dist: jsonpath-python (>=1.0.6,<2.0.0)
16
+ Requires-Dist: pydantic (>=2.10.3,<2.11.0)
17
+ Requires-Dist: python-dateutil (>=2.8.2,<3.0.0)
18
+ Requires-Dist: typing-inspect (>=0.9.0,<0.10.0)
19
+ Project-URL: Repository, https://github.com/unified-to/unified-python-sdk.git
20
+ Description-Content-Type: text/markdown
21
+
22
+ <div align="left">
23
+ <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>
24
+ <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>
25
+
26
+ </div>
27
+
28
+ <!-- Start Summary [summary] -->
29
+ ## Summary
30
+
31
+ Unified.to API: One API to Rule Them All
32
+ <!-- End Summary [summary] -->
33
+
34
+ <!-- Start Table of Contents [toc] -->
35
+ ## Table of Contents
36
+ <!-- $toc-max-depth=2 -->
37
+ * [SDK Installation](https://github.com/unified-to/unified-python-sdk/blob/master/#sdk-installation)
38
+ * [IDE Support](https://github.com/unified-to/unified-python-sdk/blob/master/#ide-support)
39
+ * [SDK Example Usage](https://github.com/unified-to/unified-python-sdk/blob/master/#sdk-example-usage)
40
+ * [Available Resources and Operations](https://github.com/unified-to/unified-python-sdk/blob/master/#available-resources-and-operations)
41
+ * [File uploads](https://github.com/unified-to/unified-python-sdk/blob/master/#file-uploads)
42
+ * [Retries](https://github.com/unified-to/unified-python-sdk/blob/master/#retries)
43
+ * [Error Handling](https://github.com/unified-to/unified-python-sdk/blob/master/#error-handling)
44
+ * [Server Selection](https://github.com/unified-to/unified-python-sdk/blob/master/#server-selection)
45
+ * [Custom HTTP Client](https://github.com/unified-to/unified-python-sdk/blob/master/#custom-http-client)
46
+ * [Authentication](https://github.com/unified-to/unified-python-sdk/blob/master/#authentication)
47
+ * [Resource Management](https://github.com/unified-to/unified-python-sdk/blob/master/#resource-management)
48
+ * [Debugging](https://github.com/unified-to/unified-python-sdk/blob/master/#debugging)
49
+
50
+ <!-- End Table of Contents [toc] -->
51
+
52
+ <!-- Start SDK Installation [installation] -->
53
+ ## SDK Installation
54
+
55
+ The SDK can be installed with either *pip* or *poetry* package managers.
56
+
57
+ ### PIP
58
+
59
+ *PIP* is the default package installer for Python, enabling easy installation and management of packages from PyPI via the command line.
60
+
61
+ ```bash
62
+ pip install Unified-python-sdk
63
+ ```
64
+
65
+ ### Poetry
66
+
67
+ *Poetry* is a modern tool that simplifies dependency management and package publishing by using a single `pyproject.toml` file to handle project metadata and dependencies.
68
+
69
+ ```bash
70
+ poetry add Unified-python-sdk
71
+ ```
72
+ <!-- End SDK Installation [installation] -->
73
+
74
+ <!-- Start IDE Support [idesupport] -->
75
+ ## IDE Support
76
+
77
+ ### PyCharm
78
+
79
+ Generally, the SDK will work well with most IDEs out of the box. However, when using PyCharm, you can enjoy much better integration with Pydantic by installing an additional plugin.
80
+
81
+ - [PyCharm Pydantic Plugin](https://docs.pydantic.dev/latest/integrations/pycharm/)
82
+ <!-- End IDE Support [idesupport] -->
83
+
84
+ <!-- Start SDK Example Usage [usage] -->
85
+ ## SDK Example Usage
86
+
87
+ ### Example
88
+
89
+ ```python
90
+ # Synchronous Example
91
+ from unified_python_sdk import UnifiedTo
92
+ from unified_python_sdk.models import shared
93
+
94
+ with UnifiedTo(
95
+ security=shared.Security(
96
+ jwt="<YOUR_API_KEY_HERE>",
97
+ ),
98
+ ) as unified_to:
99
+
100
+ res = unified_to.accounting.create_accounting_account(request={
101
+ "accounting_account": {},
102
+ "connection_id": "<id>",
103
+ })
104
+
105
+ assert res.accounting_account is not None
106
+
107
+ # Handle response
108
+ print(res.accounting_account)
109
+ ```
110
+
111
+ </br>
112
+
113
+ The same SDK client can also be used to make asychronous requests by importing asyncio.
114
+ ```python
115
+ # Asynchronous Example
116
+ import asyncio
117
+ from unified_python_sdk import UnifiedTo
118
+ from unified_python_sdk.models import shared
119
+
120
+ async def main():
121
+ async with UnifiedTo(
122
+ security=shared.Security(
123
+ jwt="<YOUR_API_KEY_HERE>",
124
+ ),
125
+ ) as unified_to:
126
+
127
+ res = await unified_to.accounting.create_accounting_account_async(request={
128
+ "accounting_account": {},
129
+ "connection_id": "<id>",
130
+ })
131
+
132
+ assert res.accounting_account is not None
133
+
134
+ # Handle response
135
+ print(res.accounting_account)
136
+
137
+ asyncio.run(main())
138
+ ```
139
+ <!-- End SDK Example Usage [usage] -->
140
+
141
+ <!-- Start Available Resources and Operations [operations] -->
142
+ ## Available Resources and Operations
143
+
144
+ <details open>
145
+ <summary>Available methods</summary>
146
+
147
+ ### [account](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/account/README.md)
148
+
149
+ * [create_accounting_account](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/account/README.md#create_accounting_account) - Create an account
150
+ * [get_accounting_account](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/account/README.md#get_accounting_account) - Retrieve an account
151
+ * [list_accounting_accounts](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/account/README.md#list_accounting_accounts) - List all accounts
152
+ * [patch_accounting_account](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/account/README.md#patch_accounting_account) - Update an account
153
+ * [remove_accounting_account](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/account/README.md#remove_accounting_account) - Remove an account
154
+ * [update_accounting_account](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/account/README.md#update_accounting_account) - Update an account
155
+
156
+ ### [accounting](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/accounting/README.md)
157
+
158
+ * [create_accounting_account](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/accounting/README.md#create_accounting_account) - Create an account
159
+ * [create_accounting_contact](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/accounting/README.md#create_accounting_contact) - Create a contact
160
+ * [create_accounting_invoice](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/accounting/README.md#create_accounting_invoice) - Create an invoice
161
+ * [create_accounting_journal](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/accounting/README.md#create_accounting_journal) - Create a journal
162
+ * [create_accounting_order](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/accounting/README.md#create_accounting_order) - Create an order
163
+ * [create_accounting_taxrate](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/accounting/README.md#create_accounting_taxrate) - Create a taxrate
164
+ * [create_accounting_transaction](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/accounting/README.md#create_accounting_transaction) - Create a transaction
165
+ * [get_accounting_account](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/accounting/README.md#get_accounting_account) - Retrieve an account
166
+ * [get_accounting_contact](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/accounting/README.md#get_accounting_contact) - Retrieve a contact
167
+ * [get_accounting_invoice](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/accounting/README.md#get_accounting_invoice) - Retrieve an invoice
168
+ * [get_accounting_journal](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/accounting/README.md#get_accounting_journal) - Retrieve a journal
169
+ * [get_accounting_order](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/accounting/README.md#get_accounting_order) - Retrieve an order
170
+ * [get_accounting_organization](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/accounting/README.md#get_accounting_organization) - Retrieve an organization
171
+ * [get_accounting_taxrate](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/accounting/README.md#get_accounting_taxrate) - Retrieve a taxrate
172
+ * [get_accounting_transaction](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/accounting/README.md#get_accounting_transaction) - Retrieve a transaction
173
+ * [list_accounting_accounts](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/accounting/README.md#list_accounting_accounts) - List all accounts
174
+ * [list_accounting_contacts](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/accounting/README.md#list_accounting_contacts) - List all contacts
175
+ * [list_accounting_invoices](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/accounting/README.md#list_accounting_invoices) - List all invoices
176
+ * [list_accounting_journals](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/accounting/README.md#list_accounting_journals) - List all journals
177
+ * [list_accounting_orders](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/accounting/README.md#list_accounting_orders) - List all orders
178
+ * [list_accounting_organizations](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/accounting/README.md#list_accounting_organizations) - List all organizations
179
+ * [list_accounting_taxrates](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/accounting/README.md#list_accounting_taxrates) - List all taxrates
180
+ * [list_accounting_transactions](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/accounting/README.md#list_accounting_transactions) - List all transactions
181
+ * [patch_accounting_account](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/accounting/README.md#patch_accounting_account) - Update an account
182
+ * [patch_accounting_contact](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/accounting/README.md#patch_accounting_contact) - Update a contact
183
+ * [patch_accounting_invoice](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/accounting/README.md#patch_accounting_invoice) - Update an invoice
184
+ * [patch_accounting_journal](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/accounting/README.md#patch_accounting_journal) - Update a journal
185
+ * [patch_accounting_order](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/accounting/README.md#patch_accounting_order) - Update an order
186
+ * [patch_accounting_taxrate](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/accounting/README.md#patch_accounting_taxrate) - Update a taxrate
187
+ * [patch_accounting_transaction](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/accounting/README.md#patch_accounting_transaction) - Update a transaction
188
+ * [remove_accounting_account](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/accounting/README.md#remove_accounting_account) - Remove an account
189
+ * [remove_accounting_contact](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/accounting/README.md#remove_accounting_contact) - Remove a contact
190
+ * [remove_accounting_invoice](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/accounting/README.md#remove_accounting_invoice) - Remove an invoice
191
+ * [remove_accounting_journal](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/accounting/README.md#remove_accounting_journal) - Remove a journal
192
+ * [remove_accounting_order](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/accounting/README.md#remove_accounting_order) - Remove an order
193
+ * [remove_accounting_taxrate](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/accounting/README.md#remove_accounting_taxrate) - Remove a taxrate
194
+ * [remove_accounting_transaction](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/accounting/README.md#remove_accounting_transaction) - Remove a transaction
195
+ * [update_accounting_account](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/accounting/README.md#update_accounting_account) - Update an account
196
+ * [update_accounting_contact](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/accounting/README.md#update_accounting_contact) - Update a contact
197
+ * [update_accounting_invoice](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/accounting/README.md#update_accounting_invoice) - Update an invoice
198
+ * [update_accounting_journal](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/accounting/README.md#update_accounting_journal) - Update a journal
199
+ * [update_accounting_order](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/accounting/README.md#update_accounting_order) - Update an order
200
+ * [update_accounting_taxrate](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/accounting/README.md#update_accounting_taxrate) - Update a taxrate
201
+ * [update_accounting_transaction](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/accounting/README.md#update_accounting_transaction) - Update a transaction
202
+
203
+ ### [activity](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/activity/README.md)
204
+
205
+ * [create_ats_activity](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/activity/README.md#create_ats_activity) - Create an activity
206
+ * [get_ats_activity](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/activity/README.md#get_ats_activity) - Retrieve an activity
207
+ * [list_ats_activities](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/activity/README.md#list_ats_activities) - List all activities
208
+ * [patch_ats_activity](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/activity/README.md#patch_ats_activity) - Update an activity
209
+ * [remove_ats_activity](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/activity/README.md#remove_ats_activity) - Remove an activity
210
+ * [update_ats_activity](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/activity/README.md#update_ats_activity) - Update an activity
211
+
212
+ ### [apicall](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/apicall/README.md)
213
+
214
+ * [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
215
+ * [list_unified_apicalls](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/apicall/README.md#list_unified_apicalls) - Returns API Calls
216
+
217
+ ### [application](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/application/README.md)
218
+
219
+ * [create_ats_application](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/application/README.md#create_ats_application) - Create an application
220
+ * [get_ats_application](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/application/README.md#get_ats_application) - Retrieve an application
221
+ * [list_ats_applications](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/application/README.md#list_ats_applications) - List all applications
222
+ * [patch_ats_application](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/application/README.md#patch_ats_application) - Update an application
223
+ * [remove_ats_application](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/application/README.md#remove_ats_application) - Remove an application
224
+ * [update_ats_application](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/application/README.md#update_ats_application) - Update an application
225
+
226
+ ### [applicationstatus](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/applicationstatus/README.md)
227
+
228
+ * [list_ats_applicationstatuses](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/applicationstatus/README.md#list_ats_applicationstatuses) - List all applicationstatuses
229
+
230
+ ### [ats](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/ats/README.md)
231
+
232
+ * [create_ats_activity](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/ats/README.md#create_ats_activity) - Create an activity
233
+ * [create_ats_application](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/ats/README.md#create_ats_application) - Create an application
234
+ * [create_ats_candidate](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/ats/README.md#create_ats_candidate) - Create a candidate
235
+ * [create_ats_document](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/ats/README.md#create_ats_document) - Create a document
236
+ * [create_ats_interview](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/ats/README.md#create_ats_interview) - Create an interview
237
+ * [create_ats_job](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/ats/README.md#create_ats_job) - Create a job
238
+ * [create_ats_scorecard](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/ats/README.md#create_ats_scorecard) - Create a scorecard
239
+ * [get_ats_activity](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/ats/README.md#get_ats_activity) - Retrieve an activity
240
+ * [get_ats_application](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/ats/README.md#get_ats_application) - Retrieve an application
241
+ * [get_ats_candidate](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/ats/README.md#get_ats_candidate) - Retrieve a candidate
242
+ * [get_ats_company](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/ats/README.md#get_ats_company) - Retrieve a company
243
+ * [get_ats_document](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/ats/README.md#get_ats_document) - Retrieve a document
244
+ * [get_ats_interview](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/ats/README.md#get_ats_interview) - Retrieve an interview
245
+ * [get_ats_job](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/ats/README.md#get_ats_job) - Retrieve a job
246
+ * [get_ats_scorecard](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/ats/README.md#get_ats_scorecard) - Retrieve a scorecard
247
+ * [list_ats_activities](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/ats/README.md#list_ats_activities) - List all activities
248
+ * [list_ats_applications](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/ats/README.md#list_ats_applications) - List all applications
249
+ * [list_ats_applicationstatuses](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/ats/README.md#list_ats_applicationstatuses) - List all applicationstatuses
250
+ * [list_ats_candidates](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/ats/README.md#list_ats_candidates) - List all candidates
251
+ * [list_ats_companies](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/ats/README.md#list_ats_companies) - List all companies
252
+ * [list_ats_documents](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/ats/README.md#list_ats_documents) - List all documents
253
+ * [list_ats_interviews](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/ats/README.md#list_ats_interviews) - List all interviews
254
+ * [list_ats_jobs](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/ats/README.md#list_ats_jobs) - List all jobs
255
+ * [list_ats_scorecards](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/ats/README.md#list_ats_scorecards) - List all scorecards
256
+ * [patch_ats_activity](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/ats/README.md#patch_ats_activity) - Update an activity
257
+ * [patch_ats_application](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/ats/README.md#patch_ats_application) - Update an application
258
+ * [patch_ats_candidate](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/ats/README.md#patch_ats_candidate) - Update a candidate
259
+ * [patch_ats_document](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/ats/README.md#patch_ats_document) - Update a document
260
+ * [patch_ats_interview](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/ats/README.md#patch_ats_interview) - Update an interview
261
+ * [patch_ats_job](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/ats/README.md#patch_ats_job) - Update a job
262
+ * [patch_ats_scorecard](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/ats/README.md#patch_ats_scorecard) - Update a scorecard
263
+ * [remove_ats_activity](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/ats/README.md#remove_ats_activity) - Remove an activity
264
+ * [remove_ats_application](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/ats/README.md#remove_ats_application) - Remove an application
265
+ * [remove_ats_candidate](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/ats/README.md#remove_ats_candidate) - Remove a candidate
266
+ * [remove_ats_document](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/ats/README.md#remove_ats_document) - Remove a document
267
+ * [remove_ats_interview](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/ats/README.md#remove_ats_interview) - Remove an interview
268
+ * [remove_ats_job](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/ats/README.md#remove_ats_job) - Remove a job
269
+ * [remove_ats_scorecard](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/ats/README.md#remove_ats_scorecard) - Remove a scorecard
270
+ * [update_ats_activity](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/ats/README.md#update_ats_activity) - Update an activity
271
+ * [update_ats_application](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/ats/README.md#update_ats_application) - Update an application
272
+ * [update_ats_candidate](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/ats/README.md#update_ats_candidate) - Update a candidate
273
+ * [update_ats_document](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/ats/README.md#update_ats_document) - Update a document
274
+ * [update_ats_interview](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/ats/README.md#update_ats_interview) - Update an interview
275
+ * [update_ats_job](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/ats/README.md#update_ats_job) - Update a job
276
+ * [update_ats_scorecard](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/ats/README.md#update_ats_scorecard) - Update a scorecard
277
+
278
+ ### [auth](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/auth/README.md)
279
+
280
+ * [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
281
+ * [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
282
+
283
+ ### [branch](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/branch/README.md)
284
+
285
+ * [create_repo_branch](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/branch/README.md#create_repo_branch) - Create a branch
286
+ * [get_repo_branch](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/branch/README.md#get_repo_branch) - Retrieve a branch
287
+ * [list_repo_branches](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/branch/README.md#list_repo_branches) - List all branches
288
+ * [patch_repo_branch](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/branch/README.md#patch_repo_branch) - Update a branch
289
+ * [remove_repo_branch](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/branch/README.md#remove_repo_branch) - Remove a branch
290
+ * [update_repo_branch](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/branch/README.md#update_repo_branch) - Update a branch
291
+
292
+ ### [call](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/call/README.md)
293
+
294
+ * [list_uc_calls](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/call/README.md#list_uc_calls) - List all calls
295
+
296
+ ### [candidate](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/candidate/README.md)
297
+
298
+ * [create_ats_candidate](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/candidate/README.md#create_ats_candidate) - Create a candidate
299
+ * [get_ats_candidate](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/candidate/README.md#get_ats_candidate) - Retrieve a candidate
300
+ * [list_ats_candidates](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/candidate/README.md#list_ats_candidates) - List all candidates
301
+ * [patch_ats_candidate](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/candidate/README.md#patch_ats_candidate) - Update a candidate
302
+ * [remove_ats_candidate](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/candidate/README.md#remove_ats_candidate) - Remove a candidate
303
+ * [update_ats_candidate](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/candidate/README.md#update_ats_candidate) - Update a candidate
304
+
305
+ ### [channel](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/channel/README.md)
306
+
307
+ * [get_messaging_channel](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/channel/README.md#get_messaging_channel) - Retrieve a channel
308
+ * [list_messaging_channels](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/channel/README.md#list_messaging_channels) - List all channels
309
+
310
+ ### [class_](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/class/README.md)
311
+
312
+ * [create_lms_class](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/class/README.md#create_lms_class) - Create a class
313
+ * [get_lms_class](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/class/README.md#get_lms_class) - Retrieve a class
314
+ * [list_lms_classes](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/class/README.md#list_lms_classes) - List all classes
315
+ * [patch_lms_class](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/class/README.md#patch_lms_class) - Update a class
316
+ * [remove_lms_class](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/class/README.md#remove_lms_class) - Remove a class
317
+ * [update_lms_class](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/class/README.md#update_lms_class) - Update a class
318
+
319
+ ### [collection](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/collection/README.md)
320
+
321
+ * [create_commerce_collection](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/collection/README.md#create_commerce_collection) - Create a collection
322
+ * [get_commerce_collection](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/collection/README.md#get_commerce_collection) - Retrieve a collection
323
+ * [list_commerce_collections](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/collection/README.md#list_commerce_collections) - List all collections
324
+ * [patch_commerce_collection](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/collection/README.md#patch_commerce_collection) - Update a collection
325
+ * [remove_commerce_collection](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/collection/README.md#remove_commerce_collection) - Remove a collection
326
+ * [update_commerce_collection](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/collection/README.md#update_commerce_collection) - Update a collection
327
+
328
+ ### [comment](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/comment/README.md)
329
+
330
+ * [create_kms_comment](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/comment/README.md#create_kms_comment) - Create a comment
331
+ * [create_task_comment](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/comment/README.md#create_task_comment) - Create a comment
332
+ * [get_kms_comment](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/comment/README.md#get_kms_comment) - Retrieve a comment
333
+ * [get_task_comment](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/comment/README.md#get_task_comment) - Retrieve a comment
334
+ * [list_kms_comments](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/comment/README.md#list_kms_comments) - List all comments
335
+ * [list_task_comments](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/comment/README.md#list_task_comments) - List all comments
336
+ * [patch_kms_comment](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/comment/README.md#patch_kms_comment) - Update a comment
337
+ * [patch_task_comment](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/comment/README.md#patch_task_comment) - Update a comment
338
+ * [remove_kms_comment](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/comment/README.md#remove_kms_comment) - Remove a comment
339
+ * [remove_task_comment](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/comment/README.md#remove_task_comment) - Remove a comment
340
+ * [update_kms_comment](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/comment/README.md#update_kms_comment) - Update a comment
341
+ * [update_task_comment](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/comment/README.md#update_task_comment) - Update a comment
342
+
343
+ ### [commerce](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/commerce/README.md)
344
+
345
+ * [create_commerce_collection](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/commerce/README.md#create_commerce_collection) - Create a collection
346
+ * [create_commerce_inventory](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/commerce/README.md#create_commerce_inventory) - Create an inventory
347
+ * [create_commerce_item](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/commerce/README.md#create_commerce_item) - Create an item
348
+ * [create_commerce_location](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/commerce/README.md#create_commerce_location) - Create a location
349
+ * [get_commerce_collection](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/commerce/README.md#get_commerce_collection) - Retrieve a collection
350
+ * [get_commerce_inventory](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/commerce/README.md#get_commerce_inventory) - Retrieve an inventory
351
+ * [get_commerce_item](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/commerce/README.md#get_commerce_item) - Retrieve an item
352
+ * [get_commerce_location](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/commerce/README.md#get_commerce_location) - Retrieve a location
353
+ * [list_commerce_collections](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/commerce/README.md#list_commerce_collections) - List all collections
354
+ * [list_commerce_inventories](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/commerce/README.md#list_commerce_inventories) - List all inventories
355
+ * [list_commerce_items](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/commerce/README.md#list_commerce_items) - List all items
356
+ * [list_commerce_locations](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/commerce/README.md#list_commerce_locations) - List all locations
357
+ * [patch_commerce_collection](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/commerce/README.md#patch_commerce_collection) - Update a collection
358
+ * [patch_commerce_inventory](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/commerce/README.md#patch_commerce_inventory) - Update an inventory
359
+ * [patch_commerce_item](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/commerce/README.md#patch_commerce_item) - Update an item
360
+ * [patch_commerce_location](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/commerce/README.md#patch_commerce_location) - Update a location
361
+ * [remove_commerce_collection](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/commerce/README.md#remove_commerce_collection) - Remove a collection
362
+ * [remove_commerce_inventory](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/commerce/README.md#remove_commerce_inventory) - Remove an inventory
363
+ * [remove_commerce_item](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/commerce/README.md#remove_commerce_item) - Remove an item
364
+ * [remove_commerce_location](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/commerce/README.md#remove_commerce_location) - Remove a location
365
+ * [update_commerce_collection](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/commerce/README.md#update_commerce_collection) - Update a collection
366
+ * [update_commerce_inventory](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/commerce/README.md#update_commerce_inventory) - Update an inventory
367
+ * [update_commerce_item](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/commerce/README.md#update_commerce_item) - Update an item
368
+ * [update_commerce_location](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/commerce/README.md#update_commerce_location) - Update a location
369
+
370
+ ### [commit](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/commit/README.md)
371
+
372
+ * [create_repo_commit](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/commit/README.md#create_repo_commit) - Create a commit
373
+ * [get_repo_commit](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/commit/README.md#get_repo_commit) - Retrieve a commit
374
+ * [list_repo_commits](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/commit/README.md#list_repo_commits) - List all commits
375
+ * [patch_repo_commit](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/commit/README.md#patch_repo_commit) - Update a commit
376
+ * [remove_repo_commit](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/commit/README.md#remove_repo_commit) - Remove a commit
377
+ * [update_repo_commit](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/commit/README.md#update_repo_commit) - Update a commit
378
+
379
+ ### [company](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/company/README.md)
380
+
381
+ * [create_crm_company](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/company/README.md#create_crm_company) - Create a company
382
+ * [create_hris_company](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/company/README.md#create_hris_company) - Create a company
383
+ * [get_ats_company](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/company/README.md#get_ats_company) - Retrieve a company
384
+ * [get_crm_company](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/company/README.md#get_crm_company) - Retrieve a company
385
+ * [get_hris_company](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/company/README.md#get_hris_company) - Retrieve a company
386
+ * [list_ats_companies](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/company/README.md#list_ats_companies) - List all companies
387
+ * [list_crm_companies](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/company/README.md#list_crm_companies) - List all companies
388
+ * [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
389
+ * [list_hris_companies](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/company/README.md#list_hris_companies) - List all companies
390
+ * [patch_crm_company](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/company/README.md#patch_crm_company) - Update a company
391
+ * [patch_hris_company](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/company/README.md#patch_hris_company) - Update a company
392
+ * [remove_crm_company](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/company/README.md#remove_crm_company) - Remove a company
393
+ * [remove_hris_company](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/company/README.md#remove_hris_company) - Remove a company
394
+ * [update_crm_company](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/company/README.md#update_crm_company) - Update a company
395
+ * [update_hris_company](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/company/README.md#update_hris_company) - Update a company
396
+
397
+ ### [connection](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/connection/README.md)
398
+
399
+ * [create_unified_connection](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/connection/README.md#create_unified_connection) - Create connection
400
+ * [get_unified_connection](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/connection/README.md#get_unified_connection) - Retrieve connection
401
+ * [list_unified_connections](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/connection/README.md#list_unified_connections) - List all connections
402
+ * [patch_unified_connection](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/connection/README.md#patch_unified_connection) - Update connection
403
+ * [remove_unified_connection](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/connection/README.md#remove_unified_connection) - Remove connection
404
+ * [update_unified_connection](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/connection/README.md#update_unified_connection) - Update connection
405
+
406
+ ### [contact](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/contact/README.md)
407
+
408
+ * [create_accounting_contact](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/contact/README.md#create_accounting_contact) - Create a contact
409
+ * [create_crm_contact](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/contact/README.md#create_crm_contact) - Create a contact
410
+ * [create_uc_contact](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/contact/README.md#create_uc_contact) - Create a contact
411
+ * [get_accounting_contact](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/contact/README.md#get_accounting_contact) - Retrieve a contact
412
+ * [get_crm_contact](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/contact/README.md#get_crm_contact) - Retrieve a contact
413
+ * [get_uc_contact](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/contact/README.md#get_uc_contact) - Retrieve a contact
414
+ * [list_accounting_contacts](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/contact/README.md#list_accounting_contacts) - List all contacts
415
+ * [list_crm_contacts](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/contact/README.md#list_crm_contacts) - List all contacts
416
+ * [list_uc_contacts](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/contact/README.md#list_uc_contacts) - List all contacts
417
+ * [patch_accounting_contact](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/contact/README.md#patch_accounting_contact) - Update a contact
418
+ * [patch_crm_contact](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/contact/README.md#patch_crm_contact) - Update a contact
419
+ * [patch_uc_contact](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/contact/README.md#patch_uc_contact) - Update a contact
420
+ * [remove_accounting_contact](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/contact/README.md#remove_accounting_contact) - Remove a contact
421
+ * [remove_crm_contact](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/contact/README.md#remove_crm_contact) - Remove a contact
422
+ * [remove_uc_contact](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/contact/README.md#remove_uc_contact) - Remove a contact
423
+ * [update_accounting_contact](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/contact/README.md#update_accounting_contact) - Update a contact
424
+ * [update_crm_contact](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/contact/README.md#update_crm_contact) - Update a contact
425
+ * [update_uc_contact](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/contact/README.md#update_uc_contact) - Update a contact
426
+
427
+ ### [course](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/course/README.md)
428
+
429
+ * [create_lms_course](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/course/README.md#create_lms_course) - Create a course
430
+ * [get_lms_course](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/course/README.md#get_lms_course) - Retrieve a course
431
+ * [list_lms_courses](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/course/README.md#list_lms_courses) - List all courses
432
+ * [patch_lms_course](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/course/README.md#patch_lms_course) - Update a course
433
+ * [remove_lms_course](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/course/README.md#remove_lms_course) - Remove a course
434
+ * [update_lms_course](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/course/README.md#update_lms_course) - Update a course
435
+
436
+ ### [crm](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/crm/README.md)
437
+
438
+ * [create_crm_company](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/crm/README.md#create_crm_company) - Create a company
439
+ * [create_crm_contact](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/crm/README.md#create_crm_contact) - Create a contact
440
+ * [create_crm_deal](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/crm/README.md#create_crm_deal) - Create a deal
441
+ * [create_crm_event](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/crm/README.md#create_crm_event) - Create an event
442
+ * [create_crm_lead](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/crm/README.md#create_crm_lead) - Create a lead
443
+ * [create_crm_pipeline](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/crm/README.md#create_crm_pipeline) - Create a pipeline
444
+ * [get_crm_company](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/crm/README.md#get_crm_company) - Retrieve a company
445
+ * [get_crm_contact](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/crm/README.md#get_crm_contact) - Retrieve a contact
446
+ * [get_crm_deal](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/crm/README.md#get_crm_deal) - Retrieve a deal
447
+ * [get_crm_event](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/crm/README.md#get_crm_event) - Retrieve an event
448
+ * [get_crm_lead](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/crm/README.md#get_crm_lead) - Retrieve a lead
449
+ * [get_crm_pipeline](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/crm/README.md#get_crm_pipeline) - Retrieve a pipeline
450
+ * [list_crm_companies](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/crm/README.md#list_crm_companies) - List all companies
451
+ * [list_crm_contacts](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/crm/README.md#list_crm_contacts) - List all contacts
452
+ * [list_crm_deals](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/crm/README.md#list_crm_deals) - List all deals
453
+ * [list_crm_events](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/crm/README.md#list_crm_events) - List all events
454
+ * [list_crm_leads](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/crm/README.md#list_crm_leads) - List all leads
455
+ * [list_crm_pipelines](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/crm/README.md#list_crm_pipelines) - List all pipelines
456
+ * [patch_crm_company](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/crm/README.md#patch_crm_company) - Update a company
457
+ * [patch_crm_contact](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/crm/README.md#patch_crm_contact) - Update a contact
458
+ * [patch_crm_deal](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/crm/README.md#patch_crm_deal) - Update a deal
459
+ * [patch_crm_event](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/crm/README.md#patch_crm_event) - Update an event
460
+ * [patch_crm_lead](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/crm/README.md#patch_crm_lead) - Update a lead
461
+ * [patch_crm_pipeline](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/crm/README.md#patch_crm_pipeline) - Update a pipeline
462
+ * [remove_crm_company](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/crm/README.md#remove_crm_company) - Remove a company
463
+ * [remove_crm_contact](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/crm/README.md#remove_crm_contact) - Remove a contact
464
+ * [remove_crm_deal](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/crm/README.md#remove_crm_deal) - Remove a deal
465
+ * [remove_crm_event](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/crm/README.md#remove_crm_event) - Remove an event
466
+ * [remove_crm_lead](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/crm/README.md#remove_crm_lead) - Remove a lead
467
+ * [remove_crm_pipeline](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/crm/README.md#remove_crm_pipeline) - Remove a pipeline
468
+ * [update_crm_company](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/crm/README.md#update_crm_company) - Update a company
469
+ * [update_crm_contact](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/crm/README.md#update_crm_contact) - Update a contact
470
+ * [update_crm_deal](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/crm/README.md#update_crm_deal) - Update a deal
471
+ * [update_crm_event](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/crm/README.md#update_crm_event) - Update an event
472
+ * [update_crm_lead](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/crm/README.md#update_crm_lead) - Update a lead
473
+ * [update_crm_pipeline](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/crm/README.md#update_crm_pipeline) - Update a pipeline
474
+
475
+ ### [customer](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/customer/README.md)
476
+
477
+ * [create_ticketing_customer](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/customer/README.md#create_ticketing_customer) - Create a customer
478
+ * [get_ticketing_customer](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/customer/README.md#get_ticketing_customer) - Retrieve a customer
479
+ * [list_ticketing_customers](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/customer/README.md#list_ticketing_customers) - List all customers
480
+ * [patch_ticketing_customer](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/customer/README.md#patch_ticketing_customer) - Update a customer
481
+ * [remove_ticketing_customer](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/customer/README.md#remove_ticketing_customer) - Remove a customer
482
+ * [update_ticketing_customer](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/customer/README.md#update_ticketing_customer) - Update a customer
483
+
484
+ ### [deal](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/deal/README.md)
485
+
486
+ * [create_crm_deal](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/deal/README.md#create_crm_deal) - Create a deal
487
+ * [get_crm_deal](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/deal/README.md#get_crm_deal) - Retrieve a deal
488
+ * [list_crm_deals](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/deal/README.md#list_crm_deals) - List all deals
489
+ * [patch_crm_deal](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/deal/README.md#patch_crm_deal) - Update a deal
490
+ * [remove_crm_deal](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/deal/README.md#remove_crm_deal) - Remove a deal
491
+ * [update_crm_deal](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/deal/README.md#update_crm_deal) - Update a deal
492
+
493
+ ### [document](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/document/README.md)
494
+
495
+ * [create_ats_document](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/document/README.md#create_ats_document) - Create a document
496
+ * [get_ats_document](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/document/README.md#get_ats_document) - Retrieve a document
497
+ * [list_ats_documents](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/document/README.md#list_ats_documents) - List all documents
498
+ * [patch_ats_document](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/document/README.md#patch_ats_document) - Update a document
499
+ * [remove_ats_document](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/document/README.md#remove_ats_document) - Remove a document
500
+ * [update_ats_document](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/document/README.md#update_ats_document) - Update a document
501
+
502
+ ### [employee](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/employee/README.md)
503
+
504
+ * [create_hris_employee](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/employee/README.md#create_hris_employee) - Create an employee
505
+ * [get_hris_employee](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/employee/README.md#get_hris_employee) - Retrieve an employee
506
+ * [list_hris_employees](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/employee/README.md#list_hris_employees) - List all employees
507
+ * [patch_hris_employee](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/employee/README.md#patch_hris_employee) - Update an employee
508
+ * [remove_hris_employee](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/employee/README.md#remove_hris_employee) - Remove an employee
509
+ * [update_hris_employee](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/employee/README.md#update_hris_employee) - Update an employee
510
+
511
+ ### [enrich](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/enrich/README.md)
512
+
513
+ * [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
514
+ * [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
515
+
516
+ ### [event](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/event/README.md)
517
+
518
+ * [create_crm_event](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/event/README.md#create_crm_event) - Create an event
519
+ * [get_crm_event](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/event/README.md#get_crm_event) - Retrieve an event
520
+ * [list_crm_events](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/event/README.md#list_crm_events) - List all events
521
+ * [patch_crm_event](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/event/README.md#patch_crm_event) - Update an event
522
+ * [remove_crm_event](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/event/README.md#remove_crm_event) - Remove an event
523
+ * [update_crm_event](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/event/README.md#update_crm_event) - Update an event
524
+
525
+ ### [file](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/file/README.md)
526
+
527
+ * [create_storage_file](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/file/README.md#create_storage_file) - Create a file
528
+ * [get_storage_file](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/file/README.md#get_storage_file) - Retrieve a file
529
+ * [list_storage_files](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/file/README.md#list_storage_files) - List all files
530
+ * [patch_storage_file](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/file/README.md#patch_storage_file) - Update a file
531
+ * [remove_storage_file](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/file/README.md#remove_storage_file) - Remove a file
532
+ * [update_storage_file](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/file/README.md#update_storage_file) - Update a file
533
+
534
+ ### [genai](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/genai/README.md)
535
+
536
+ * [create_genai_prompt](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/genai/README.md#create_genai_prompt) - Create a prompt
537
+ * [list_genai_models](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/genai/README.md#list_genai_models) - List all models
538
+
539
+ ### [group](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/group/README.md)
540
+
541
+ * [create_hris_group](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/group/README.md#create_hris_group) - Create a group
542
+ * [create_scim_groups](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/group/README.md#create_scim_groups) - Create group
543
+ * [get_hris_group](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/group/README.md#get_hris_group) - Retrieve a group
544
+ * [get_scim_groups](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/group/README.md#get_scim_groups) - Get group
545
+ * [list_hris_groups](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/group/README.md#list_hris_groups) - List all groups
546
+ * [list_scim_groups](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/group/README.md#list_scim_groups) - List groups
547
+ * [patch_hris_group](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/group/README.md#patch_hris_group) - Update a group
548
+ * [patch_scim_groups](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/group/README.md#patch_scim_groups) - Update group
549
+ * [remove_hris_group](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/group/README.md#remove_hris_group) - Remove a group
550
+ * [remove_scim_groups](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/group/README.md#remove_scim_groups) - Delete group
551
+ * [update_hris_group](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/group/README.md#update_hris_group) - Update a group
552
+ * [update_scim_groups](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/group/README.md#update_scim_groups) - Update group
553
+
554
+ ### [hris](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/hris/README.md)
555
+
556
+ * [create_hris_company](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/hris/README.md#create_hris_company) - Create a company
557
+ * [create_hris_employee](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/hris/README.md#create_hris_employee) - Create an employee
558
+ * [create_hris_group](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/hris/README.md#create_hris_group) - Create a group
559
+ * [create_hris_location](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/hris/README.md#create_hris_location) - Create a location
560
+ * [get_hris_company](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/hris/README.md#get_hris_company) - Retrieve a company
561
+ * [get_hris_employee](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/hris/README.md#get_hris_employee) - Retrieve an employee
562
+ * [get_hris_group](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/hris/README.md#get_hris_group) - Retrieve a group
563
+ * [get_hris_location](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/hris/README.md#get_hris_location) - Retrieve a location
564
+ * [get_hris_payslip](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/hris/README.md#get_hris_payslip) - Retrieve a payslip
565
+ * [get_hris_timeoff](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/hris/README.md#get_hris_timeoff) - Retrieve a timeoff
566
+ * [list_hris_companies](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/hris/README.md#list_hris_companies) - List all companies
567
+ * [list_hris_employees](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/hris/README.md#list_hris_employees) - List all employees
568
+ * [list_hris_groups](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/hris/README.md#list_hris_groups) - List all groups
569
+ * [list_hris_locations](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/hris/README.md#list_hris_locations) - List all locations
570
+ * [list_hris_payslips](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/hris/README.md#list_hris_payslips) - List all payslips
571
+ * [list_hris_timeoffs](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/hris/README.md#list_hris_timeoffs) - List all timeoffs
572
+ * [patch_hris_company](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/hris/README.md#patch_hris_company) - Update a company
573
+ * [patch_hris_employee](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/hris/README.md#patch_hris_employee) - Update an employee
574
+ * [patch_hris_group](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/hris/README.md#patch_hris_group) - Update a group
575
+ * [patch_hris_location](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/hris/README.md#patch_hris_location) - Update a location
576
+ * [remove_hris_company](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/hris/README.md#remove_hris_company) - Remove a company
577
+ * [remove_hris_employee](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/hris/README.md#remove_hris_employee) - Remove an employee
578
+ * [remove_hris_group](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/hris/README.md#remove_hris_group) - Remove a group
579
+ * [remove_hris_location](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/hris/README.md#remove_hris_location) - Remove a location
580
+ * [update_hris_company](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/hris/README.md#update_hris_company) - Update a company
581
+ * [update_hris_employee](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/hris/README.md#update_hris_employee) - Update an employee
582
+ * [update_hris_group](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/hris/README.md#update_hris_group) - Update a group
583
+ * [update_hris_location](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/hris/README.md#update_hris_location) - Update a location
584
+
585
+ ### [instructor](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/instructor/README.md)
586
+
587
+ * [create_lms_instructor](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/instructor/README.md#create_lms_instructor) - Create an instructor
588
+ * [get_lms_instructor](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/instructor/README.md#get_lms_instructor) - Retrieve an instructor
589
+ * [list_lms_instructors](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/instructor/README.md#list_lms_instructors) - List all instructors
590
+ * [patch_lms_instructor](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/instructor/README.md#patch_lms_instructor) - Update an instructor
591
+ * [remove_lms_instructor](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/instructor/README.md#remove_lms_instructor) - Remove an instructor
592
+ * [update_lms_instructor](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/instructor/README.md#update_lms_instructor) - Update an instructor
593
+
594
+ ### [integration](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/integration/README.md)
595
+
596
+ * [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
597
+ * [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
598
+ * [list_unified_integrations](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/integration/README.md#list_unified_integrations) - Returns all integrations
599
+
600
+ ### [interview](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/interview/README.md)
601
+
602
+ * [create_ats_interview](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/interview/README.md#create_ats_interview) - Create an interview
603
+ * [get_ats_interview](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/interview/README.md#get_ats_interview) - Retrieve an interview
604
+ * [list_ats_interviews](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/interview/README.md#list_ats_interviews) - List all interviews
605
+ * [patch_ats_interview](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/interview/README.md#patch_ats_interview) - Update an interview
606
+ * [remove_ats_interview](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/interview/README.md#remove_ats_interview) - Remove an interview
607
+ * [update_ats_interview](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/interview/README.md#update_ats_interview) - Update an interview
608
+
609
+ ### [inventory](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/inventory/README.md)
610
+
611
+ * [create_commerce_inventory](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/inventory/README.md#create_commerce_inventory) - Create an inventory
612
+ * [get_commerce_inventory](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/inventory/README.md#get_commerce_inventory) - Retrieve an inventory
613
+ * [list_commerce_inventories](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/inventory/README.md#list_commerce_inventories) - List all inventories
614
+ * [patch_commerce_inventory](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/inventory/README.md#patch_commerce_inventory) - Update an inventory
615
+ * [remove_commerce_inventory](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/inventory/README.md#remove_commerce_inventory) - Remove an inventory
616
+ * [update_commerce_inventory](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/inventory/README.md#update_commerce_inventory) - Update an inventory
617
+
618
+ ### [invoice](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/invoice/README.md)
619
+
620
+ * [create_accounting_invoice](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/invoice/README.md#create_accounting_invoice) - Create an invoice
621
+ * [get_accounting_invoice](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/invoice/README.md#get_accounting_invoice) - Retrieve an invoice
622
+ * [list_accounting_invoices](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/invoice/README.md#list_accounting_invoices) - List all invoices
623
+ * [patch_accounting_invoice](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/invoice/README.md#patch_accounting_invoice) - Update an invoice
624
+ * [remove_accounting_invoice](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/invoice/README.md#remove_accounting_invoice) - Remove an invoice
625
+ * [update_accounting_invoice](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/invoice/README.md#update_accounting_invoice) - Update an invoice
626
+
627
+ ### [issue](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/issue/README.md)
628
+
629
+ * [list_unified_issues](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/issue/README.md#list_unified_issues) - List support issues
630
+
631
+ ### [item](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/item/README.md)
632
+
633
+ * [create_commerce_item](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/item/README.md#create_commerce_item) - Create an item
634
+ * [get_commerce_item](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/item/README.md#get_commerce_item) - Retrieve an item
635
+ * [list_commerce_items](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/item/README.md#list_commerce_items) - List all items
636
+ * [patch_commerce_item](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/item/README.md#patch_commerce_item) - Update an item
637
+ * [remove_commerce_item](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/item/README.md#remove_commerce_item) - Remove an item
638
+ * [update_commerce_item](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/item/README.md#update_commerce_item) - Update an item
639
+
640
+ ### [job](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/job/README.md)
641
+
642
+ * [create_ats_job](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/job/README.md#create_ats_job) - Create a job
643
+ * [get_ats_job](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/job/README.md#get_ats_job) - Retrieve a job
644
+ * [list_ats_jobs](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/job/README.md#list_ats_jobs) - List all jobs
645
+ * [patch_ats_job](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/job/README.md#patch_ats_job) - Update a job
646
+ * [remove_ats_job](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/job/README.md#remove_ats_job) - Remove a job
647
+ * [update_ats_job](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/job/README.md#update_ats_job) - Update a job
648
+
649
+ ### [journal](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/journal/README.md)
650
+
651
+ * [create_accounting_journal](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/journal/README.md#create_accounting_journal) - Create a journal
652
+ * [get_accounting_journal](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/journal/README.md#get_accounting_journal) - Retrieve a journal
653
+ * [list_accounting_journals](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/journal/README.md#list_accounting_journals) - List all journals
654
+ * [patch_accounting_journal](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/journal/README.md#patch_accounting_journal) - Update a journal
655
+ * [remove_accounting_journal](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/journal/README.md#remove_accounting_journal) - Remove a journal
656
+ * [update_accounting_journal](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/journal/README.md#update_accounting_journal) - Update a journal
657
+
658
+ ### [kms](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/kms/README.md)
659
+
660
+ * [create_kms_comment](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/kms/README.md#create_kms_comment) - Create a comment
661
+ * [create_kms_page](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/kms/README.md#create_kms_page) - Create a page
662
+ * [create_kms_space](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/kms/README.md#create_kms_space) - Create a space
663
+ * [get_kms_comment](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/kms/README.md#get_kms_comment) - Retrieve a comment
664
+ * [get_kms_page](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/kms/README.md#get_kms_page) - Retrieve a page
665
+ * [get_kms_space](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/kms/README.md#get_kms_space) - Retrieve a space
666
+ * [list_kms_comments](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/kms/README.md#list_kms_comments) - List all comments
667
+ * [list_kms_pages](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/kms/README.md#list_kms_pages) - List all pages
668
+ * [list_kms_spaces](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/kms/README.md#list_kms_spaces) - List all spaces
669
+ * [patch_kms_comment](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/kms/README.md#patch_kms_comment) - Update a comment
670
+ * [patch_kms_page](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/kms/README.md#patch_kms_page) - Update a page
671
+ * [patch_kms_space](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/kms/README.md#patch_kms_space) - Update a space
672
+ * [remove_kms_comment](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/kms/README.md#remove_kms_comment) - Remove a comment
673
+ * [remove_kms_page](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/kms/README.md#remove_kms_page) - Remove a page
674
+ * [remove_kms_space](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/kms/README.md#remove_kms_space) - Remove a space
675
+ * [update_kms_comment](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/kms/README.md#update_kms_comment) - Update a comment
676
+ * [update_kms_page](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/kms/README.md#update_kms_page) - Update a page
677
+ * [update_kms_space](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/kms/README.md#update_kms_space) - Update a space
678
+
679
+ ### [lead](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/lead/README.md)
680
+
681
+ * [create_crm_lead](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/lead/README.md#create_crm_lead) - Create a lead
682
+ * [get_crm_lead](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/lead/README.md#get_crm_lead) - Retrieve a lead
683
+ * [list_crm_leads](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/lead/README.md#list_crm_leads) - List all leads
684
+ * [patch_crm_lead](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/lead/README.md#patch_crm_lead) - Update a lead
685
+ * [remove_crm_lead](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/lead/README.md#remove_crm_lead) - Remove a lead
686
+ * [update_crm_lead](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/lead/README.md#update_crm_lead) - Update a lead
687
+
688
+ ### [link](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/link/README.md)
689
+
690
+ * [create_payment_link](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/link/README.md#create_payment_link) - Create a link
691
+ * [get_payment_link](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/link/README.md#get_payment_link) - Retrieve a link
692
+ * [list_payment_links](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/link/README.md#list_payment_links) - List all links
693
+ * [patch_payment_link](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/link/README.md#patch_payment_link) - Update a link
694
+ * [remove_payment_link](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/link/README.md#remove_payment_link) - Remove a link
695
+ * [update_payment_link](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/link/README.md#update_payment_link) - Update a link
696
+
697
+ ### [list](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/list/README.md)
698
+
699
+ * [create_martech_list](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/list/README.md#create_martech_list) - Create a list
700
+ * [get_martech_list](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/list/README.md#get_martech_list) - Retrieve a list
701
+ * [list_martech_lists](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/list/README.md#list_martech_lists) - List all lists
702
+ * [patch_martech_list](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/list/README.md#patch_martech_list) - Update a list
703
+ * [remove_martech_list](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/list/README.md#remove_martech_list) - Remove a list
704
+ * [update_martech_list](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/list/README.md#update_martech_list) - Update a list
705
+
706
+ ### [lms](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/lms/README.md)
707
+
708
+ * [create_lms_class](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/lms/README.md#create_lms_class) - Create a class
709
+ * [create_lms_course](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/lms/README.md#create_lms_course) - Create a course
710
+ * [create_lms_instructor](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/lms/README.md#create_lms_instructor) - Create an instructor
711
+ * [create_lms_student](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/lms/README.md#create_lms_student) - Create a student
712
+ * [get_lms_class](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/lms/README.md#get_lms_class) - Retrieve a class
713
+ * [get_lms_course](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/lms/README.md#get_lms_course) - Retrieve a course
714
+ * [get_lms_instructor](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/lms/README.md#get_lms_instructor) - Retrieve an instructor
715
+ * [get_lms_student](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/lms/README.md#get_lms_student) - Retrieve a student
716
+ * [list_lms_classes](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/lms/README.md#list_lms_classes) - List all classes
717
+ * [list_lms_courses](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/lms/README.md#list_lms_courses) - List all courses
718
+ * [list_lms_instructors](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/lms/README.md#list_lms_instructors) - List all instructors
719
+ * [list_lms_students](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/lms/README.md#list_lms_students) - List all students
720
+ * [patch_lms_class](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/lms/README.md#patch_lms_class) - Update a class
721
+ * [patch_lms_course](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/lms/README.md#patch_lms_course) - Update a course
722
+ * [patch_lms_instructor](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/lms/README.md#patch_lms_instructor) - Update an instructor
723
+ * [patch_lms_student](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/lms/README.md#patch_lms_student) - Update a student
724
+ * [remove_lms_class](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/lms/README.md#remove_lms_class) - Remove a class
725
+ * [remove_lms_course](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/lms/README.md#remove_lms_course) - Remove a course
726
+ * [remove_lms_instructor](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/lms/README.md#remove_lms_instructor) - Remove an instructor
727
+ * [remove_lms_student](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/lms/README.md#remove_lms_student) - Remove a student
728
+ * [update_lms_class](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/lms/README.md#update_lms_class) - Update a class
729
+ * [update_lms_course](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/lms/README.md#update_lms_course) - Update a course
730
+ * [update_lms_instructor](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/lms/README.md#update_lms_instructor) - Update an instructor
731
+ * [update_lms_student](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/lms/README.md#update_lms_student) - Update a student
732
+
733
+ ### [location](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/location/README.md)
734
+
735
+ * [create_commerce_location](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/location/README.md#create_commerce_location) - Create a location
736
+ * [create_hris_location](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/location/README.md#create_hris_location) - Create a location
737
+ * [get_commerce_location](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/location/README.md#get_commerce_location) - Retrieve a location
738
+ * [get_hris_location](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/location/README.md#get_hris_location) - Retrieve a location
739
+ * [list_commerce_locations](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/location/README.md#list_commerce_locations) - List all locations
740
+ * [list_hris_locations](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/location/README.md#list_hris_locations) - List all locations
741
+ * [patch_commerce_location](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/location/README.md#patch_commerce_location) - Update a location
742
+ * [patch_hris_location](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/location/README.md#patch_hris_location) - Update a location
743
+ * [remove_commerce_location](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/location/README.md#remove_commerce_location) - Remove a location
744
+ * [remove_hris_location](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/location/README.md#remove_hris_location) - Remove a location
745
+ * [update_commerce_location](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/location/README.md#update_commerce_location) - Update a location
746
+ * [update_hris_location](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/location/README.md#update_hris_location) - Update a location
747
+
748
+ ### [login](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/login/README.md)
749
+
750
+ * [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
751
+
752
+ ### [martech](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/martech/README.md)
753
+
754
+ * [create_martech_list](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/martech/README.md#create_martech_list) - Create a list
755
+ * [create_martech_member](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/martech/README.md#create_martech_member) - Create a member
756
+ * [get_martech_list](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/martech/README.md#get_martech_list) - Retrieve a list
757
+ * [get_martech_member](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/martech/README.md#get_martech_member) - Retrieve a member
758
+ * [list_martech_lists](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/martech/README.md#list_martech_lists) - List all lists
759
+ * [list_martech_members](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/martech/README.md#list_martech_members) - List all members
760
+ * [patch_martech_list](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/martech/README.md#patch_martech_list) - Update a list
761
+ * [patch_martech_member](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/martech/README.md#patch_martech_member) - Update a member
762
+ * [remove_martech_list](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/martech/README.md#remove_martech_list) - Remove a list
763
+ * [remove_martech_member](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/martech/README.md#remove_martech_member) - Remove a member
764
+ * [update_martech_list](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/martech/README.md#update_martech_list) - Update a list
765
+ * [update_martech_member](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/martech/README.md#update_martech_member) - Update a member
766
+
767
+ ### [member](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/member/README.md)
768
+
769
+ * [create_martech_member](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/member/README.md#create_martech_member) - Create a member
770
+ * [get_martech_member](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/member/README.md#get_martech_member) - Retrieve a member
771
+ * [list_martech_members](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/member/README.md#list_martech_members) - List all members
772
+ * [patch_martech_member](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/member/README.md#patch_martech_member) - Update a member
773
+ * [remove_martech_member](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/member/README.md#remove_martech_member) - Remove a member
774
+ * [update_martech_member](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/member/README.md#update_martech_member) - Update a member
775
+
776
+ ### [message](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/message/README.md)
777
+
778
+ * [create_messaging_message](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/message/README.md#create_messaging_message) - Create a message
779
+ * [get_messaging_message](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/message/README.md#get_messaging_message) - Retrieve a message
780
+ * [list_messaging_messages](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/message/README.md#list_messaging_messages) - List all messages
781
+ * [patch_messaging_message](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/message/README.md#patch_messaging_message) - Update a message
782
+ * [remove_messaging_message](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/message/README.md#remove_messaging_message) - Remove a message
783
+ * [update_messaging_message](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/message/README.md#update_messaging_message) - Update a message
784
+
785
+ ### [messaging](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/messaging/README.md)
786
+
787
+ * [create_messaging_message](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/messaging/README.md#create_messaging_message) - Create a message
788
+ * [get_messaging_channel](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/messaging/README.md#get_messaging_channel) - Retrieve a channel
789
+ * [get_messaging_message](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/messaging/README.md#get_messaging_message) - Retrieve a message
790
+ * [list_messaging_channels](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/messaging/README.md#list_messaging_channels) - List all channels
791
+ * [list_messaging_messages](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/messaging/README.md#list_messaging_messages) - List all messages
792
+ * [patch_messaging_message](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/messaging/README.md#patch_messaging_message) - Update a message
793
+ * [remove_messaging_message](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/messaging/README.md#remove_messaging_message) - Remove a message
794
+ * [update_messaging_message](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/messaging/README.md#update_messaging_message) - Update a message
795
+
796
+ ### [metadata](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/metadata/README.md)
797
+
798
+ * [create_metadata_metadata](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/metadata/README.md#create_metadata_metadata) - Create a metadata
799
+ * [get_metadata_metadata](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/metadata/README.md#get_metadata_metadata) - Retrieve a metadata
800
+ * [list_metadata_metadatas](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/metadata/README.md#list_metadata_metadatas) - List all metadatas
801
+ * [patch_metadata_metadata](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/metadata/README.md#patch_metadata_metadata) - Update a metadata
802
+ * [remove_metadata_metadata](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/metadata/README.md#remove_metadata_metadata) - Remove a metadata
803
+ * [update_metadata_metadata](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/metadata/README.md#update_metadata_metadata) - Update a metadata
804
+
805
+ ### [model](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/model/README.md)
806
+
807
+ * [list_genai_models](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/model/README.md#list_genai_models) - List all models
808
+
809
+ ### [note](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/note/README.md)
810
+
811
+ * [create_ticketing_note](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/note/README.md#create_ticketing_note) - Create a note
812
+ * [get_ticketing_note](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/note/README.md#get_ticketing_note) - Retrieve a note
813
+ * [list_ticketing_notes](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/note/README.md#list_ticketing_notes) - List all notes
814
+ * [patch_ticketing_note](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/note/README.md#patch_ticketing_note) - Update a note
815
+ * [remove_ticketing_note](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/note/README.md#remove_ticketing_note) - Remove a note
816
+ * [update_ticketing_note](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/note/README.md#update_ticketing_note) - Update a note
817
+
818
+ ### [order](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/order/README.md)
819
+
820
+ * [create_accounting_order](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/order/README.md#create_accounting_order) - Create an order
821
+ * [get_accounting_order](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/order/README.md#get_accounting_order) - Retrieve an order
822
+ * [list_accounting_orders](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/order/README.md#list_accounting_orders) - List all orders
823
+ * [patch_accounting_order](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/order/README.md#patch_accounting_order) - Update an order
824
+ * [remove_accounting_order](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/order/README.md#remove_accounting_order) - Remove an order
825
+ * [update_accounting_order](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/order/README.md#update_accounting_order) - Update an order
826
+
827
+ ### [organization](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/organization/README.md)
828
+
829
+ * [create_repo_organization](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/organization/README.md#create_repo_organization) - Create an organization
830
+ * [get_accounting_organization](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/organization/README.md#get_accounting_organization) - Retrieve an organization
831
+ * [get_repo_organization](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/organization/README.md#get_repo_organization) - Retrieve an organization
832
+ * [list_accounting_organizations](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/organization/README.md#list_accounting_organizations) - List all organizations
833
+ * [list_repo_organizations](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/organization/README.md#list_repo_organizations) - List all organizations
834
+ * [patch_repo_organization](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/organization/README.md#patch_repo_organization) - Update an organization
835
+ * [remove_repo_organization](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/organization/README.md#remove_repo_organization) - Remove an organization
836
+ * [update_repo_organization](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/organization/README.md#update_repo_organization) - Update an organization
837
+
838
+ ### [page](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/page/README.md)
839
+
840
+ * [create_kms_page](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/page/README.md#create_kms_page) - Create a page
841
+ * [get_kms_page](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/page/README.md#get_kms_page) - Retrieve a page
842
+ * [list_kms_pages](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/page/README.md#list_kms_pages) - List all pages
843
+ * [patch_kms_page](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/page/README.md#patch_kms_page) - Update a page
844
+ * [remove_kms_page](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/page/README.md#remove_kms_page) - Remove a page
845
+ * [update_kms_page](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/page/README.md#update_kms_page) - Update a page
846
+
847
+ ### [passthrough](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/passthrough/README.md)
848
+
849
+ * [create_passthrough_json](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/passthrough/README.md#create_passthrough_json) - Passthrough POST
850
+ * [create_passthrough_raw](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/passthrough/README.md#create_passthrough_raw) - Passthrough POST
851
+ * [list_passthroughs](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/passthrough/README.md#list_passthroughs) - Passthrough GET
852
+ * [patch_passthrough_json](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/passthrough/README.md#patch_passthrough_json) - Passthrough PUT
853
+ * [patch_passthrough_raw](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/passthrough/README.md#patch_passthrough_raw) - Passthrough PUT
854
+ * [remove_passthrough](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/passthrough/README.md#remove_passthrough) - Passthrough DELETE
855
+ * [update_passthrough_json](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/passthrough/README.md#update_passthrough_json) - Passthrough PUT
856
+ * [update_passthrough_raw](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/passthrough/README.md#update_passthrough_raw) - Passthrough PUT
857
+
858
+ ### [payment](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/payment/README.md)
859
+
860
+ * [create_payment_link](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/payment/README.md#create_payment_link) - Create a link
861
+ * [create_payment_payment](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/payment/README.md#create_payment_payment) - Create a payment
862
+ * [create_payment_subscription](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/payment/README.md#create_payment_subscription) - Create a subscription
863
+ * [get_payment_link](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/payment/README.md#get_payment_link) - Retrieve a link
864
+ * [get_payment_payment](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/payment/README.md#get_payment_payment) - Retrieve a payment
865
+ * [get_payment_payout](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/payment/README.md#get_payment_payout) - Retrieve a payout
866
+ * [get_payment_refund](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/payment/README.md#get_payment_refund) - Retrieve a refund
867
+ * [get_payment_subscription](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/payment/README.md#get_payment_subscription) - Retrieve a subscription
868
+ * [list_payment_links](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/payment/README.md#list_payment_links) - List all links
869
+ * [list_payment_payments](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/payment/README.md#list_payment_payments) - List all payments
870
+ * [list_payment_payouts](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/payment/README.md#list_payment_payouts) - List all payouts
871
+ * [list_payment_refunds](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/payment/README.md#list_payment_refunds) - List all refunds
872
+ * [list_payment_subscriptions](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/payment/README.md#list_payment_subscriptions) - List all subscriptions
873
+ * [patch_payment_link](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/payment/README.md#patch_payment_link) - Update a link
874
+ * [patch_payment_payment](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/payment/README.md#patch_payment_payment) - Update a payment
875
+ * [patch_payment_subscription](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/payment/README.md#patch_payment_subscription) - Update a subscription
876
+ * [remove_payment_link](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/payment/README.md#remove_payment_link) - Remove a link
877
+ * [remove_payment_payment](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/payment/README.md#remove_payment_payment) - Remove a payment
878
+ * [remove_payment_subscription](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/payment/README.md#remove_payment_subscription) - Remove a subscription
879
+ * [update_payment_link](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/payment/README.md#update_payment_link) - Update a link
880
+ * [update_payment_payment](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/payment/README.md#update_payment_payment) - Update a payment
881
+ * [update_payment_subscription](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/payment/README.md#update_payment_subscription) - Update a subscription
882
+
883
+ ### [payout](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/payout/README.md)
884
+
885
+ * [get_payment_payout](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/payout/README.md#get_payment_payout) - Retrieve a payout
886
+ * [list_payment_payouts](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/payout/README.md#list_payment_payouts) - List all payouts
887
+
888
+ ### [payslip](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/payslip/README.md)
889
+
890
+ * [get_hris_payslip](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/payslip/README.md#get_hris_payslip) - Retrieve a payslip
891
+ * [list_hris_payslips](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/payslip/README.md#list_hris_payslips) - List all payslips
892
+
893
+ ### [person](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/person/README.md)
894
+
895
+ * [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
896
+
897
+ ### [pipeline](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/pipeline/README.md)
898
+
899
+ * [create_crm_pipeline](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/pipeline/README.md#create_crm_pipeline) - Create a pipeline
900
+ * [get_crm_pipeline](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/pipeline/README.md#get_crm_pipeline) - Retrieve a pipeline
901
+ * [list_crm_pipelines](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/pipeline/README.md#list_crm_pipelines) - List all pipelines
902
+ * [patch_crm_pipeline](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/pipeline/README.md#patch_crm_pipeline) - Update a pipeline
903
+ * [remove_crm_pipeline](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/pipeline/README.md#remove_crm_pipeline) - Remove a pipeline
904
+ * [update_crm_pipeline](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/pipeline/README.md#update_crm_pipeline) - Update a pipeline
905
+
906
+ ### [project](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/project/README.md)
907
+
908
+ * [create_task_project](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/project/README.md#create_task_project) - Create a project
909
+ * [get_task_project](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/project/README.md#get_task_project) - Retrieve a project
910
+ * [list_task_projects](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/project/README.md#list_task_projects) - List all projects
911
+ * [patch_task_project](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/project/README.md#patch_task_project) - Update a project
912
+ * [remove_task_project](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/project/README.md#remove_task_project) - Remove a project
913
+ * [update_task_project](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/project/README.md#update_task_project) - Update a project
914
+
915
+ ### [prompt](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/prompt/README.md)
916
+
917
+ * [create_genai_prompt](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/prompt/README.md#create_genai_prompt) - Create a prompt
918
+
919
+ ### [pullrequest](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/pullrequest/README.md)
920
+
921
+ * [create_repo_pullrequest](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/pullrequest/README.md#create_repo_pullrequest) - Create a pullrequest
922
+ * [get_repo_pullrequest](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/pullrequest/README.md#get_repo_pullrequest) - Retrieve a pullrequest
923
+ * [list_repo_pullrequests](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/pullrequest/README.md#list_repo_pullrequests) - List all pullrequests
924
+ * [patch_repo_pullrequest](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/pullrequest/README.md#patch_repo_pullrequest) - Update a pullrequest
925
+ * [remove_repo_pullrequest](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/pullrequest/README.md#remove_repo_pullrequest) - Remove a pullrequest
926
+ * [update_repo_pullrequest](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/pullrequest/README.md#update_repo_pullrequest) - Update a pullrequest
927
+
928
+ ### [refund](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/refund/README.md)
929
+
930
+ * [get_payment_refund](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/refund/README.md#get_payment_refund) - Retrieve a refund
931
+ * [list_payment_refunds](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/refund/README.md#list_payment_refunds) - List all refunds
932
+
933
+ ### [repo](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/repo/README.md)
934
+
935
+ * [create_repo_branch](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/repo/README.md#create_repo_branch) - Create a branch
936
+ * [create_repo_commit](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/repo/README.md#create_repo_commit) - Create a commit
937
+ * [create_repo_organization](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/repo/README.md#create_repo_organization) - Create an organization
938
+ * [create_repo_pullrequest](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/repo/README.md#create_repo_pullrequest) - Create a pullrequest
939
+ * [create_repo_repository](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/repo/README.md#create_repo_repository) - Create a repository
940
+ * [get_repo_branch](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/repo/README.md#get_repo_branch) - Retrieve a branch
941
+ * [get_repo_commit](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/repo/README.md#get_repo_commit) - Retrieve a commit
942
+ * [get_repo_organization](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/repo/README.md#get_repo_organization) - Retrieve an organization
943
+ * [get_repo_pullrequest](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/repo/README.md#get_repo_pullrequest) - Retrieve a pullrequest
944
+ * [get_repo_repository](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/repo/README.md#get_repo_repository) - Retrieve a repository
945
+ * [list_repo_branches](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/repo/README.md#list_repo_branches) - List all branches
946
+ * [list_repo_commits](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/repo/README.md#list_repo_commits) - List all commits
947
+ * [list_repo_organizations](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/repo/README.md#list_repo_organizations) - List all organizations
948
+ * [list_repo_pullrequests](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/repo/README.md#list_repo_pullrequests) - List all pullrequests
949
+ * [list_repo_repositories](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/repo/README.md#list_repo_repositories) - List all repositories
950
+ * [patch_repo_branch](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/repo/README.md#patch_repo_branch) - Update a branch
951
+ * [patch_repo_commit](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/repo/README.md#patch_repo_commit) - Update a commit
952
+ * [patch_repo_organization](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/repo/README.md#patch_repo_organization) - Update an organization
953
+ * [patch_repo_pullrequest](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/repo/README.md#patch_repo_pullrequest) - Update a pullrequest
954
+ * [patch_repo_repository](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/repo/README.md#patch_repo_repository) - Update a repository
955
+ * [remove_repo_branch](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/repo/README.md#remove_repo_branch) - Remove a branch
956
+ * [remove_repo_commit](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/repo/README.md#remove_repo_commit) - Remove a commit
957
+ * [remove_repo_organization](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/repo/README.md#remove_repo_organization) - Remove an organization
958
+ * [remove_repo_pullrequest](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/repo/README.md#remove_repo_pullrequest) - Remove a pullrequest
959
+ * [remove_repo_repository](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/repo/README.md#remove_repo_repository) - Remove a repository
960
+ * [update_repo_branch](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/repo/README.md#update_repo_branch) - Update a branch
961
+ * [update_repo_commit](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/repo/README.md#update_repo_commit) - Update a commit
962
+ * [update_repo_organization](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/repo/README.md#update_repo_organization) - Update an organization
963
+ * [update_repo_pullrequest](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/repo/README.md#update_repo_pullrequest) - Update a pullrequest
964
+ * [update_repo_repository](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/repo/README.md#update_repo_repository) - Update a repository
965
+
966
+ ### [repository](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/repository/README.md)
967
+
968
+ * [create_repo_repository](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/repository/README.md#create_repo_repository) - Create a repository
969
+ * [get_repo_repository](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/repository/README.md#get_repo_repository) - Retrieve a repository
970
+ * [list_repo_repositories](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/repository/README.md#list_repo_repositories) - List all repositories
971
+ * [patch_repo_repository](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/repository/README.md#patch_repo_repository) - Update a repository
972
+ * [remove_repo_repository](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/repository/README.md#remove_repo_repository) - Remove a repository
973
+ * [update_repo_repository](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/repository/README.md#update_repo_repository) - Update a repository
974
+
975
+ ### [scim](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/scim/README.md)
976
+
977
+ * [create_scim_groups](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/scim/README.md#create_scim_groups) - Create group
978
+ * [create_scim_users](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/scim/README.md#create_scim_users) - Create user
979
+ * [get_scim_groups](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/scim/README.md#get_scim_groups) - Get group
980
+ * [get_scim_users](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/scim/README.md#get_scim_users) - Get user
981
+ * [list_scim_groups](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/scim/README.md#list_scim_groups) - List groups
982
+ * [list_scim_users](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/scim/README.md#list_scim_users) - List users
983
+ * [patch_scim_groups](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/scim/README.md#patch_scim_groups) - Update group
984
+ * [patch_scim_users](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/scim/README.md#patch_scim_users) - Update user
985
+ * [remove_scim_groups](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/scim/README.md#remove_scim_groups) - Delete group
986
+ * [remove_scim_users](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/scim/README.md#remove_scim_users) - Delete user
987
+ * [update_scim_groups](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/scim/README.md#update_scim_groups) - Update group
988
+ * [update_scim_users](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/scim/README.md#update_scim_users) - Update user
989
+
990
+ ### [scorecard](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/scorecard/README.md)
991
+
992
+ * [create_ats_scorecard](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/scorecard/README.md#create_ats_scorecard) - Create a scorecard
993
+ * [get_ats_scorecard](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/scorecard/README.md#get_ats_scorecard) - Retrieve a scorecard
994
+ * [list_ats_scorecards](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/scorecard/README.md#list_ats_scorecards) - List all scorecards
995
+ * [patch_ats_scorecard](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/scorecard/README.md#patch_ats_scorecard) - Update a scorecard
996
+ * [remove_ats_scorecard](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/scorecard/README.md#remove_ats_scorecard) - Remove a scorecard
997
+ * [update_ats_scorecard](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/scorecard/README.md#update_ats_scorecard) - Update a scorecard
998
+
999
+ ### [space](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/space/README.md)
1000
+
1001
+ * [create_kms_space](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/space/README.md#create_kms_space) - Create a space
1002
+ * [get_kms_space](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/space/README.md#get_kms_space) - Retrieve a space
1003
+ * [list_kms_spaces](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/space/README.md#list_kms_spaces) - List all spaces
1004
+ * [patch_kms_space](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/space/README.md#patch_kms_space) - Update a space
1005
+ * [remove_kms_space](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/space/README.md#remove_kms_space) - Remove a space
1006
+ * [update_kms_space](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/space/README.md#update_kms_space) - Update a space
1007
+
1008
+ ### [storage](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/storage/README.md)
1009
+
1010
+ * [create_storage_file](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/storage/README.md#create_storage_file) - Create a file
1011
+ * [get_storage_file](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/storage/README.md#get_storage_file) - Retrieve a file
1012
+ * [list_storage_files](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/storage/README.md#list_storage_files) - List all files
1013
+ * [patch_storage_file](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/storage/README.md#patch_storage_file) - Update a file
1014
+ * [remove_storage_file](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/storage/README.md#remove_storage_file) - Remove a file
1015
+ * [update_storage_file](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/storage/README.md#update_storage_file) - Update a file
1016
+
1017
+ ### [student](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/student/README.md)
1018
+
1019
+ * [create_lms_student](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/student/README.md#create_lms_student) - Create a student
1020
+ * [get_lms_student](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/student/README.md#get_lms_student) - Retrieve a student
1021
+ * [list_lms_students](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/student/README.md#list_lms_students) - List all students
1022
+ * [patch_lms_student](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/student/README.md#patch_lms_student) - Update a student
1023
+ * [remove_lms_student](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/student/README.md#remove_lms_student) - Remove a student
1024
+ * [update_lms_student](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/student/README.md#update_lms_student) - Update a student
1025
+
1026
+ ### [subscription](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/subscription/README.md)
1027
+
1028
+ * [create_payment_subscription](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/subscription/README.md#create_payment_subscription) - Create a subscription
1029
+ * [get_payment_subscription](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/subscription/README.md#get_payment_subscription) - Retrieve a subscription
1030
+ * [list_payment_subscriptions](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/subscription/README.md#list_payment_subscriptions) - List all subscriptions
1031
+ * [patch_payment_subscription](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/subscription/README.md#patch_payment_subscription) - Update a subscription
1032
+ * [remove_payment_subscription](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/subscription/README.md#remove_payment_subscription) - Remove a subscription
1033
+ * [update_payment_subscription](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/subscription/README.md#update_payment_subscription) - Update a subscription
1034
+
1035
+ ### [task](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/task/README.md)
1036
+
1037
+ * [create_task_comment](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/task/README.md#create_task_comment) - Create a comment
1038
+ * [create_task_project](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/task/README.md#create_task_project) - Create a project
1039
+ * [create_task_task](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/task/README.md#create_task_task) - Create a task
1040
+ * [get_task_comment](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/task/README.md#get_task_comment) - Retrieve a comment
1041
+ * [get_task_project](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/task/README.md#get_task_project) - Retrieve a project
1042
+ * [get_task_task](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/task/README.md#get_task_task) - Retrieve a task
1043
+ * [list_task_comments](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/task/README.md#list_task_comments) - List all comments
1044
+ * [list_task_projects](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/task/README.md#list_task_projects) - List all projects
1045
+ * [list_task_tasks](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/task/README.md#list_task_tasks) - List all tasks
1046
+ * [patch_task_comment](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/task/README.md#patch_task_comment) - Update a comment
1047
+ * [patch_task_project](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/task/README.md#patch_task_project) - Update a project
1048
+ * [patch_task_task](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/task/README.md#patch_task_task) - Update a task
1049
+ * [remove_task_comment](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/task/README.md#remove_task_comment) - Remove a comment
1050
+ * [remove_task_project](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/task/README.md#remove_task_project) - Remove a project
1051
+ * [remove_task_task](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/task/README.md#remove_task_task) - Remove a task
1052
+ * [update_task_comment](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/task/README.md#update_task_comment) - Update a comment
1053
+ * [update_task_project](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/task/README.md#update_task_project) - Update a project
1054
+ * [update_task_task](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/task/README.md#update_task_task) - Update a task
1055
+
1056
+ ### [taxrate](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/taxrate/README.md)
1057
+
1058
+ * [create_accounting_taxrate](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/taxrate/README.md#create_accounting_taxrate) - Create a taxrate
1059
+ * [get_accounting_taxrate](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/taxrate/README.md#get_accounting_taxrate) - Retrieve a taxrate
1060
+ * [list_accounting_taxrates](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/taxrate/README.md#list_accounting_taxrates) - List all taxrates
1061
+ * [patch_accounting_taxrate](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/taxrate/README.md#patch_accounting_taxrate) - Update a taxrate
1062
+ * [remove_accounting_taxrate](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/taxrate/README.md#remove_accounting_taxrate) - Remove a taxrate
1063
+ * [update_accounting_taxrate](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/taxrate/README.md#update_accounting_taxrate) - Update a taxrate
1064
+
1065
+ ### [ticket](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/ticket/README.md)
1066
+
1067
+ * [create_ticketing_ticket](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/ticket/README.md#create_ticketing_ticket) - Create a ticket
1068
+ * [get_ticketing_ticket](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/ticket/README.md#get_ticketing_ticket) - Retrieve a ticket
1069
+ * [list_ticketing_tickets](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/ticket/README.md#list_ticketing_tickets) - List all tickets
1070
+ * [patch_ticketing_ticket](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/ticket/README.md#patch_ticketing_ticket) - Update a ticket
1071
+ * [remove_ticketing_ticket](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/ticket/README.md#remove_ticketing_ticket) - Remove a ticket
1072
+ * [update_ticketing_ticket](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/ticket/README.md#update_ticketing_ticket) - Update a ticket
1073
+
1074
+ ### [ticketing](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/ticketing/README.md)
1075
+
1076
+ * [create_ticketing_customer](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/ticketing/README.md#create_ticketing_customer) - Create a customer
1077
+ * [create_ticketing_note](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/ticketing/README.md#create_ticketing_note) - Create a note
1078
+ * [create_ticketing_ticket](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/ticketing/README.md#create_ticketing_ticket) - Create a ticket
1079
+ * [get_ticketing_customer](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/ticketing/README.md#get_ticketing_customer) - Retrieve a customer
1080
+ * [get_ticketing_note](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/ticketing/README.md#get_ticketing_note) - Retrieve a note
1081
+ * [get_ticketing_ticket](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/ticketing/README.md#get_ticketing_ticket) - Retrieve a ticket
1082
+ * [list_ticketing_customers](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/ticketing/README.md#list_ticketing_customers) - List all customers
1083
+ * [list_ticketing_notes](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/ticketing/README.md#list_ticketing_notes) - List all notes
1084
+ * [list_ticketing_tickets](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/ticketing/README.md#list_ticketing_tickets) - List all tickets
1085
+ * [patch_ticketing_customer](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/ticketing/README.md#patch_ticketing_customer) - Update a customer
1086
+ * [patch_ticketing_note](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/ticketing/README.md#patch_ticketing_note) - Update a note
1087
+ * [patch_ticketing_ticket](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/ticketing/README.md#patch_ticketing_ticket) - Update a ticket
1088
+ * [remove_ticketing_customer](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/ticketing/README.md#remove_ticketing_customer) - Remove a customer
1089
+ * [remove_ticketing_note](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/ticketing/README.md#remove_ticketing_note) - Remove a note
1090
+ * [remove_ticketing_ticket](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/ticketing/README.md#remove_ticketing_ticket) - Remove a ticket
1091
+ * [update_ticketing_customer](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/ticketing/README.md#update_ticketing_customer) - Update a customer
1092
+ * [update_ticketing_note](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/ticketing/README.md#update_ticketing_note) - Update a note
1093
+ * [update_ticketing_ticket](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/ticketing/README.md#update_ticketing_ticket) - Update a ticket
1094
+
1095
+ ### [timeoff](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/timeoff/README.md)
1096
+
1097
+ * [get_hris_timeoff](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/timeoff/README.md#get_hris_timeoff) - Retrieve a timeoff
1098
+ * [list_hris_timeoffs](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/timeoff/README.md#list_hris_timeoffs) - List all timeoffs
1099
+
1100
+ ### [transaction](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/transaction/README.md)
1101
+
1102
+ * [create_accounting_transaction](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/transaction/README.md#create_accounting_transaction) - Create a transaction
1103
+ * [get_accounting_transaction](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/transaction/README.md#get_accounting_transaction) - Retrieve a transaction
1104
+ * [list_accounting_transactions](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/transaction/README.md#list_accounting_transactions) - List all transactions
1105
+ * [patch_accounting_transaction](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/transaction/README.md#patch_accounting_transaction) - Update a transaction
1106
+ * [remove_accounting_transaction](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/transaction/README.md#remove_accounting_transaction) - Remove a transaction
1107
+ * [update_accounting_transaction](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/transaction/README.md#update_accounting_transaction) - Update a transaction
1108
+
1109
+ ### [uc](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/uc/README.md)
1110
+
1111
+ * [create_uc_contact](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/uc/README.md#create_uc_contact) - Create a contact
1112
+ * [get_uc_contact](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/uc/README.md#get_uc_contact) - Retrieve a contact
1113
+ * [list_uc_calls](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/uc/README.md#list_uc_calls) - List all calls
1114
+ * [list_uc_contacts](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/uc/README.md#list_uc_contacts) - List all contacts
1115
+ * [patch_uc_contact](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/uc/README.md#patch_uc_contact) - Update a contact
1116
+ * [remove_uc_contact](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/uc/README.md#remove_uc_contact) - Remove a contact
1117
+ * [update_uc_contact](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/uc/README.md#update_uc_contact) - Update a contact
1118
+
1119
+ ### [unified](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/unified/README.md)
1120
+
1121
+ * [create_unified_connection](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/unified/README.md#create_unified_connection) - Create connection
1122
+ * [create_unified_webhook](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/unified/README.md#create_unified_webhook) - Create webhook subscription
1123
+ * [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
1124
+ * [get_unified_connection](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/unified/README.md#get_unified_connection) - Retrieve connection
1125
+ * [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
1126
+ * [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
1127
+ * [list_unified_apicalls](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/unified/README.md#list_unified_apicalls) - Returns API Calls
1128
+ * [list_unified_connections](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/unified/README.md#list_unified_connections) - List all connections
1129
+ * [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
1130
+ * [list_unified_integrations](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/unified/README.md#list_unified_integrations) - Returns all integrations
1131
+ * [list_unified_issues](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/unified/README.md#list_unified_issues) - List support issues
1132
+ * [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
1133
+ * [patch_unified_connection](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/unified/README.md#patch_unified_connection) - Update connection
1134
+ * [patch_unified_webhook](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/unified/README.md#patch_unified_webhook) - Update webhook subscription
1135
+ * [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
1136
+ * [remove_unified_connection](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/unified/README.md#remove_unified_connection) - Remove connection
1137
+ * [remove_unified_webhook](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/unified/README.md#remove_unified_webhook) - Remove webhook subscription
1138
+ * [update_unified_connection](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/unified/README.md#update_unified_connection) - Update connection
1139
+ * [update_unified_webhook](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/unified/README.md#update_unified_webhook) - Update webhook subscription
1140
+ * [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
1141
+
1142
+
1143
+ ### [user](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/user/README.md)
1144
+
1145
+ * [create_scim_users](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/user/README.md#create_scim_users) - Create user
1146
+ * [get_scim_users](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/user/README.md#get_scim_users) - Get user
1147
+ * [list_scim_users](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/user/README.md#list_scim_users) - List users
1148
+ * [patch_scim_users](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/user/README.md#patch_scim_users) - Update user
1149
+ * [remove_scim_users](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/user/README.md#remove_scim_users) - Delete user
1150
+ * [update_scim_users](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/user/README.md#update_scim_users) - Update user
1151
+
1152
+ ### [webhook](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/webhook/README.md)
1153
+
1154
+ * [create_unified_webhook](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/webhook/README.md#create_unified_webhook) - Create webhook subscription
1155
+ * [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
1156
+ * [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
1157
+ * [patch_unified_webhook](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/webhook/README.md#patch_unified_webhook) - Update webhook subscription
1158
+ * [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
1159
+ * [remove_unified_webhook](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/webhook/README.md#remove_unified_webhook) - Remove webhook subscription
1160
+ * [update_unified_webhook](https://github.com/unified-to/unified-python-sdk/blob/master/docs/sdks/webhook/README.md#update_unified_webhook) - Update webhook subscription
1161
+ * [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
1162
+
1163
+ </details>
1164
+ <!-- End Available Resources and Operations [operations] -->
1165
+
1166
+
1167
+
1168
+
1169
+
1170
+
1171
+
1172
+ <!-- Start File uploads [file-upload] -->
1173
+ ## File uploads
1174
+
1175
+ Certain SDK methods accept file objects as part of a request body or multi-part request. It is possible and typically recommended to upload files as a stream rather than reading the entire contents into memory. This avoids excessive memory consumption and potentially crashing with out-of-memory errors when working with very large files. The following example demonstrates how to attach a file stream to a request.
1176
+
1177
+ > [!TIP]
1178
+ >
1179
+ > For endpoints that handle file uploads bytes arrays can also be used. However, using streams is recommended for large files.
1180
+ >
1181
+
1182
+ ```python
1183
+ from unified_python_sdk import UnifiedTo
1184
+ from unified_python_sdk.models import shared
1185
+
1186
+ with UnifiedTo(
1187
+ security=shared.Security(
1188
+ jwt="<YOUR_API_KEY_HERE>",
1189
+ ),
1190
+ ) as unified_to:
1191
+
1192
+ res = unified_to.passthrough.create_passthrough_raw(request={
1193
+ "connection_id": "<id>",
1194
+ "path": "/opt/lib",
1195
+ })
1196
+
1197
+ assert res is not None
1198
+
1199
+ # Handle response
1200
+ print(res)
1201
+
1202
+ ```
1203
+ <!-- End File uploads [file-upload] -->
1204
+
1205
+ <!-- Start Retries [retries] -->
1206
+ ## Retries
1207
+
1208
+ Some of the endpoints in this SDK support retries. If you use the SDK without any configuration, it will fall back to the default retry strategy provided by the API. However, the default retry strategy can be overridden on a per-operation basis, or across the entire SDK.
1209
+
1210
+ To change the default retry strategy for a single API call, simply provide a `RetryConfig` object to the call:
1211
+ ```python
1212
+ from unified_python_sdk import UnifiedTo
1213
+ from unified_python_sdk.models import shared
1214
+ from unified_python_sdk.utils import BackoffStrategy, RetryConfig
1215
+
1216
+ with UnifiedTo(
1217
+ security=shared.Security(
1218
+ jwt="<YOUR_API_KEY_HERE>",
1219
+ ),
1220
+ ) as unified_to:
1221
+
1222
+ res = unified_to.accounting.create_accounting_account(request={
1223
+ "accounting_account": {},
1224
+ "connection_id": "<id>",
1225
+ },
1226
+ RetryConfig("backoff", BackoffStrategy(1, 50, 1.1, 100), False))
1227
+
1228
+ assert res.accounting_account is not None
1229
+
1230
+ # Handle response
1231
+ print(res.accounting_account)
1232
+
1233
+ ```
1234
+
1235
+ If you'd like to override the default retry strategy for all operations that support retries, you can use the `retry_config` optional parameter when initializing the SDK:
1236
+ ```python
1237
+ from unified_python_sdk import UnifiedTo
1238
+ from unified_python_sdk.models import shared
1239
+ from unified_python_sdk.utils import BackoffStrategy, RetryConfig
1240
+
1241
+ with UnifiedTo(
1242
+ retry_config=RetryConfig("backoff", BackoffStrategy(1, 50, 1.1, 100), False),
1243
+ security=shared.Security(
1244
+ jwt="<YOUR_API_KEY_HERE>",
1245
+ ),
1246
+ ) as unified_to:
1247
+
1248
+ res = unified_to.accounting.create_accounting_account(request={
1249
+ "accounting_account": {},
1250
+ "connection_id": "<id>",
1251
+ })
1252
+
1253
+ assert res.accounting_account is not None
1254
+
1255
+ # Handle response
1256
+ print(res.accounting_account)
1257
+
1258
+ ```
1259
+ <!-- End Retries [retries] -->
1260
+
1261
+ <!-- Start Error Handling [errors] -->
1262
+ ## Error Handling
1263
+
1264
+ Handling errors in this SDK should largely match your expectations. All operations return a response object or raise an exception.
1265
+
1266
+ By default, an API error will raise a errors.SDKError exception, which has the following properties:
1267
+
1268
+ | Property | Type | Description |
1269
+ |-----------------|------------------|-----------------------|
1270
+ | `.status_code` | *int* | The HTTP status code |
1271
+ | `.message` | *str* | The error message |
1272
+ | `.raw_response` | *httpx.Response* | The raw HTTP response |
1273
+ | `.body` | *str* | The response content |
1274
+
1275
+ When custom error responses are specified for an operation, the SDK may also raise their associated exceptions. You can refer to respective *Errors* tables in SDK docs for more details on possible exception types for each operation. For example, the `create_accounting_account_async` method may raise the following exceptions:
1276
+
1277
+ | Error Type | Status Code | Content Type |
1278
+ | --------------- | ----------- | ------------ |
1279
+ | errors.SDKError | 4XX, 5XX | \*/\* |
1280
+
1281
+ ### Example
1282
+
1283
+ ```python
1284
+ from unified_python_sdk import UnifiedTo
1285
+ from unified_python_sdk.models import errors, shared
1286
+
1287
+ with UnifiedTo(
1288
+ security=shared.Security(
1289
+ jwt="<YOUR_API_KEY_HERE>",
1290
+ ),
1291
+ ) as unified_to:
1292
+ res = None
1293
+ try:
1294
+
1295
+ res = unified_to.accounting.create_accounting_account(request={
1296
+ "accounting_account": {},
1297
+ "connection_id": "<id>",
1298
+ })
1299
+
1300
+ assert res.accounting_account is not None
1301
+
1302
+ # Handle response
1303
+ print(res.accounting_account)
1304
+
1305
+ except errors.SDKError as e:
1306
+ # handle exception
1307
+ raise(e)
1308
+ ```
1309
+ <!-- End Error Handling [errors] -->
1310
+
1311
+
1312
+
1313
+ <!-- Start Server Selection [server] -->
1314
+ ## Server Selection
1315
+
1316
+ ### Select Server by Index
1317
+
1318
+ 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:
1319
+
1320
+ | # | Server |
1321
+ | --- | --------------------------- |
1322
+ | 0 | `https://api.unified.to` |
1323
+ | 1 | `https://api-eu.unified.to` |
1324
+
1325
+ #### Example
1326
+
1327
+ ```python
1328
+ from unified_python_sdk import UnifiedTo
1329
+ from unified_python_sdk.models import shared
1330
+
1331
+ with UnifiedTo(
1332
+ server_idx=1,
1333
+ security=shared.Security(
1334
+ jwt="<YOUR_API_KEY_HERE>",
1335
+ ),
1336
+ ) as unified_to:
1337
+
1338
+ res = unified_to.accounting.create_accounting_account(request={
1339
+ "accounting_account": {},
1340
+ "connection_id": "<id>",
1341
+ })
1342
+
1343
+ assert res.accounting_account is not None
1344
+
1345
+ # Handle response
1346
+ print(res.accounting_account)
1347
+
1348
+ ```
1349
+
1350
+ ### Override Server URL Per-Client
1351
+
1352
+ 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:
1353
+ ```python
1354
+ from unified_python_sdk import UnifiedTo
1355
+ from unified_python_sdk.models import shared
1356
+
1357
+ with UnifiedTo(
1358
+ server_url="https://api.unified.to",
1359
+ security=shared.Security(
1360
+ jwt="<YOUR_API_KEY_HERE>",
1361
+ ),
1362
+ ) as unified_to:
1363
+
1364
+ res = unified_to.accounting.create_accounting_account(request={
1365
+ "accounting_account": {},
1366
+ "connection_id": "<id>",
1367
+ })
1368
+
1369
+ assert res.accounting_account is not None
1370
+
1371
+ # Handle response
1372
+ print(res.accounting_account)
1373
+
1374
+ ```
1375
+ <!-- End Server Selection [server] -->
1376
+
1377
+
1378
+
1379
+ <!-- Start Custom HTTP Client [http-client] -->
1380
+ ## Custom HTTP Client
1381
+
1382
+ The Python SDK makes API calls using the [httpx](https://www.python-httpx.org/) 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 your own HTTP client instance.
1383
+ Depending on whether you are using the sync or async version of the SDK, you can pass an instance of `HttpClient` or `AsyncHttpClient` respectively, which are Protocol's ensuring that the client has the necessary methods to make API calls.
1384
+ This allows you to wrap the client with your own custom logic, such as adding custom headers, logging, or error handling, or you can just pass an instance of `httpx.Client` or `httpx.AsyncClient` directly.
1385
+
1386
+ For example, you could specify a header for every request that this sdk makes as follows:
1387
+ ```python
1388
+ from unified_python_sdk import UnifiedTo
1389
+ import httpx
1390
+
1391
+ http_client = httpx.Client(headers={"x-custom-header": "someValue"})
1392
+ s = UnifiedTo(client=http_client)
1393
+ ```
1394
+
1395
+ or you could wrap the client with your own custom logic:
1396
+ ```python
1397
+ from unified_python_sdk import UnifiedTo
1398
+ from unified_python_sdk.httpclient import AsyncHttpClient
1399
+ import httpx
1400
+
1401
+ class CustomClient(AsyncHttpClient):
1402
+ client: AsyncHttpClient
1403
+
1404
+ def __init__(self, client: AsyncHttpClient):
1405
+ self.client = client
1406
+
1407
+ async def send(
1408
+ self,
1409
+ request: httpx.Request,
1410
+ *,
1411
+ stream: bool = False,
1412
+ auth: Union[
1413
+ httpx._types.AuthTypes, httpx._client.UseClientDefault, None
1414
+ ] = httpx.USE_CLIENT_DEFAULT,
1415
+ follow_redirects: Union[
1416
+ bool, httpx._client.UseClientDefault
1417
+ ] = httpx.USE_CLIENT_DEFAULT,
1418
+ ) -> httpx.Response:
1419
+ request.headers["Client-Level-Header"] = "added by client"
1420
+
1421
+ return await self.client.send(
1422
+ request, stream=stream, auth=auth, follow_redirects=follow_redirects
1423
+ )
1424
+
1425
+ def build_request(
1426
+ self,
1427
+ method: str,
1428
+ url: httpx._types.URLTypes,
1429
+ *,
1430
+ content: Optional[httpx._types.RequestContent] = None,
1431
+ data: Optional[httpx._types.RequestData] = None,
1432
+ files: Optional[httpx._types.RequestFiles] = None,
1433
+ json: Optional[Any] = None,
1434
+ params: Optional[httpx._types.QueryParamTypes] = None,
1435
+ headers: Optional[httpx._types.HeaderTypes] = None,
1436
+ cookies: Optional[httpx._types.CookieTypes] = None,
1437
+ timeout: Union[
1438
+ httpx._types.TimeoutTypes, httpx._client.UseClientDefault
1439
+ ] = httpx.USE_CLIENT_DEFAULT,
1440
+ extensions: Optional[httpx._types.RequestExtensions] = None,
1441
+ ) -> httpx.Request:
1442
+ return self.client.build_request(
1443
+ method,
1444
+ url,
1445
+ content=content,
1446
+ data=data,
1447
+ files=files,
1448
+ json=json,
1449
+ params=params,
1450
+ headers=headers,
1451
+ cookies=cookies,
1452
+ timeout=timeout,
1453
+ extensions=extensions,
1454
+ )
1455
+
1456
+ s = UnifiedTo(async_client=CustomClient(httpx.AsyncClient()))
1457
+ ```
1458
+ <!-- End Custom HTTP Client [http-client] -->
1459
+
1460
+
1461
+
1462
+ <!-- Start Authentication [security] -->
1463
+ ## Authentication
1464
+
1465
+ ### Per-Client Security Schemes
1466
+
1467
+ This SDK supports the following security scheme globally:
1468
+
1469
+ | Name | Type | Scheme |
1470
+ | ----- | ------ | ------- |
1471
+ | `jwt` | apiKey | API key |
1472
+
1473
+ You can set the security parameters through the `security` optional parameter when initializing the SDK client instance. For example:
1474
+ ```python
1475
+ from unified_python_sdk import UnifiedTo
1476
+ from unified_python_sdk.models import shared
1477
+
1478
+ with UnifiedTo(
1479
+ security=shared.Security(
1480
+ jwt="<YOUR_API_KEY_HERE>",
1481
+ ),
1482
+ ) as unified_to:
1483
+
1484
+ res = unified_to.accounting.create_accounting_account(request={
1485
+ "accounting_account": {},
1486
+ "connection_id": "<id>",
1487
+ })
1488
+
1489
+ assert res.accounting_account is not None
1490
+
1491
+ # Handle response
1492
+ print(res.accounting_account)
1493
+
1494
+ ```
1495
+ <!-- End Authentication [security] -->
1496
+
1497
+ <!-- Start Resource Management [resource-management] -->
1498
+ ## Resource Management
1499
+
1500
+ The `UnifiedTo` class implements the context manager protocol and registers a finalizer function to close the underlying sync and async HTTPX clients it uses under the hood. This will close HTTP connections, release memory and free up other resources held by the SDK. In short-lived Python programs and notebooks that make a few SDK method calls, resource management may not be a concern. However, in longer-lived programs, it is beneficial to create a single SDK instance via a [context manager][context-manager] and reuse it across the application.
1501
+
1502
+ [context-manager]: https://docs.python.org/3/reference/datamodel.html#context-managers
1503
+
1504
+ ```python
1505
+ from unified_python_sdk import UnifiedTo
1506
+ from unified_python_sdk.models import shared
1507
+ def main():
1508
+ with UnifiedTo(
1509
+ security=shared.Security(
1510
+ jwt="<YOUR_API_KEY_HERE>",
1511
+ ),
1512
+ ) as unified_to:
1513
+ # Rest of application here...
1514
+
1515
+
1516
+ # Or when using async:
1517
+ async def amain():
1518
+ async with UnifiedTo(
1519
+ security=shared.Security(
1520
+ jwt="<YOUR_API_KEY_HERE>",
1521
+ ),
1522
+ ) as unified_to:
1523
+ # Rest of application here...
1524
+ ```
1525
+ <!-- End Resource Management [resource-management] -->
1526
+
1527
+ <!-- Start Debugging [debug] -->
1528
+ ## Debugging
1529
+
1530
+ You can setup your SDK to emit debug logs for SDK requests and responses.
1531
+
1532
+ You can pass your own logger class directly into your SDK.
1533
+ ```python
1534
+ from unified_python_sdk import UnifiedTo
1535
+ import logging
1536
+
1537
+ logging.basicConfig(level=logging.DEBUG)
1538
+ s = UnifiedTo(debug_logger=logging.getLogger("unified_python_sdk"))
1539
+ ```
1540
+ <!-- End Debugging [debug] -->
1541
+
1542
+ <!-- Placeholder for Future Speakeasy SDK Sections -->
1543
+
1544
+
1545
+ ### Contributions
1546
+
1547
+ While we value open-source contributions to this SDK, this library is generated programmatically.
1548
+ 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!
1549
+
1550
+ ### SDK Created by [Speakeasy](https://docs.speakeasyapi.dev/docs/using-speakeasy/client-sdks)
1551
+