xeroizer 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (292) hide show
  1. data/.bundle/config +2 -0
  2. data/Gemfile +12 -0
  3. data/Gemfile.lock +22 -0
  4. data/LICENSE.txt +20 -0
  5. data/README.md +416 -0
  6. data/Rakefile +39 -0
  7. data/VERSION +1 -0
  8. data/lib/.DS_Store +0 -0
  9. data/lib/big_decimal_to_s.rb +9 -0
  10. data/lib/class_level_inheritable_attributes.rb +25 -0
  11. data/lib/nokogiri_utils.rb +58 -0
  12. data/lib/xeroizer.rb +55 -0
  13. data/lib/xeroizer/ca-certificates.crt +2642 -0
  14. data/lib/xeroizer/exceptions.rb +94 -0
  15. data/lib/xeroizer/generic_application.rb +40 -0
  16. data/lib/xeroizer/http.rb +148 -0
  17. data/lib/xeroizer/http_encoding_helper.rb +49 -0
  18. data/lib/xeroizer/models/account.rb +60 -0
  19. data/lib/xeroizer/models/address.rb +31 -0
  20. data/lib/xeroizer/models/branding_theme.rb +22 -0
  21. data/lib/xeroizer/models/contact.rb +46 -0
  22. data/lib/xeroizer/models/credit_note.rb +113 -0
  23. data/lib/xeroizer/models/currency.rb +18 -0
  24. data/lib/xeroizer/models/invoice.rb +138 -0
  25. data/lib/xeroizer/models/item.rb +27 -0
  26. data/lib/xeroizer/models/item_purchase_sale_details.rb +17 -0
  27. data/lib/xeroizer/models/journal.rb +25 -0
  28. data/lib/xeroizer/models/journal_line.rb +28 -0
  29. data/lib/xeroizer/models/line_item.rb +43 -0
  30. data/lib/xeroizer/models/manual_journal.rb +42 -0
  31. data/lib/xeroizer/models/manual_journal_line.rb +24 -0
  32. data/lib/xeroizer/models/option.rb +15 -0
  33. data/lib/xeroizer/models/organisation.rb +23 -0
  34. data/lib/xeroizer/models/payment.rb +30 -0
  35. data/lib/xeroizer/models/phone.rb +25 -0
  36. data/lib/xeroizer/models/tax_rate.rb +25 -0
  37. data/lib/xeroizer/models/tracking_category.rb +23 -0
  38. data/lib/xeroizer/models/tracking_category_child.rb +17 -0
  39. data/lib/xeroizer/oauth.rb +130 -0
  40. data/lib/xeroizer/partner_application.rb +44 -0
  41. data/lib/xeroizer/private_application.rb +27 -0
  42. data/lib/xeroizer/public_application.rb +21 -0
  43. data/lib/xeroizer/record/application_helper.rb +22 -0
  44. data/lib/xeroizer/record/base.rb +116 -0
  45. data/lib/xeroizer/record/base_model.rb +138 -0
  46. data/lib/xeroizer/record/base_model_http_proxy.rb +134 -0
  47. data/lib/xeroizer/record/model_definition_helper.rb +94 -0
  48. data/lib/xeroizer/record/record_association_helper.rb +94 -0
  49. data/lib/xeroizer/record/validation_helper.rb +59 -0
  50. data/lib/xeroizer/record/validators/associated_validator.rb +33 -0
  51. data/lib/xeroizer/record/validators/inclusion_of_validator.rb +22 -0
  52. data/lib/xeroizer/record/validators/presence_of_validator.rb +19 -0
  53. data/lib/xeroizer/record/validators/validator.rb +24 -0
  54. data/lib/xeroizer/record/xml_helper.rb +113 -0
  55. data/lib/xeroizer/response.rb +17 -0
  56. data/test/stub_responses/accounts.xml +589 -0
  57. data/test/stub_responses/api_exception.xml +153 -0
  58. data/test/stub_responses/bogus_oauth_error +1 -0
  59. data/test/stub_responses/branding_themes.xml +20 -0
  60. data/test/stub_responses/contact.xml +40 -0
  61. data/test/stub_responses/contacts.xml +3349 -0
  62. data/test/stub_responses/create_credit_note.xml +104 -0
  63. data/test/stub_responses/create_invoice.xml +64 -0
  64. data/test/stub_responses/credit_note.xml +69 -0
  65. data/test/stub_responses/credit_note_not_found_error.xml +1 -0
  66. data/test/stub_responses/credit_notes.xml +149 -0
  67. data/test/stub_responses/currencies.xml +12 -0
  68. data/test/stub_responses/invalid_api_key_error.xml +1 -0
  69. data/test/stub_responses/invalid_consumer_key +1 -0
  70. data/test/stub_responses/invalid_request_token +1 -0
  71. data/test/stub_responses/invoice.xml +91 -0
  72. data/test/stub_responses/invoice_not_found_error.xml +1 -0
  73. data/test/stub_responses/invoices.xml +1728 -0
  74. data/test/stub_responses/items.xml +112 -0
  75. data/test/stub_responses/manual_journal.xml +45 -0
  76. data/test/stub_responses/manual_journals.xml +40 -0
  77. data/test/stub_responses/organisation.xml +16 -0
  78. data/test/stub_responses/organisations.xml +16 -0
  79. data/test/stub_responses/rate_limit_exceeded +1 -0
  80. data/test/stub_responses/records/contact-043892a1-aef1-4c18-88d8-b8ccb6d31466.xml +38 -0
  81. data/test/stub_responses/records/contact-09664078-efe2-4a88-89a5-67eac9b0047b.xml +40 -0
  82. data/test/stub_responses/records/contact-0a4cf37b-a1a8-4753-9ee2-f9207f63a8ff.xml +48 -0
  83. data/test/stub_responses/records/contact-0e74f929-11b9-4255-a035-1fdfe573e676.xml +40 -0
  84. data/test/stub_responses/records/contact-0f471ca5-15c9-405e-a1b9-7cc35194b673.xml +38 -0
  85. data/test/stub_responses/records/contact-13cd4c47-baa6-4f07-93f6-6442310df4bf.xml +47 -0
  86. data/test/stub_responses/records/contact-158a2667-82ee-43bf-8f33-a6cc9524092d.xml +38 -0
  87. data/test/stub_responses/records/contact-17465072-6fa3-40bf-bc42-97765d9e1bea.xml +38 -0
  88. data/test/stub_responses/records/contact-1975b0ed-b7ba-4c61-bae8-2aa6d78b0dee.xml +39 -0
  89. data/test/stub_responses/records/contact-1b2be6e9-8d58-4da9-aaf8-4fe5471b653c.xml +53 -0
  90. data/test/stub_responses/records/contact-1c40da58-fe1d-4e97-b729-b2abdae94d9e.xml +38 -0
  91. data/test/stub_responses/records/contact-258176a5-c622-4394-9c94-6f88c3ea12e5.xml +40 -0
  92. data/test/stub_responses/records/contact-299dd3a0-a417-4a37-8a04-2f55e91963e5.xml +40 -0
  93. data/test/stub_responses/records/contact-2be39278-5154-4ed1-8eb0-676f25acfc66.xml +40 -0
  94. data/test/stub_responses/records/contact-2e58cff6-488c-4a32-884b-baf848010229.xml +40 -0
  95. data/test/stub_responses/records/contact-2faccd41-935e-40aa-b74e-e2fc28ac34c3.xml +38 -0
  96. data/test/stub_responses/records/contact-31af01e7-2ca7-45b9-a500-b02db996568e.xml +38 -0
  97. data/test/stub_responses/records/contact-344f1113-a25b-4344-b82e-bedeacc17c8e.xml +40 -0
  98. data/test/stub_responses/records/contact-3e776c4b-ea9e-4bb1-96be-6b0c7a71a37f.xml +39 -0
  99. data/test/stub_responses/records/contact-3fc1fc6c-e5ff-4e40-b6f3-7eb535637d87.xml +38 -0
  100. data/test/stub_responses/records/contact-416ab20c-5357-4beb-a740-e8d175d71efb.xml +38 -0
  101. data/test/stub_responses/records/contact-41a42865-f15a-4fa1-b643-47877608f557.xml +54 -0
  102. data/test/stub_responses/records/contact-42771b60-19a7-4692-af81-dd9f9b9362d4.xml +43 -0
  103. data/test/stub_responses/records/contact-451ceb28-9610-44c9-8f35-3225482f2413.xml +40 -0
  104. data/test/stub_responses/records/contact-4ab343ad-1ebb-4afe-9d48-1814a93c2081.xml +38 -0
  105. data/test/stub_responses/records/contact-4bb77692-42d4-4565-85a0-8849eb85e039.xml +39 -0
  106. data/test/stub_responses/records/contact-4dec292f-3ab7-46a8-83e4-5fb5eac42c7f.xml +40 -0
  107. data/test/stub_responses/records/contact-4e2f192e-8397-4d4d-97ca-a4fc5ac531bf.xml +38 -0
  108. data/test/stub_responses/records/contact-5188c17c-7786-4436-ad6e-9da2997386d0.xml +40 -0
  109. data/test/stub_responses/records/contact-52442753-b1c4-40b7-9b79-c33997de5837.xml +40 -0
  110. data/test/stub_responses/records/contact-565acaa9-e7f3-4fbf-80c3-16b081ddae10.xml +38 -0
  111. data/test/stub_responses/records/contact-571a2414-81ff-4f8f-8498-d91d83793131.xml +44 -0
  112. data/test/stub_responses/records/contact-58697449-85ef-46ae-83fc-6a9446f037fb.xml +40 -0
  113. data/test/stub_responses/records/contact-58bf2ae3-5144-4628-8de2-e165ac2bcdc6.xml +40 -0
  114. data/test/stub_responses/records/contact-5d41dafd-eb7e-42c1-bd5a-ba3be1da0960.xml +38 -0
  115. data/test/stub_responses/records/contact-5f005a09-5ce4-4fb4-8096-e69c18be636e.xml +38 -0
  116. data/test/stub_responses/records/contact-60d578d9-3e10-4aef-b5dc-9d9fd60a3633.xml +47 -0
  117. data/test/stub_responses/records/contact-62392126-dba4-4a75-b907-5875ebf75259.xml +40 -0
  118. data/test/stub_responses/records/contact-642c7fb5-e8e5-48e1-a710-39a18c6c3217.xml +40 -0
  119. data/test/stub_responses/records/contact-64aebf9c-bb89-4b38-b99b-405bd1ece6fd.xml +40 -0
  120. data/test/stub_responses/records/contact-64eedbc9-1fa0-485a-837f-705f23188161.xml +38 -0
  121. data/test/stub_responses/records/contact-65e96c9f-1595-4653-9a8a-2a36d49223c2.xml +40 -0
  122. data/test/stub_responses/records/contact-67d26b93-ccb4-4890-9bf1-284b70ea755d.xml +38 -0
  123. data/test/stub_responses/records/contact-69d3e538-44b3-4e00-a5f6-7dddcb6e0656.xml +40 -0
  124. data/test/stub_responses/records/contact-6a8450bc-f81a-4bb0-a8f6-aa4afe9497c7.xml +40 -0
  125. data/test/stub_responses/records/contact-6c70e424-41d6-4b9b-af3e-b3a9f3589106.xml +40 -0
  126. data/test/stub_responses/records/contact-6de0b0cf-560c-4503-aab3-e1543c329deb.xml +54 -0
  127. data/test/stub_responses/records/contact-72dd6a02-396e-42a2-a4d6-cc3fa75dfece.xml +41 -0
  128. data/test/stub_responses/records/contact-755f1475-d255-43a8-bedc-5ea7fd26c71f.xml +51 -0
  129. data/test/stub_responses/records/contact-78a9d0a0-3d8c-4f84-af3e-f260bf4a9dc0.xml +38 -0
  130. data/test/stub_responses/records/contact-79aa39ca-22b0-42c2-9026-78757a29d665.xml +42 -0
  131. data/test/stub_responses/records/contact-804f4140-5978-48fe-ba20-b56e5b834b18.xml +40 -0
  132. data/test/stub_responses/records/contact-812d4f28-1681-4241-8e34-d15c5520ba35.xml +38 -0
  133. data/test/stub_responses/records/contact-860b99a9-0958-4c8d-a98f-bb1f092b16bb.xml +60 -0
  134. data/test/stub_responses/records/contact-87c8da45-97cc-46be-b170-398da0eacfb8.xml +40 -0
  135. data/test/stub_responses/records/contact-8a154a19-6c6c-404b-bbc9-6deae2d18251.xml +38 -0
  136. data/test/stub_responses/records/contact-8bb6931d-2865-44e9-9a23-ed1fb9c7a46c.xml +40 -0
  137. data/test/stub_responses/records/contact-936c9759-01da-4063-b472-424ab9f48212.xml +38 -0
  138. data/test/stub_responses/records/contact-9d12a994-9640-4b75-95cc-3de1e9d0ef09.xml +38 -0
  139. data/test/stub_responses/records/contact-9fe59245-1fbb-4157-93c3-dc97388f3746.xml +40 -0
  140. data/test/stub_responses/records/contact-a06a7225-6f8a-4522-8400-c534dd43a16e.xml +40 -0
  141. data/test/stub_responses/records/contact-a76a85fe-73a2-46fa-aba7-791f36103cdb.xml +40 -0
  142. data/test/stub_responses/records/contact-a93b5f40-0346-4d21-9181-431e129911c0.xml +40 -0
  143. data/test/stub_responses/records/contact-abf272dd-6b1d-4829-af88-c57bf55855e3.xml +38 -0
  144. data/test/stub_responses/records/contact-ad24c33b-256b-4157-ad56-cbcf0e8db7b1.xml +47 -0
  145. data/test/stub_responses/records/contact-b107129d-f4c9-438e-9573-64b778527f4a.xml +40 -0
  146. data/test/stub_responses/records/contact-b233288a-aa26-4b26-9fc7-779d797dd56f.xml +40 -0
  147. data/test/stub_responses/records/contact-b2b5333a-2546-4975-891f-d71a8a640d23.xml +38 -0
  148. data/test/stub_responses/records/contact-b4d149bf-1823-4bd2-96da-9032388c9686.xml +40 -0
  149. data/test/stub_responses/records/contact-b78d4fd1-4306-4d83-a0b9-61458d1c53a2.xml +40 -0
  150. data/test/stub_responses/records/contact-b7d108a8-d5f7-4f16-a7c9-26eaed98e8de.xml +40 -0
  151. data/test/stub_responses/records/contact-baeed0f3-7989-4874-99b3-59f23032cb73.xml +38 -0
  152. data/test/stub_responses/records/contact-bc51a3a1-b7f6-46ca-ac9e-19b87e6ca100.xml +40 -0
  153. data/test/stub_responses/records/contact-be9f3aab-52f5-4d9c-94b4-87f7d9e5ee8b.xml +38 -0
  154. data/test/stub_responses/records/contact-c135f994-01e4-427b-9e15-acfe8a477c16.xml +49 -0
  155. data/test/stub_responses/records/contact-c14edf75-15e4-4a9c-86e4-f52e2fe7cfa4.xml +40 -0
  156. data/test/stub_responses/records/contact-ca9b9abc-c2dc-4221-8101-31f464d314cc.xml +44 -0
  157. data/test/stub_responses/records/contact-cc4db604-9ed8-4eef-8a29-51b5b70496a0.xml +38 -0
  158. data/test/stub_responses/records/contact-cce9b044-be4a-43b3-9dc7-c027d8dd35b2.xml +38 -0
  159. data/test/stub_responses/records/contact-d0cd2c4f-18a0-4f7c-a32a-2db00f29d298.xml +43 -0
  160. data/test/stub_responses/records/contact-d6851dc2-9ed9-4515-bc0b-810b09c06a6a.xml +38 -0
  161. data/test/stub_responses/records/contact-d6a384fb-f46f-41a3-8ac7-b7bc9e0b5efa.xml +46 -0
  162. data/test/stub_responses/records/contact-d74e61cf-2ad0-4f0d-b9d1-6a808e3f70cf.xml +40 -0
  163. data/test/stub_responses/records/contact-d9ab0f61-3b56-4e2b-be39-f33c11bd99e3.xml +40 -0
  164. data/test/stub_responses/records/contact-dbb1f0b5-a71b-4458-8462-104acd0fec6b.xml +38 -0
  165. data/test/stub_responses/records/contact-dd981bd6-40dd-496d-a282-bf7d3391b8b9.xml +40 -0
  166. data/test/stub_responses/records/contact-e1826204-cc0a-42a5-a6d0-4b352d9d5953.xml +40 -0
  167. data/test/stub_responses/records/contact-e2d955db-f366-42dd-87f7-fbdb4da2306f.xml +40 -0
  168. data/test/stub_responses/records/contact-e32e2130-3d27-443a-8313-48fffa03cf53.xml +40 -0
  169. data/test/stub_responses/records/contact-e3a68332-d322-4816-8678-73a537c8cd33.xml +38 -0
  170. data/test/stub_responses/records/contact-e6ac76a3-ca32-4fa1-8ef9-6a4bf8b0ec2a.xml +40 -0
  171. data/test/stub_responses/records/contact-e6ca965d-7c48-480e-be39-e847307f474a.xml +38 -0
  172. data/test/stub_responses/records/contact-e77d1f20-2e8e-46ec-9a10-50335a216724.xml +40 -0
  173. data/test/stub_responses/records/contact-e8b98c13-a424-41d2-ba0e-7b7621411e7a.xml +38 -0
  174. data/test/stub_responses/records/contact-e8e9a2c2-3e7e-48ed-8528-c3d61b28f276.xml +39 -0
  175. data/test/stub_responses/records/contact-eb43fcc6-87ec-4a0a-b243-d718bee4e2cb.xml +38 -0
  176. data/test/stub_responses/records/contact-ef6f54c1-eb45-4956-b8cd-1be82ad665f2.xml +43 -0
  177. data/test/stub_responses/records/contact-efdb3600-f233-42e2-8f18-ce7e2a95e4b1.xml +38 -0
  178. data/test/stub_responses/records/contact-f7eca431-5c97-4d24-93fd-004bb8a6c644.xml +40 -0
  179. data/test/stub_responses/records/contact-fb078879-5d6d-474f-825f-61dc90689349.xml +38 -0
  180. data/test/stub_responses/records/contact-fc39b273-4aa2-4785-99ca-24672f6c0000.xml +38 -0
  181. data/test/stub_responses/records/contact-fc9ec3a6-a2fe-4300-a8cb-ca8a0b3662e0.xml +40 -0
  182. data/test/stub_responses/records/contact-fdf96102-7491-44b6-bf4d-7a77ff25f890.xml +40 -0
  183. data/test/stub_responses/records/contact-fe61ead1-8afc-4f0b-beda-066620227aad.xml +38 -0
  184. data/test/stub_responses/records/credit_note-371cd138-1e5c-4ec1-a8c6-a1c10e8bdab1.xml +69 -0
  185. data/test/stub_responses/records/credit_note-3bffc09b-79f2-490d-b91b-c59b700b43a4.xml +91 -0
  186. data/test/stub_responses/records/credit_note-43c678ee-f357-48e2-b192-b6e3634762f9.xml +90 -0
  187. data/test/stub_responses/records/credit_note-482c018b-d329-4e05-9b4f-7a4cfc695aa0.xml +73 -0
  188. data/test/stub_responses/records/credit_note-4f67130a-749a-4ee6-98b2-743adbc11245.xml +60 -0
  189. data/test/stub_responses/records/credit_note-50e98404-2fba-4031-af67-8ba4bb227c44.xml +74 -0
  190. data/test/stub_responses/records/credit_note-7df8949c-b71f-40c0-bbcf-39f2f450f286.xml +73 -0
  191. data/test/stub_responses/records/credit_note-b356e488-2678-4be4-ad4b-d294df2d48d6.xml +76 -0
  192. data/test/stub_responses/records/invoice-0032f627-3156-4d30-9b1c-4d3b994dc921.xml +82 -0
  193. data/test/stub_responses/records/invoice-00c9511b-24b9-4190-a90a-8abf2fe9f4a0.xml +74 -0
  194. data/test/stub_responses/records/invoice-024d7994-a26c-4c20-9894-13934840fc31.xml +73 -0
  195. data/test/stub_responses/records/invoice-0e64a623-c2a1-446a-93ed-eb897f118cbc.xml +96 -0
  196. data/test/stub_responses/records/invoice-15e88e57-2554-4496-a18e-eb3f5c622345.xml +73 -0
  197. data/test/stub_responses/records/invoice-166f0588-d0ba-458c-b28a-8edd4c8fc463.xml +73 -0
  198. data/test/stub_responses/records/invoice-1d1ba340-afa2-4f4c-8ff7-a147bda9a47b.xml +91 -0
  199. data/test/stub_responses/records/invoice-290ef4c4-baec-492b-b4dd-c102826470ae.xml +85 -0
  200. data/test/stub_responses/records/invoice-30a87092-31b5-4a2c-831e-327486533dd2.xml +77 -0
  201. data/test/stub_responses/records/invoice-30dbd181-72a8-43df-b392-4241bf43d5fc.xml +68 -0
  202. data/test/stub_responses/records/invoice-33e4123e-7cdd-4f05-9a0a-eb8adeb2b868.xml +92 -0
  203. data/test/stub_responses/records/invoice-387db692-26ac-47e6-b6cc-015343809bda.xml +73 -0
  204. data/test/stub_responses/records/invoice-3b28bf11-ed2f-4cf4-8e9e-fcae730cc292.xml +89 -0
  205. data/test/stub_responses/records/invoice-3fcb9847-b350-412e-ab90-7d9d774ad881.xml +89 -0
  206. data/test/stub_responses/records/invoice-4602eda6-abe9-448e-b65f-ae6bea21f0eb.xml +96 -0
  207. data/test/stub_responses/records/invoice-46441f63-873f-4cdc-a278-b8fe516f3abb.xml +91 -0
  208. data/test/stub_responses/records/invoice-4ad1ec01-f4a3-41d7-bbb4-d2ab2fec8e65.xml +73 -0
  209. data/test/stub_responses/records/invoice-4b9afceb-f7c7-4e64-8aac-7b009971fd52.xml +84 -0
  210. data/test/stub_responses/records/invoice-4edbf6d5-4e92-43af-bedd-7effc0b86833.xml +68 -0
  211. data/test/stub_responses/records/invoice-4fad1af2-b871-4ac5-a15a-3c5e32d2e2c4.xml +83 -0
  212. data/test/stub_responses/records/invoice-52ee4d67-cae4-462c-adb2-182c39017f3d.xml +81 -0
  213. data/test/stub_responses/records/invoice-54585f46-c1a0-4432-bd4f-c1fae2fba59b.xml +66 -0
  214. data/test/stub_responses/records/invoice-5613938b-9e27-472e-92ae-3b038b669d10.xml +85 -0
  215. data/test/stub_responses/records/invoice-5aa9451d-95d1-4f95-a966-bbab2573f71c.xml +73 -0
  216. data/test/stub_responses/records/invoice-5aadcd34-01a9-4b8d-a2bb-d7cc1de9fa45.xml +87 -0
  217. data/test/stub_responses/records/invoice-5f6deadf-36a2-495a-9980-ceb11e8af9a9.xml +83 -0
  218. data/test/stub_responses/records/invoice-625ffe1b-f5d8-438e-a376-981de5f5a733.xml +75 -0
  219. data/test/stub_responses/records/invoice-64cd559e-8e03-46af-b461-8555285cee71.xml +84 -0
  220. data/test/stub_responses/records/invoice-666f8dbb-bc9a-476c-8ec4-4665d7f83190.xml +63 -0
  221. data/test/stub_responses/records/invoice-66fbe37f-49b1-43fd-97ed-85114022cd2f.xml +77 -0
  222. data/test/stub_responses/records/invoice-673dd7cc-beb7-4697-83d4-0c47cb400cc2.xml +85 -0
  223. data/test/stub_responses/records/invoice-69fc971e-9b37-41c5-9c87-174330f22343.xml +65 -0
  224. data/test/stub_responses/records/invoice-70e6db69-e5a4-42c7-a397-aa3212c2945f.xml +73 -0
  225. data/test/stub_responses/records/invoice-766d1289-b440-4675-a656-1a0612ecac77.xml +74 -0
  226. data/test/stub_responses/records/invoice-76bcb361-f93b-4513-b312-5a4af306d276.xml +66 -0
  227. data/test/stub_responses/records/invoice-76e3f056-479f-417c-a72b-f3d767899b87.xml +89 -0
  228. data/test/stub_responses/records/invoice-77b338ef-ecc0-4b95-a0d7-2617b0054611.xml +103 -0
  229. data/test/stub_responses/records/invoice-7be9956d-5316-4f6b-a66a-d355b3f159b2.xml +82 -0
  230. data/test/stub_responses/records/invoice-7dae876a-b424-436b-a4e6-17b3fdeec80c.xml +82 -0
  231. data/test/stub_responses/records/invoice-7e862d93-8dab-4856-8b0c-d844e09d750f.xml +66 -0
  232. data/test/stub_responses/records/invoice-803f70b0-56d9-4157-9787-41df271777a0.xml +82 -0
  233. data/test/stub_responses/records/invoice-86102312-aa3f-438c-9938-6840f4d8dda6.xml +74 -0
  234. data/test/stub_responses/records/invoice-8694c9c5-7097-4449-a708-b8c1982921a4.xml +68 -0
  235. data/test/stub_responses/records/invoice-86d6e00f-ef56-49f7-9a54-796ccd5ca057.xml +83 -0
  236. data/test/stub_responses/records/invoice-88e77f0f-54a5-4efc-a979-7e22223cc4d7.xml +65 -0
  237. data/test/stub_responses/records/invoice-8b0ccb6a-d9b7-4da5-8360-ef7fb157b5aa.xml +65 -0
  238. data/test/stub_responses/records/invoice-935fc854-8037-4111-8d91-993010c331cc.xml +73 -0
  239. data/test/stub_responses/records/invoice-95ef3000-c764-4ba9-a66a-b6e2d161f839.xml +62 -0
  240. data/test/stub_responses/records/invoice-962ef33f-c9d2-4602-9b9f-93a02bea23b3.xml +90 -0
  241. data/test/stub_responses/records/invoice-9868b472-1983-48e9-8edf-7e81ddf2c03a.xml +83 -0
  242. data/test/stub_responses/records/invoice-9a448e9b-a9fa-4a8b-98f5-6dc892a37374.xml +62 -0
  243. data/test/stub_responses/records/invoice-a1d04a14-96a8-4067-a0ff-8136990a354f.xml +91 -0
  244. data/test/stub_responses/records/invoice-a3bc62ef-f11b-4a9c-a4f9-a342bda371b5.xml +65 -0
  245. data/test/stub_responses/records/invoice-a6894ca0-60ee-4d45-9dd4-b44fcba46ec5.xml +88 -0
  246. data/test/stub_responses/records/invoice-a9f765e6-b9bc-4505-a47b-fb3ecb327e7b.xml +85 -0
  247. data/test/stub_responses/records/invoice-aa0173af-8707-4e7f-8dde-4c7a357bd312.xml +92 -0
  248. data/test/stub_responses/records/invoice-ab63738a-370a-43a5-bfa3-620d684e66d0.xml +81 -0
  249. data/test/stub_responses/records/invoice-b0344791-5a8a-40dd-a208-d99a461a6c10.xml +82 -0
  250. data/test/stub_responses/records/invoice-b1e53910-473c-46a3-b3cb-38ece571220e.xml +66 -0
  251. data/test/stub_responses/records/invoice-b2c02d0b-41a8-4d4d-97d7-014c78b3547d.xml +91 -0
  252. data/test/stub_responses/records/invoice-b75b3928-ab72-4424-8b93-9cdbbde4cd72.xml +80 -0
  253. data/test/stub_responses/records/invoice-bcd8a71f-aa31-4d0f-8a01-13ea26363ddf.xml +92 -0
  254. data/test/stub_responses/records/invoice-bfbb7c45-de02-45e7-b065-d9863ecfb0d8.xml +65 -0
  255. data/test/stub_responses/records/invoice-c12aff7e-12bf-4185-8702-460929f19674.xml +76 -0
  256. data/test/stub_responses/records/invoice-c3380b96-976d-4b3e-8b26-8d01eb6a3742.xml +85 -0
  257. data/test/stub_responses/records/invoice-c963f2b0-cbe1-4abd-9ccc-7e512c942068.xml +66 -0
  258. data/test/stub_responses/records/invoice-d62646b9-d0a9-4fdb-9561-756a8b7eba45.xml +63 -0
  259. data/test/stub_responses/records/invoice-dba2f021-f149-4191-a126-5351d587ab0e.xml +74 -0
  260. data/test/stub_responses/records/invoice-de5d9c29-21b3-4342-958b-ed72c4bd7ab0.xml +106 -0
  261. data/test/stub_responses/records/invoice-e3d96555-2876-4364-a46a-7551a4f52611.xml +119 -0
  262. data/test/stub_responses/records/invoice-e4a0afbd-aea0-450b-ae23-0ce921e84a77.xml +99 -0
  263. data/test/stub_responses/records/invoice-e9cb9ecb-58ef-43a8-bd20-69a85338142d.xml +74 -0
  264. data/test/stub_responses/records/invoice-ec9a6f67-7128-4a63-8ba3-5e516f455f9b.xml +92 -0
  265. data/test/stub_responses/records/invoice-ed0f2587-84fc-4aef-bc4b-b1a262e24484.xml +78 -0
  266. data/test/stub_responses/records/invoice-f362ca53-8ade-4047-865a-bb64bee5863d.xml +73 -0
  267. data/test/stub_responses/records/invoice-f571c38b-5be1-41e1-ad5a-ff6184284beb.xml +104 -0
  268. data/test/stub_responses/records/invoice-f5832195-5cd3-4660-ad3f-b73d9c64f263.xml +83 -0
  269. data/test/stub_responses/records/invoice-f9c857eb-64cd-4235-a078-d04b52c77ea7.xml +74 -0
  270. data/test/stub_responses/records/manual_journal-4765d07b-aa03-4e56-9166-50661958c864.xml +38 -0
  271. data/test/stub_responses/records/manual_journal-53fc5558-5b76-4ecd-ae5c-c4af3ccde87c.xml +31 -0
  272. data/test/stub_responses/records/manual_journal-bb6cfcfc-4500-4475-bd3a-93ee512428e0.xml +31 -0
  273. data/test/stub_responses/records/manual_journal-f00a355b-7374-445c-886b-0437bea4095c.xml +45 -0
  274. data/test/stub_responses/refresh_responses.rb +29 -0
  275. data/test/stub_responses/tax_rates.xml +118 -0
  276. data/test/stub_responses/token_expired +1 -0
  277. data/test/stub_responses/tracking_categories.xml +27 -0
  278. data/test/stub_responses/unknown_error.xml +1 -0
  279. data/test/test_helper.rb +49 -0
  280. data/test/unit/models/contact_test.rb +26 -0
  281. data/test/unit/models/credit_note_test.rb +37 -0
  282. data/test/unit/models/invoice_test.rb +51 -0
  283. data/test/unit/oauth_test.rb +72 -0
  284. data/test/unit/private_application_test.rb +20 -0
  285. data/test/unit/record/base_model_test.rb +50 -0
  286. data/test/unit/record/base_test.rb +57 -0
  287. data/test/unit/record/model_definition_test.rb +159 -0
  288. data/test/unit/record/parse_where_hash_test.rb +63 -0
  289. data/test/unit/record/record_association_test.rb +36 -0
  290. data/test/unit/record/validators_test.rb +180 -0
  291. data/xeroizer.gemspec +375 -0
  292. metadata +533 -0
@@ -0,0 +1,104 @@
1
+ <Response xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
2
+ <Id>3de66ac9-30da-489d-8214-6a0757e899a7</Id>
3
+ <Status>OK</Status>
4
+ <ProviderName>Xero API Previewer</ProviderName>
5
+ <DateTimeUTC>2010-10-14T02:49:54.4475976Z</DateTimeUTC>
6
+ <CreditNotes>
7
+ <CreditNote>
8
+ <Reference>{reference}</Reference>
9
+ <Type>ACCPAYCREDIT</Type>
10
+ <Contact>
11
+ <ContactID>cd848c63-235e-4b9d-a9aa-97d24c1a5bd3</ContactID>
12
+ <ContactNumber>0006841301</ContactNumber>
13
+ <ContactStatus>ACTIVE</ContactStatus>
14
+ <Name>Ariki Properties</Name>
15
+ <FirstName>Simon</FirstName>
16
+ <LastName>Greenville</LastName>
17
+ <EmailAddress>emailaddress@yourdomain.com</EmailAddress>
18
+ <SkypeUserName>Skype Name/Number</SkypeUserName>
19
+ <BankAccountDetails>Bank Account Details</BankAccountDetails>
20
+ <TaxNumber>Tax ID Number</TaxNumber>
21
+ <AccountsReceivableTaxType>OUTPUT</AccountsReceivableTaxType>
22
+ <AccountsPayableTaxType>INPUT</AccountsPayableTaxType>
23
+ <Addresses>
24
+ <Address>
25
+ <AddressType>POBOX</AddressType>
26
+ <AddressLine1>PO Box 10112</AddressLine1>
27
+ <City>New York</City>
28
+ <Region>New York State</Region>
29
+ <PostalCode>10112</PostalCode>
30
+ <Country>USA</Country>
31
+ <AttentionTo>Simon G.</AttentionTo>
32
+ </Address>
33
+ <Address>
34
+ <AddressType>STREET</AddressType>
35
+ <AddressLine1>Level 71</AddressLine1>
36
+ <AddressLine2>30 Rockefeller plaza</AddressLine2>
37
+ <City>New York</City>
38
+ <Region>New York State</Region>
39
+ <PostalCode>10112</PostalCode>
40
+ <Country>USA</Country>
41
+ <AttentionTo>Simon G.</AttentionTo>
42
+ </Address>
43
+ </Addresses>
44
+ <Phones>
45
+ <Phone>
46
+ <PhoneType>MOBILE</PhoneType>
47
+ <PhoneNumber>5555555</PhoneNumber>
48
+ <PhoneAreaCode>877</PhoneAreaCode>
49
+ <PhoneCountryCode>0001</PhoneCountryCode>
50
+ </Phone>
51
+ <Phone>
52
+ <PhoneType>DDI</PhoneType>
53
+ <PhoneNumber>1234567</PhoneNumber>
54
+ <PhoneAreaCode>877</PhoneAreaCode>
55
+ <PhoneCountryCode>0001</PhoneCountryCode>
56
+ </Phone>
57
+ <Phone>
58
+ <PhoneType>DEFAULT</PhoneType>
59
+ <PhoneNumber>5996999</PhoneNumber>
60
+ <PhoneAreaCode>877</PhoneAreaCode>
61
+ <PhoneCountryCode>0001</PhoneCountryCode>
62
+ </Phone>
63
+ <Phone>
64
+ <PhoneType>FAX</PhoneType>
65
+ <PhoneNumber>7654321</PhoneNumber>
66
+ <PhoneAreaCode>877</PhoneAreaCode>
67
+ <PhoneCountryCode>0001</PhoneCountryCode>
68
+ </Phone>
69
+ </Phones>
70
+ <UpdatedDateUTC>2010-10-14T02:49:52.697</UpdatedDateUTC>
71
+ </Contact>
72
+ <Date>2009-08-25T00:00:00</Date>
73
+ <Status>SUBMITTED</Status>
74
+ <LineAmountTypes>Inclusive</LineAmountTypes>
75
+ <LineItems>
76
+ <LineItem>
77
+ <Description>Credit on overcharge last month as discussed</Description>
78
+ <Quantity>2.0000</Quantity>
79
+ <UnitAmount>180.00</UnitAmount>
80
+ <TaxType>NONE</TaxType>
81
+ <TaxAmount>0.00</TaxAmount>
82
+ <LineAmount>360.00</LineAmount>
83
+ <AccountCode>200</AccountCode>
84
+ </LineItem>
85
+ <LineItem>
86
+ <Description>Distounct on credit on overcharge last month as discussed</Description>
87
+ <Quantity>0.2000</Quantity>
88
+ <UnitAmount>180.00</UnitAmount>
89
+ <TaxType>NONE</TaxType>
90
+ <TaxAmount>0.00</TaxAmount>
91
+ <LineAmount>36.00</LineAmount>
92
+ <AccountCode>200</AccountCode>
93
+ </LineItem>
94
+ </LineItems>
95
+ <SubTotal>396.00</SubTotal>
96
+ <TotalTax>0.00</TotalTax>
97
+ <Total>396.00</Total>
98
+ <UpdatedDateUTC>2010-10-14T02:49:52.197</UpdatedDateUTC>
99
+ <CurrencyCode>NZD</CurrencyCode>
100
+ <CreditNoteID>80d246a5-f298-4708-aac2-e12cce4038fe</CreditNoteID>
101
+ <CreditNoteNumber>CN-0153</CreditNoteNumber>
102
+ </CreditNote>
103
+ </CreditNotes>
104
+ </Response>
@@ -0,0 +1,64 @@
1
+ <Response xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
2
+ <Id>ac61eaae-0700-4f95-813d-aefa09eb57c6</Id>
3
+ <Status>OK</Status>
4
+ <ProviderName>XeroGateway Test</ProviderName>
5
+ <DateTimeUTC>2009-10-17T09:17:48.5216708Z</DateTimeUTC>
6
+ <Invoices>
7
+ <Invoice>
8
+ <Type>ACCREC</Type>
9
+ <Contact>
10
+ <ContactID>3e1d3ba5-609a-4e10-bb1d-75b6d31ce922</ContactID>
11
+ <ContactStatus>ACTIVE</ContactStatus>
12
+ <Name>AMP</Name>
13
+ <Addresses>
14
+ <Address>
15
+ <AddressType>STREET</AddressType>
16
+ </Address>
17
+ <Address>
18
+ <AddressType>POBOX</AddressType>
19
+ </Address>
20
+ </Addresses>
21
+ <Phones>
22
+ <Phone>
23
+ <PhoneType>MOBILE</PhoneType>
24
+ </Phone>
25
+ <Phone>
26
+ <PhoneType>DDI</PhoneType>
27
+ </Phone>
28
+ <Phone>
29
+ <PhoneType>DEFAULT</PhoneType>
30
+ </Phone>
31
+ <Phone>
32
+ <PhoneType>FAX</PhoneType>
33
+ </Phone>
34
+ </Phones>
35
+ <UpdatedDateUTC>2009-09-21T23:07:47.49</UpdatedDateUTC>
36
+ <IsSupplier>false</IsSupplier>
37
+ <IsCustomer>true</IsCustomer>
38
+ </Contact>
39
+ <DueDate>2009-10-27T00:00:00</DueDate>
40
+ <Status>DRAFT</Status>
41
+ <LineAmountTypes>Exclusive</LineAmountTypes>
42
+ <LineItems>
43
+ <LineItem>
44
+ <Description>(17 Oct) something</Description>
45
+ <Quantity>30.0000</Quantity>
46
+ <UnitAmount>100.00</UnitAmount>
47
+ <TaxType>OUTPUT</TaxType>
48
+ <TaxAmount>375.00</TaxAmount>
49
+ <LineAmount>3000.00</LineAmount>
50
+ <AccountCode>200</AccountCode>
51
+ </LineItem>
52
+ </LineItems>
53
+ <SubTotal>3000.00</SubTotal>
54
+ <TotalTax>375.00</TotalTax>
55
+ <Total>3375.00</Total>
56
+ <UpdatedDateUTC>2009-10-17T09:17:47.427</UpdatedDateUTC>
57
+ <CurrencyCode>NZD</CurrencyCode>
58
+ <InvoiceID>a99a9aaa-9999-99a9-9aa9-aaaaaa9a9999</InvoiceID>
59
+ <InvoiceNumber>INV-0001</InvoiceNumber>
60
+ <AmountDue>3375.00</AmountDue>
61
+ <AmountPaid>0.00</AmountPaid>
62
+ </Invoice>
63
+ </Invoices>
64
+ </Response>
@@ -0,0 +1,69 @@
1
+ <Response xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
2
+ <Id>e1cbda82-62a0-4493-96c0-2dc1de206b2d</Id>
3
+ <Status>OK</Status>
4
+ <ProviderName>Test Provider Name</ProviderName>
5
+ <DateTimeUTC>2010-12-20T04:13:48.673583Z</DateTimeUTC>
6
+ <CreditNotes>
7
+ <CreditNote>
8
+ <Contact>
9
+ <ContactID>1b2be6e9-8d58-4da9-aaf8-4fe5471b653c</ContactID>
10
+ <ContactStatus>ACTIVE</ContactStatus>
11
+ <Name>Hamilton Smith Pty</Name>
12
+ <EmailAddress>info@hsg.co</EmailAddress>
13
+ <Addresses>
14
+ <Address>
15
+ <AddressType>STREET</AddressType>
16
+ </Address>
17
+ <Address>
18
+ <AddressType>POBOX</AddressType>
19
+ <AddressLine1>3 Park Street Industrial Village
20
+ </AddressLine1>
21
+ <AddressLine2>Southbank</AddressLine2>
22
+ <City>Melbourne</City>
23
+ <PostalCode>3331</PostalCode>
24
+ </Address>
25
+ </Addresses>
26
+ <Phones>
27
+ <Phone>
28
+ <PhoneType>DDI</PhoneType>
29
+ </Phone>
30
+ <Phone>
31
+ <PhoneType>FAX</PhoneType>
32
+ </Phone>
33
+ <Phone>
34
+ <PhoneType>DEFAULT</PhoneType>
35
+ <PhoneNumber>3189080</PhoneNumber>
36
+ <PhoneAreaCode>03</PhoneAreaCode>
37
+ </Phone>
38
+ <Phone>
39
+ <PhoneType>MOBILE</PhoneType>
40
+ </Phone>
41
+ </Phones>
42
+ <UpdatedDateUTC>2010-12-09T19:28:52.123</UpdatedDateUTC>
43
+ </Contact>
44
+ <Date>2010-09-17T00:00:00</Date>
45
+ <DueDate>2010-09-17T00:00:00</DueDate>
46
+ <Status>PAID</Status>
47
+ <LineAmountTypes>Exclusive</LineAmountTypes>
48
+ <LineItems>
49
+ <LineItem>
50
+ <Description>Duplicate invoice sent in error for last month - fully credited</Description>
51
+ <UnitAmount>500.00</UnitAmount>
52
+ <TaxType>OUTPUT</TaxType>
53
+ <TaxAmount>50.00</TaxAmount>
54
+ <LineAmount>500.00</LineAmount>
55
+ <AccountCode>200</AccountCode>
56
+ <Quantity>1.0000</Quantity>
57
+ </LineItem>
58
+ </LineItems>
59
+ <SubTotal>500.00</SubTotal>
60
+ <TotalTax>50.00</TotalTax>
61
+ <Total>550.00</Total>
62
+ <UpdatedDateUTC>2010-11-26T01:57:46.237</UpdatedDateUTC>
63
+ <CurrencyCode>AUD</CurrencyCode>
64
+ <FullyPaidOnDate>2010-09-17T00:00:00</FullyPaidOnDate>
65
+ <CreditNoteID>371cd138-1e5c-4ec1-a8c6-a1c10e8bdab1</CreditNoteID>
66
+ <CreditNoteNumber>CR1003</CreditNoteNumber>
67
+ </CreditNote>
68
+ </CreditNotes>
69
+ </Response>
@@ -0,0 +1 @@
1
+ <Response xmlns:i="http://www.w3.org/2001/XMLSchema-instance"><Errors><Error><Description>Invoice with invoice number 123 does not exist for this organisation</Description><Exception><DateTime>2008-12-05T21:03:15.4445759Z</DateTime><ExceptionType>Xero.API.Library.Exceptions.ObjectDoesNotExistException</ExceptionType><Message>The resource you're looking for cannot be found</Message><Source>Xero.API.Library</Source><StackTrace> at Xero.API.Library.Services.InvoiceService.GetInvoice(Guid organisationID, String invoiceNumber) in D:\Projects\network\project\Xero.API.Library\Services\InvoiceService.cs:line 508 at Xero.API.Web.Controllers.InvoiceController.Get(String apiKey, String xeroKey, String invoiceID, String invoiceNumber) in D:\Projects\network\project\Xero.API.Web\Controllers\InvoiceController.cs:line 37</StackTrace></Exception></Error></Errors><ID>eaf9db6c-d3b2-49e8-939a-d9f23cc7c412</ID><Status>InternalServerError</Status><ProviderName>YOUR PROVIDER</ProviderName><DateTimeUTC>2008-12-05T21:03:15.3508067Z</DateTimeUTC></Response>
@@ -0,0 +1,149 @@
1
+ <Response xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
2
+ <Id>f7ad1646-e90f-4ec6-bb62-903abd8eba7f</Id>
3
+ <Status>OK</Status>
4
+ <ProviderName>Appcordion Private</ProviderName>
5
+ <DateTimeUTC>2010-12-21T01:01:09.0353353Z</DateTimeUTC>
6
+ <CreditNotes>
7
+ <CreditNote>
8
+ <Contact>
9
+ <ContactID>d0cd2c4f-18a0-4f7c-a32a-2db00f29d298</ContactID>
10
+ <Name>PC Complete</Name>
11
+ </Contact>
12
+ <Date>2010-09-22T00:00:00</Date>
13
+ <DueDate>2010-09-22T00:00:00</DueDate>
14
+ <Status>PAID</Status>
15
+ <LineAmountTypes>Exclusive</LineAmountTypes>
16
+ <SubTotal>199.00</SubTotal>
17
+ <TotalTax>19.90</TotalTax>
18
+ <Total>218.90</Total>
19
+ <UpdatedDateUTC>2010-11-23T23:40:09.45</UpdatedDateUTC>
20
+ <CurrencyCode>AUD</CurrencyCode>
21
+ <FullyPaidOnDate>2010-09-27T00:00:00</FullyPaidOnDate>
22
+ <CreditNoteID>7df8949c-b71f-40c0-bbcf-39f2f450f286</CreditNoteID>
23
+ <CreditNoteNumber>03391</CreditNoteNumber>
24
+ </CreditNote>
25
+ <CreditNote>
26
+ <Contact>
27
+ <ContactID>0f471ca5-15c9-405e-a1b9-7cc35194b673</ContactID>
28
+ <Name>Party Hire</Name>
29
+ </Contact>
30
+ <Date>2010-11-11T00:00:00</Date>
31
+ <DueDate>2010-11-11T00:00:00</DueDate>
32
+ <Status>PAID</Status>
33
+ <LineAmountTypes>Exclusive</LineAmountTypes>
34
+ <SubTotal>200.00</SubTotal>
35
+ <TotalTax>0.00</TotalTax>
36
+ <Total>200.00</Total>
37
+ <UpdatedDateUTC>2010-11-26T23:33:28.027</UpdatedDateUTC>
38
+ <CurrencyCode>AUD</CurrencyCode>
39
+ <FullyPaidOnDate>2010-10-25T00:00:00</FullyPaidOnDate>
40
+ <CreditNoteID>4f67130a-749a-4ee6-98b2-743adbc11245</CreditNoteID>
41
+ </CreditNote>
42
+ <CreditNote>
43
+ <Contact>
44
+ <ContactID>0a4cf37b-a1a8-4753-9ee2-f9207f63a8ff</ContactID>
45
+ <Name>City Limousines</Name>
46
+ </Contact>
47
+ <Date>2010-11-07T00:00:00</Date>
48
+ <Status>AUTHORISED</Status>
49
+ <LineAmountTypes>Exclusive</LineAmountTypes>
50
+ <SubTotal>55.00</SubTotal>
51
+ <TotalTax>5.50</TotalTax>
52
+ <Total>60.50</Total>
53
+ <UpdatedDateUTC>2011-01-18T22:42:56.203</UpdatedDateUTC>
54
+ <CurrencyCode>AUD</CurrencyCode>
55
+ <CreditNoteID>b356e488-2678-4be4-ad4b-d294df2d48d6</CreditNoteID>
56
+ <CreditNoteNumber>ORC-C-1037</CreditNoteNumber>
57
+ </CreditNote>
58
+ <CreditNote>
59
+ <Contact>
60
+ <ContactID>1b2be6e9-8d58-4da9-aaf8-4fe5471b653c</ContactID>
61
+ <Name>Hamilton Smith Pty</Name>
62
+ </Contact>
63
+ <Date>2010-09-17T00:00:00</Date>
64
+ <DueDate>2010-09-17T00:00:00</DueDate>
65
+ <Status>PAID</Status>
66
+ <LineAmountTypes>Exclusive</LineAmountTypes>
67
+ <SubTotal>500.00</SubTotal>
68
+ <TotalTax>50.00</TotalTax>
69
+ <Total>550.00</Total>
70
+ <UpdatedDateUTC>2010-11-26T01:57:46.237</UpdatedDateUTC>
71
+ <CurrencyCode>AUD</CurrencyCode>
72
+ <FullyPaidOnDate>2010-09-17T00:00:00</FullyPaidOnDate>
73
+ <CreditNoteID>371cd138-1e5c-4ec1-a8c6-a1c10e8bdab1</CreditNoteID>
74
+ <CreditNoteNumber>CR1003</CreditNoteNumber>
75
+ </CreditNote>
76
+ <CreditNote>
77
+ <Contact>
78
+ <ContactID>571a2414-81ff-4f8f-8498-d91d83793131</ContactID>
79
+ <Name>Bank West</Name>
80
+ </Contact>
81
+ <Date>2010-09-22T00:00:00</Date>
82
+ <DueDate>2010-09-22T00:00:00</DueDate>
83
+ <Status>PAID</Status>
84
+ <LineAmountTypes>Exclusive</LineAmountTypes>
85
+ <SubTotal>500.00</SubTotal>
86
+ <TotalTax>50.00</TotalTax>
87
+ <Total>550.00</Total>
88
+ <UpdatedDateUTC>2010-11-24T20:58:31.893</UpdatedDateUTC>
89
+ <CurrencyCode>AUD</CurrencyCode>
90
+ <FullyPaidOnDate>2010-09-22T00:00:00</FullyPaidOnDate>
91
+ <CreditNoteID>50e98404-2fba-4031-af67-8ba4bb227c44</CreditNoteID>
92
+ <CreditNoteNumber>CR1005</CreditNoteNumber>
93
+ </CreditNote>
94
+ <CreditNote>
95
+ <Contact>
96
+ <ContactID>860b99a9-0958-4c8d-a98f-bb1f092b16bb</ContactID>
97
+ <Name>DIISR - Small Business Services</Name>
98
+ </Contact>
99
+ <Date>2010-10-07T00:00:00</Date>
100
+ <DueDate>2010-10-07T00:00:00</DueDate>
101
+ <Status>PAID</Status>
102
+ <LineAmountTypes>Exclusive</LineAmountTypes>
103
+ <SubTotal>24.00</SubTotal>
104
+ <TotalTax>2.40</TotalTax>
105
+ <Total>26.40</Total>
106
+ <UpdatedDateUTC>2010-11-24T21:35:37.3</UpdatedDateUTC>
107
+ <CurrencyCode>AUD</CurrencyCode>
108
+ <FullyPaidOnDate>2010-10-09T00:00:00</FullyPaidOnDate>
109
+ <CreditNoteID>3bffc09b-79f2-490d-b91b-c59b700b43a4</CreditNoteID>
110
+ <CreditNoteNumber>CR1001</CreditNoteNumber>
111
+ </CreditNote>
112
+ <CreditNote>
113
+ <Contact>
114
+ <ContactID>ef6f54c1-eb45-4956-b8cd-1be82ad665f2</ContactID>
115
+ <Name>Maddox Publishing Group</Name>
116
+ </Contact>
117
+ <Date>2010-10-26T00:00:00</Date>
118
+ <DueDate>2010-10-26T00:00:00</DueDate>
119
+ <Status>PAID</Status>
120
+ <LineAmountTypes>Exclusive</LineAmountTypes>
121
+ <SubTotal>350.00</SubTotal>
122
+ <TotalTax>35.00</TotalTax>
123
+ <Total>385.00</Total>
124
+ <UpdatedDateUTC>2010-12-01T02:26:10.383</UpdatedDateUTC>
125
+ <CurrencyCode>AUD</CurrencyCode>
126
+ <FullyPaidOnDate>2010-11-08T00:00:00</FullyPaidOnDate>
127
+ <CreditNoteID>482c018b-d329-4e05-9b4f-7a4cfc695aa0</CreditNoteID>
128
+ <CreditNoteNumber>CR1014</CreditNoteNumber>
129
+ </CreditNote>
130
+ <CreditNote>
131
+ <Contact>
132
+ <ContactID>860b99a9-0958-4c8d-a98f-bb1f092b16bb</ContactID>
133
+ <Name>DIISR - Small Business Services</Name>
134
+ </Contact>
135
+ <Date>2010-12-08T00:00:00</Date>
136
+ <DueDate>2010-12-08T00:00:00</DueDate>
137
+ <Status>PAID</Status>
138
+ <LineAmountTypes>Exclusive</LineAmountTypes>
139
+ <SubTotal>1050.00</SubTotal>
140
+ <TotalTax>105.00</TotalTax>
141
+ <Total>1155.00</Total>
142
+ <UpdatedDateUTC>2010-12-09T05:24:57.07</UpdatedDateUTC>
143
+ <CurrencyCode>AUD</CurrencyCode>
144
+ <FullyPaidOnDate>2011-01-17T00:00:00</FullyPaidOnDate>
145
+ <CreditNoteID>43c678ee-f357-48e2-b192-b6e3634762f9</CreditNoteID>
146
+ <CreditNoteNumber>1026C</CreditNoteNumber>
147
+ </CreditNote>
148
+ </CreditNotes>
149
+ </Response>
@@ -0,0 +1,12 @@
1
+ <Response xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
2
+ <Id>f259293f-5af4-4951-b31d-2f42098c8093</Id>
3
+ <Status>OK</Status>
4
+ <ProviderName>Appcordion Private</ProviderName>
5
+ <DateTimeUTC>2010-12-21T01:01:37.4579379Z</DateTimeUTC>
6
+ <Currencies>
7
+ <Currency>
8
+ <Code>AUD</Code>
9
+ <Description>Australian Dollar</Description>
10
+ </Currency>
11
+ </Currencies>
12
+ </Response>
@@ -0,0 +1 @@
1
+ <html><head><title>Object moved</title></head><body><h2>Object moved to <a href="%2fLogin.xro%2fLogin%3fReturnUrl%3d%252fapi.xro%252f1.0%252finvoice%253fapiKey%253dAN_INVALID_API_KEY%2526xeroKey%253dYWZIMZQ3ZGVJMME1NDCWNTK3YWZMNW%2526invoiceID%253dAN_INVALID_ID%26apiKey%3dAN_INVALID_API_KEY%26xeroKey%3dYWZIMZQ3ZGVJMME1NDCWNTK3YWZMNW%26invoiceID%3dAN_INVALID_ID">here</a>.</h2></body></html>
@@ -0,0 +1 @@
1
+ oauth_problem=token_rejected&oauth_problem_advice=Unknown%20consumer
@@ -0,0 +1 @@
1
+ oauth_problem=token_rejected&oauth_problem_advice=Unexpected%20token
@@ -0,0 +1,91 @@
1
+ <Response xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
2
+ <Id>0642dd56-2d39-4567-8e7c-4732d94799c1</Id>
3
+ <Status>OK</Status>
4
+ <ProviderName>Test Provider Name</ProviderName>
5
+ <DateTimeUTC>2010-12-20T04:13:56.6112862Z</DateTimeUTC>
6
+ <Invoices>
7
+ <Invoice>
8
+ <Contact>
9
+ <ContactID>1b2be6e9-8d58-4da9-aaf8-4fe5471b653c</ContactID>
10
+ <ContactStatus>ACTIVE</ContactStatus>
11
+ <Name>Hamilton Smith Pty</Name>
12
+ <EmailAddress>info@hsg.co</EmailAddress>
13
+ <Addresses>
14
+ <Address>
15
+ <AddressType>STREET</AddressType>
16
+ </Address>
17
+ <Address>
18
+ <AddressType>POBOX</AddressType>
19
+ <AddressLine1>3 Park Street Industrial Village
20
+ </AddressLine1>
21
+ <AddressLine2>Southbank</AddressLine2>
22
+ <City>Melbourne</City>
23
+ <PostalCode>3331</PostalCode>
24
+ </Address>
25
+ </Addresses>
26
+ <Phones>
27
+ <Phone>
28
+ <PhoneType>DDI</PhoneType>
29
+ </Phone>
30
+ <Phone>
31
+ <PhoneType>FAX</PhoneType>
32
+ </Phone>
33
+ <Phone>
34
+ <PhoneType>DEFAULT</PhoneType>
35
+ <PhoneNumber>3189080</PhoneNumber>
36
+ <PhoneAreaCode>03</PhoneAreaCode>
37
+ </Phone>
38
+ <Phone>
39
+ <PhoneType>MOBILE</PhoneType>
40
+ </Phone>
41
+ </Phones>
42
+ <UpdatedDateUTC>2010-12-09T19:28:52.123</UpdatedDateUTC>
43
+ <ContactGroups>
44
+ <ContactGroup>
45
+ <ContactGroupID>26fcca8d-a03b-4968-a80a-a463d5bf30ee</ContactGroupID>
46
+ <Name>Support Clients (monthly)</Name>
47
+ <Status>ACTIVE</Status>
48
+ </ContactGroup>
49
+ </ContactGroups>
50
+ <IsSupplier>false</IsSupplier>
51
+ <IsCustomer>true</IsCustomer>
52
+ </Contact>
53
+ <Date>2010-10-09T00:00:00</Date>
54
+ <DueDate>2010-10-18T00:00:00</DueDate>
55
+ <Status>PAID</Status>
56
+ <LineAmountTypes>Exclusive</LineAmountTypes>
57
+ <LineItems>
58
+ <LineItem>
59
+ <Description>Desktop/network support via email &amp; phone.
60
+ Per month fixed fee for minimum 20 hours/month.</Description>
61
+ <UnitAmount>500.00</UnitAmount>
62
+ <TaxType>OUTPUT</TaxType>
63
+ <TaxAmount>50.00</TaxAmount>
64
+ <LineAmount>500.00</LineAmount>
65
+ <AccountCode>200</AccountCode>
66
+ <Quantity>1.0000</Quantity>
67
+ </LineItem>
68
+ </LineItems>
69
+ <SubTotal>500.00</SubTotal>
70
+ <TotalTax>50.00</TotalTax>
71
+ <Total>550.00</Total>
72
+ <UpdatedDateUTC>2010-12-02T17:14:39.943</UpdatedDateUTC>
73
+ <CurrencyCode>AUD</CurrencyCode>
74
+ <FullyPaidOnDate>2010-10-18T00:00:00</FullyPaidOnDate>
75
+ <Type>ACCREC</Type>
76
+ <InvoiceID>b2c02d0b-41a8-4d4d-97d7-014c78b3547d</InvoiceID>
77
+ <InvoiceNumber>ORC1016</InvoiceNumber>
78
+ <Reference>Monthly support</Reference>
79
+ <Payments>
80
+ <Payment>
81
+ <Date>2010-10-18T00:00:00</Date>
82
+ <Amount>550.00</Amount>
83
+ <PaymentID>26c6252a-2759-48a8-824c-e6589a292140</PaymentID>
84
+ </Payment>
85
+ </Payments>
86
+ <AmountDue>0.00</AmountDue>
87
+ <AmountPaid>550.00</AmountPaid>
88
+ <AmountCredited>0.00</AmountCredited>
89
+ </Invoice>
90
+ </Invoices>
91
+ </Response>