|
2564 | 2564 | "items" : {
|
2565 | 2565 | "$ref" : "#/components/schemas/ValidationError"
|
2566 | 2566 | }
|
| 2567 | + }, |
| 2568 | + "InvoiceAddresses" : { |
| 2569 | + "type" : "array", |
| 2570 | + "description" : "An array of addresses used to auto calculate sales tax", |
| 2571 | + "items" : { |
| 2572 | + "$ref" : "#/components/schemas/InvoiceAddress" |
| 2573 | + } |
2567 | 2574 | }
|
2568 | 2575 | },
|
2569 | 2576 | "description" : "",
|
|
3259 | 3266 | "items" : {
|
3260 | 3267 | "$ref" : "#/components/schemas/ValidationError"
|
3261 | 3268 | }
|
| 3269 | + }, |
| 3270 | + "InvoiceAddresses" : { |
| 3271 | + "type" : "array", |
| 3272 | + "description" : "An array of addresses used to auto calculate sales tax", |
| 3273 | + "items" : { |
| 3274 | + "$ref" : "#/components/schemas/InvoiceAddress" |
| 3275 | + } |
3262 | 3276 | }
|
3263 | 3277 | },
|
3264 | 3278 | "description" : "",
|
3265 | 3279 | "externalDocs" : {
|
3266 | 3280 | "url" : "http://developer.xero.com/documentation/api/invoices/"
|
3267 | 3281 | }
|
| 3282 | +}; |
| 3283 | + defs["InvoiceAddress"] = { |
| 3284 | + "title" : "", |
| 3285 | + "type" : "object", |
| 3286 | + "properties" : { |
| 3287 | + "InvoiceAddressType" : { |
| 3288 | + "type" : "string", |
| 3289 | + "description" : "Indicates whether the address is defined as origin (FROM) or destination (TO)", |
| 3290 | + "enum" : [ "FROM", "TO" ] |
| 3291 | + }, |
| 3292 | + "AddressLine1" : { |
| 3293 | + "type" : "string", |
| 3294 | + "description" : "First line of a physical address" |
| 3295 | + }, |
| 3296 | + "AddressLine2" : { |
| 3297 | + "type" : "string", |
| 3298 | + "description" : "Second line of a physical address" |
| 3299 | + }, |
| 3300 | + "AddressLine3" : { |
| 3301 | + "type" : "string", |
| 3302 | + "description" : "Third line of a physical address" |
| 3303 | + }, |
| 3304 | + "AddressLine4" : { |
| 3305 | + "type" : "string", |
| 3306 | + "description" : "Fourth line of a physical address" |
| 3307 | + }, |
| 3308 | + "City" : { |
| 3309 | + "type" : "string", |
| 3310 | + "description" : "City of a physical address" |
| 3311 | + }, |
| 3312 | + "Region" : { |
| 3313 | + "type" : "string", |
| 3314 | + "description" : "Region or state of a physical address" |
| 3315 | + }, |
| 3316 | + "PostalCode" : { |
| 3317 | + "type" : "string", |
| 3318 | + "description" : "Postal code of a physical address" |
| 3319 | + }, |
| 3320 | + "Country" : { |
| 3321 | + "type" : "string", |
| 3322 | + "description" : "Country of a physical address" |
| 3323 | + } |
| 3324 | + }, |
| 3325 | + "description" : "" |
3268 | 3326 | };
|
3269 | 3327 | defs["InvoiceReminder"] = {
|
3270 | 3328 | "title" : "",
|
|
3660 | 3718 | "description" : "The Xero identifier for a Repeating Invoice",
|
3661 | 3719 | "format" : "uuid",
|
3662 | 3720 | "example" : "00000000-0000-0000-0000-000000000000"
|
| 3721 | + }, |
| 3722 | + "Taxability" : { |
| 3723 | + "type" : "string", |
| 3724 | + "description" : "The type of taxability", |
| 3725 | + "enum" : [ "TAXABLE", "NON_TAXABLE", "EXEMPT", "PART_TAXABLE", "NOT_APPLICABLE" ] |
| 3726 | + }, |
| 3727 | + "SalesTaxCodeId" : { |
| 3728 | + "type" : "number", |
| 3729 | + "description" : "The ID of the sales tax code" |
| 3730 | + }, |
| 3731 | + "TaxBreakdown" : { |
| 3732 | + "type" : "array", |
| 3733 | + "description" : "An array of tax components defined for this line item", |
| 3734 | + "items" : { |
| 3735 | + "$ref" : "#/components/schemas/TaxBreakdownComponent" |
| 3736 | + } |
3663 | 3737 | }
|
3664 | 3738 | },
|
3665 | 3739 | "description" : "",
|
|
5699 | 5773 | "externalDocs" : {
|
5700 | 5774 | "url" : "https://developer.xero.com/documentation/api-guides/conversions"
|
5701 | 5775 | }
|
| 5776 | +}; |
| 5777 | + defs["TaxBreakdownComponent"] = { |
| 5778 | + "title" : "", |
| 5779 | + "type" : "object", |
| 5780 | + "properties" : { |
| 5781 | + "TaxComponentId" : { |
| 5782 | + "type" : "string", |
| 5783 | + "description" : "The unique ID number of this component", |
| 5784 | + "format" : "uuid" |
| 5785 | + }, |
| 5786 | + "Type" : { |
| 5787 | + "type" : "string", |
| 5788 | + "description" : "The type of the jurisdiction", |
| 5789 | + "enum" : [ "SYSGST/USCOUNTRY", "SYSGST/USSTATE", "SYSGST/USCOUNTY", "SYSGST/USCITY", "SYSGST/USSPECIAL" ] |
| 5790 | + }, |
| 5791 | + "Name" : { |
| 5792 | + "type" : "string", |
| 5793 | + "description" : "The name of the jurisdiction" |
| 5794 | + }, |
| 5795 | + "TaxPercentage" : { |
| 5796 | + "type" : "number", |
| 5797 | + "description" : "The percentage of the tax" |
| 5798 | + }, |
| 5799 | + "TaxAmount" : { |
| 5800 | + "type" : "number", |
| 5801 | + "description" : "The amount of the tax" |
| 5802 | + }, |
| 5803 | + "TaxableAmount" : { |
| 5804 | + "type" : "number", |
| 5805 | + "description" : "The amount that is taxable" |
| 5806 | + }, |
| 5807 | + "NonTaxableAmount" : { |
| 5808 | + "type" : "number", |
| 5809 | + "description" : "The amount that is not taxable" |
| 5810 | + }, |
| 5811 | + "ExemptAmount" : { |
| 5812 | + "type" : "number", |
| 5813 | + "description" : "The amount that is exempt" |
| 5814 | + }, |
| 5815 | + "StateAssignedNo" : { |
| 5816 | + "type" : "string", |
| 5817 | + "description" : "The state assigned number of the jurisdiction" |
| 5818 | + }, |
| 5819 | + "JurisdictionRegion" : { |
| 5820 | + "type" : "string", |
| 5821 | + "description" : "Name identifying the region within the country" |
| 5822 | + } |
| 5823 | + }, |
| 5824 | + "description" : "" |
5702 | 5825 | };
|
5703 | 5826 | defs["TaxComponent"] = {
|
5704 | 5827 | "title" : "",
|
|
6216 | 6339 | <nav id="scrollingNav">
|
6217 | 6340 | <ul class="sidenav nav nav-list">
|
6218 | 6341 | <li class="nav-header" data-group="Accounting"><strong>SDK: </strong><span id='sdk-name'></span></li>
|
6219 |
| - <li class="nav-header" data-group="Accounting"><strong>VSN: </strong>9.2.0</li> |
| 6342 | + <li class="nav-header" data-group="Accounting"><strong>VSN: </strong>9.3.0</li> |
6220 | 6343 | <li class="nav-header" data-group="Accounting"><a href="#api-Accounting">Methods</a></li>
|
6221 | 6344 | <li data-group="Accounting" data-name="createAccount" class="">
|
6222 | 6345 | <a href="#api-Accounting-createAccount">createAccount</a>
|
|
0 commit comments