Skip to content

Commit 6f79084

Browse files
committed
progress
1 parent f20cb20 commit 6f79084

8 files changed

Lines changed: 129 additions & 129 deletions

File tree

docs/accounting/AccountingApi.md

Lines changed: 66 additions & 66 deletions
Large diffs are not rendered by default.

docs/assets/AssetApi.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -382,11 +382,11 @@ opts = {
382382

383383
page_size: 5, # Integer | The number of records returned per page. By default the number of records returned is 10.
384384

385-
order_by: AssetType, # String | Requests can be ordered by AssetType, AssetName, AssetNumber, PurchaseDate and PurchasePrice. If the asset status is DISPOSED it also allows DisposalDate and DisposalPrice.
385+
order_by: 'AssetType', # String | Requests can be ordered by AssetType, AssetName, AssetNumber, PurchaseDate and PurchasePrice. If the asset status is DISPOSED it also allows DisposalDate and DisposalPrice.
386386

387-
sort_direction: asc, # String | ASC or DESC
387+
sort_direction: 'asc', # String | ASC or DESC
388388

389-
filter_by: Company Car # String | A string that can be used to filter the list to only return assets containing the text. Checks it against the AssetName, AssetNumber, Description and AssetTypeName fields.
389+
filter_by: 'Company Car' # String | A string that can be used to filter the list to only return assets containing the text. Checks it against the AssetName, AssetNumber, Description and AssetTypeName fields.
390390
}
391391

392392
begin

docs/files/FilesApi.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -660,7 +660,7 @@ opts = {
660660

661661
page: 2, # Integer | number of records to skip for pagination
662662

663-
sort: Name # String | values to sort by
663+
sort: 'Name' # String | values to sort by
664664
}
665665

666666
begin
@@ -797,7 +797,7 @@ api_instance = xero_client.<api_set>
797797

798798
xero_tenant_id = 'YOUR_XERO_TENANT_ID' # String | Xero identifier for Tenant
799799
opts = {
800-
sort: Name # String | values to sort by
800+
sort: 'Name' # String | values to sort by
801801
}
802802

803803
begin
@@ -1070,7 +1070,7 @@ body = 'body_example' # String |
10701070
name = 'name_example' # String | exact name of the file you are uploading
10711071
filename = 'filename_example' # String |
10721072
opts = {
1073-
mime_type: mime_type_example # String |
1073+
mime_type: 'mime_type_example' # String |
10741074
}
10751075

10761076
begin
@@ -1144,7 +1144,7 @@ body = 'body_example' # String |
11441144
name = 'name_example' # String | exact name of the file you are uploading
11451145
filename = 'filename_example' # String |
11461146
opts = {
1147-
mime_type: mime_type_example # String |
1147+
mime_type: 'mime_type_example' # String |
11481148
}
11491149

11501150
begin

docs/finance/FinanceApi.md

Lines changed: 18 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -54,9 +54,9 @@ api_instance = xero_client.<api_set>
5454

5555
xero_tenant_id = 'YOUR_XERO_TENANT_ID' # String | Xero identifier for Tenant
5656
opts = {
57-
start_month: 2020-09, # String | date, yyyy-MM If no parameter is provided, the month 12 months prior to the end month will be used. Account usage for up to 12 months from this date will be returned.
57+
start_month: '2020-09', # String | date, yyyy-MM If no parameter is provided, the month 12 months prior to the end month will be used. Account usage for up to 12 months from this date will be returned.
5858

59-
end_month: 2021-09 # String | date, yyyy-MM If no parameter is provided, the current month will be used. Account usage for up to 12 months prior to this date will be returned.
59+
end_month: '2021-09' # String | date, yyyy-MM If no parameter is provided, the current month will be used. Account usage for up to 12 months prior to this date will be returned.
6060
}
6161

6262
begin
@@ -126,7 +126,7 @@ api_instance = xero_client.<api_set>
126126

127127
xero_tenant_id = 'YOUR_XERO_TENANT_ID' # String | Xero identifier for Tenant
128128
opts = {
129-
end_date: 2021-09-15 # String | date, yyyy-MM-dd If no parameter is provided, the current date will be used. Any changes to hard or soft lock dates that were made within the period up to 12 months before this date will be returned. Please be aware that there may be a delay of up to 3 days before a change is visible from this API.
129+
end_date: '2021-09-15' # String | date, yyyy-MM-dd If no parameter is provided, the current date will be used. Any changes to hard or soft lock dates that were made within the period up to 12 months before this date will be returned. Please be aware that there may be a delay of up to 3 days before a change is visible from this API.
130130
}
131131

132132
begin
@@ -195,7 +195,7 @@ api_instance = xero_client.<api_set>
195195

196196
xero_tenant_id = 'YOUR_XERO_TENANT_ID' # String | Xero identifier for Tenant
197197
opts = {
198-
end_date: 2021-09-15 # String | date, yyyy-MM-dd If no parameter is provided, the current date will be used. Any reports that were published within the period up to 12 months before this date will be returned. Please be aware that there may be a delay of up to 3 days before a published report is visible from this API.
198+
end_date: '2021-09-15' # String | date, yyyy-MM-dd If no parameter is provided, the current date will be used. Any reports that were published within the period up to 12 months before this date will be returned. Please be aware that there may be a delay of up to 3 days before a published report is visible from this API.
199199
}
200200

201201
begin
@@ -264,7 +264,7 @@ api_instance = xero_client.<api_set>
264264

265265
xero_tenant_id = 'YOUR_XERO_TENANT_ID' # String | Xero identifier for Tenant
266266
opts = {
267-
data_month: 2021-09 # String | date, yyyy-MM The specified month must be complete (in the past); The current month cannot be specified since it is not complete. If no parameter is provided, the month immediately previous to the current month will be used. Any user activities occurring within the specified month will be returned. Please be aware that there may be a delay of up to 3 days before a user activity is visible from this API.
267+
data_month: '2021-09' # String | date, yyyy-MM The specified month must be complete (in the past); The current month cannot be specified since it is not complete. If no parameter is provided, the month immediately previous to the current month will be used. Any user activities occurring within the specified month will be returned. Please be aware that there may be a delay of up to 3 days before a user activity is visible from this API.
268268
}
269269

270270
begin
@@ -408,11 +408,11 @@ api_instance = xero_client.<api_set>
408408

409409
xero_tenant_id = 'YOUR_XERO_TENANT_ID' # String | Xero identifier for Tenant
410410
opts = {
411-
balance_date: 2021-09-15, # String | date, yyyy-MM-dd If no parameter is provided, the current date will be used. The ‘balance date’ will return transactions based on the accounting date entered by the user. Transactions before the balanceDate will be included. The user has discretion as to which accounting period the transaction relates to. The ‘balance date’ will control the latest maximum date of transactions included in the aggregate numbers. Balance date does not affect the CurrentStatement object, as this will always return the most recent statement before asAtSystemDate (if specified)
411+
balance_date: '2021-09-15', # String | date, yyyy-MM-dd If no parameter is provided, the current date will be used. The ‘balance date’ will return transactions based on the accounting date entered by the user. Transactions before the balanceDate will be included. The user has discretion as to which accounting period the transaction relates to. The ‘balance date’ will control the latest maximum date of transactions included in the aggregate numbers. Balance date does not affect the CurrentStatement object, as this will always return the most recent statement before asAtSystemDate (if specified)
412412

413-
as_at_system_date: 2021-09-15, # String | date, yyyy-MM-dd If no parameter is provided, the current date will be used. The ‘as at’ date will return transactions based on the creation date. It reflects the date the transactions were entered into Xero, not the accounting date. The ‘as at’ date can not be overridden by the user. This can be used to estimate a ‘historical frequency of reconciliation’. The ‘as at’ date will affect the current statement in the response, as any candidate statements created after this date will be filtered out. Thus the current statement returned will be the most recent statement prior to the specified ‘as at’ date. Be aware that neither the begin date, nor the balance date, will affect the current statement. Note; information is only presented when system architecture allows, meaning historical cash validation information will be an estimate. In addition, delete events are not aware of the ‘as at’ functionality in this endpoint, meaning that transactions deleted at the time the API is accessed will be considered to always have been deleted.
413+
as_at_system_date: '2021-09-15', # String | date, yyyy-MM-dd If no parameter is provided, the current date will be used. The ‘as at’ date will return transactions based on the creation date. It reflects the date the transactions were entered into Xero, not the accounting date. The ‘as at’ date can not be overridden by the user. This can be used to estimate a ‘historical frequency of reconciliation’. The ‘as at’ date will affect the current statement in the response, as any candidate statements created after this date will be filtered out. Thus the current statement returned will be the most recent statement prior to the specified ‘as at’ date. Be aware that neither the begin date, nor the balance date, will affect the current statement. Note; information is only presented when system architecture allows, meaning historical cash validation information will be an estimate. In addition, delete events are not aware of the ‘as at’ functionality in this endpoint, meaning that transactions deleted at the time the API is accessed will be considered to always have been deleted.
414414

415-
begin_date: 2021-09-15 # String | date, yyyy-MM-dd If no parameter is provided, the aggregate results will be drawn from the user’s total history. The ‘begin date’ will return transactions based on the accounting date entered by the user. Transactions after the beginDate will be included. The user has discretion as to which accounting period the transaction relates to.
415+
begin_date: '2021-09-15' # String | date, yyyy-MM-dd If no parameter is provided, the aggregate results will be drawn from the user’s total history. The ‘begin date’ will return transactions based on the accounting date entered by the user. Transactions after the beginDate will be included. The user has discretion as to which accounting period the transaction relates to.
416416
}
417417

418418
begin
@@ -483,7 +483,7 @@ api_instance = xero_client.<api_set>
483483

484484
xero_tenant_id = 'YOUR_XERO_TENANT_ID' # String | Xero identifier for Tenant
485485
opts = {
486-
balance_date: 2020-06-30 # String | Specifies the date for balance sheet report. Format yyyy-MM-dd. If no parameter is provided, the current date will be used.
486+
balance_date: '2020-06-30' # String | Specifies the date for balance sheet report. Format yyyy-MM-dd. If no parameter is provided, the current date will be used.
487487
}
488488

489489
begin
@@ -552,9 +552,9 @@ api_instance = xero_client.<api_set>
552552

553553
xero_tenant_id = 'YOUR_XERO_TENANT_ID' # String | Xero identifier for Tenant
554554
opts = {
555-
start_date: 2020-09-15, # String | Date e.g. yyyy-MM-dd Specifies the start date for cash flow report. If no parameter is provided, the date of 12 months before the end date will be used.
555+
start_date: '2020-09-15', # String | Date e.g. yyyy-MM-dd Specifies the start date for cash flow report. If no parameter is provided, the date of 12 months before the end date will be used.
556556

557-
end_date: 2021-09-15 # String | Date e.g. yyyy-MM-dd Specifies the end date for cash flow report. If no parameter is provided, the current date will be used.
557+
end_date: '2021-09-15' # String | Date e.g. yyyy-MM-dd Specifies the end date for cash flow report. If no parameter is provided, the current date will be used.
558558
}
559559

560560
begin
@@ -628,9 +628,9 @@ opts = {
628628

629629
include_manual_journals: true, # Boolean | Specifies whether to include the manual journals in the report. If no parameter is provided, manual journals will not be included.
630630

631-
start_date: 2020-09-15, # String | Date yyyy-MM-dd Specifies the start date for the report. If no parameter is provided, the date of 12 months before the end date will be used. It is recommended to always specify both a start date and end date; While the initial range may be set to 12 months, this may need to be reduced for high volume organisations in order to improve latency.
631+
start_date: '2020-09-15', # String | Date yyyy-MM-dd Specifies the start date for the report. If no parameter is provided, the date of 12 months before the end date will be used. It is recommended to always specify both a start date and end date; While the initial range may be set to 12 months, this may need to be reduced for high volume organisations in order to improve latency.
632632

633-
end_date: 2020-09-15 # String | Date yyyy-MM-dd Specifies the end date for the report. If no parameter is provided, the current date will be used. It is recommended to always specify both a start date and end date; While the initial range may be set to 12 months, this may need to be reduced for high volume organisations in order to improve latency.
633+
end_date: '2020-09-15' # String | Date yyyy-MM-dd Specifies the end date for the report. If no parameter is provided, the current date will be used. It is recommended to always specify both a start date and end date; While the initial range may be set to 12 months, this may need to be reduced for high volume organisations in order to improve latency.
634634
}
635635

636636
begin
@@ -706,9 +706,9 @@ opts = {
706706

707707
include_manual_journals: true, # Boolean | Specifies whether to include the manual journals in the report. If no parameter is provided, manual journals will not be included.
708708

709-
start_date: 2020-09-15, # String | Date yyyy-MM-dd Specifies the start date for the report. If no parameter is provided, the date of 12 months before the end date will be used. It is recommended to always specify both a start date and end date; While the initial range may be set to 12 months, this may need to be reduced for high volume organisations in order to improve latency.
709+
start_date: '2020-09-15', # String | Date yyyy-MM-dd Specifies the start date for the report. If no parameter is provided, the date of 12 months before the end date will be used. It is recommended to always specify both a start date and end date; While the initial range may be set to 12 months, this may need to be reduced for high volume organisations in order to improve latency.
710710

711-
end_date: 2020-09-15 # String | Date yyyy-MM-dd Specifies the end date for the report. If no parameter is provided, the current date will be used. It is recommended to always specify both a start date and end date; While the initial range may be set to 12 months, this may need to be reduced for high volume organisations in order to improve latency.
711+
end_date: '2020-09-15' # String | Date yyyy-MM-dd Specifies the end date for the report. If no parameter is provided, the current date will be used. It is recommended to always specify both a start date and end date; While the initial range may be set to 12 months, this may need to be reduced for high volume organisations in order to improve latency.
712712
}
713713

714714
begin
@@ -780,9 +780,9 @@ api_instance = xero_client.<api_set>
780780

781781
xero_tenant_id = 'YOUR_XERO_TENANT_ID' # String | Xero identifier for Tenant
782782
opts = {
783-
start_date: 2020-09-15, # String | Date e.g. yyyy-MM-dd Specifies the start date for profit and loss report If no parameter is provided, the date of 12 months before the end date will be used.
783+
start_date: '2020-09-15', # String | Date e.g. yyyy-MM-dd Specifies the start date for profit and loss report If no parameter is provided, the date of 12 months before the end date will be used.
784784

785-
end_date: 2021-09-15 # String | Date e.g. yyyy-MM-dd Specifies the end date for profit and loss report If no parameter is provided, the current date will be used.
785+
end_date: '2021-09-15' # String | Date e.g. yyyy-MM-dd Specifies the end date for profit and loss report If no parameter is provided, the current date will be used.
786786
}
787787

788788
begin
@@ -852,7 +852,7 @@ api_instance = xero_client.<api_set>
852852

853853
xero_tenant_id = 'YOUR_XERO_TENANT_ID' # String | Xero identifier for Tenant
854854
opts = {
855-
end_date: 2021-09-15 # String | Date e.g. yyyy-MM-dd Specifies the end date for trial balance report If no parameter is provided, the current date will be used.
855+
end_date: '2021-09-15' # String | Date e.g. yyyy-MM-dd Specifies the end date for trial balance report If no parameter is provided, the current date will be used.
856856
}
857857

858858
begin

0 commit comments

Comments
 (0)