-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1 from avadev/release/24.12.10
Release/24.12.10
- Loading branch information
Showing
88 changed files
with
7,848 additions
and
214 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
# AvalaraSdk::EInvoicing::V1::BatchSearch | ||
|
||
## Properties | ||
|
||
| Name | Type | Description | Notes | | ||
| ---- | ---- | ----------- | ----- | | ||
| **id** | **String** | ID of the batch search | [optional] | | ||
| **name** | **String** | Name of the batch report | [optional] | | ||
| **created_by** | **String** | Email of the user who created the batch search | [optional] | | ||
| **created** | **Time** | Timestamp when the batch search was created | [optional] | | ||
| **last_modified** | **Time** | Timestamp when the batch search was created | [optional] | | ||
| **status** | **String** | Status of the batch search | [optional] | | ||
| **error** | [**ErrorResponse**](ErrorResponse.md) | | [optional] | | ||
|
||
## Example | ||
|
||
```ruby | ||
require 'avalara_sdk' | ||
|
||
instance = AvalaraSdk::EInvoicing::V1::BatchSearch.new( | ||
id: 2f5ea4b5-4dae-445a-b3e4-9f65a61eaa99, | ||
name: Batch Search Report 1, | ||
created_by: user@example.com, | ||
created: 2024-08-01T12:34:56Z, | ||
last_modified: 2024-08-01T12:34:56Z, | ||
status: Accepted, | ||
error: null | ||
) | ||
``` | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
# AvalaraSdk::EInvoicing::V1::BatchSearchListResponse | ||
|
||
## Properties | ||
|
||
| Name | Type | Description | Notes | | ||
| ---- | ---- | ----------- | ----- | | ||
| **record_set_count** | **Integer** | The count of records in the result set | [optional] | | ||
| **next_link** | **String** | Next Link | [optional] | | ||
| **value** | [**Array<BatchSearch>**](BatchSearch.md) | | [optional] | | ||
|
||
## Example | ||
|
||
```ruby | ||
require 'avalara_sdk' | ||
|
||
instance = AvalaraSdk::EInvoicing::V1::BatchSearchListResponse.new( | ||
record_set_count: 500, | ||
next_link: TODO, | ||
value: null | ||
) | ||
``` | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
# AvalaraSdk::EInvoicing::V1::DirectorySearchResponse | ||
|
||
## Properties | ||
|
||
| Name | Type | Description | Notes | | ||
| ---- | ---- | ----------- | ----- | | ||
| **record_set_count** | **Integer** | The count of records in the result set | [optional] | | ||
| **next_link** | **String** | The next page link to get the next set of results. | [optional] | | ||
| **value** | [**Array<DirectorySearchResponseValueInner>**](DirectorySearchResponseValueInner.md) | | [optional] | | ||
|
||
## Example | ||
|
||
```ruby | ||
require 'avalara_sdk' | ||
|
||
instance = AvalaraSdk::EInvoicing::V1::DirectorySearchResponse.new( | ||
record_set_count: 500, | ||
next_link: TODO, | ||
value: null | ||
) | ||
``` | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
# AvalaraSdk::EInvoicing::V1::DirectorySearchResponseValueInner | ||
|
||
## Properties | ||
|
||
| Name | Type | Description | Notes | | ||
| ---- | ---- | ----------- | ----- | | ||
| **id** | **String** | Avalara unique ID of the participant in the directory. | [optional] | | ||
| **name** | **String** | Name of the participant (typically, the name of the business entity). | [optional] | | ||
| **network** | **String** | The network where the participant is present. | [optional] | | ||
| **registration_date** | **Date** | Registration date of the participant if available | [optional] | | ||
| **identifiers** | [**Array<DirectorySearchResponseValueInnerIdentifiersInner>**](DirectorySearchResponseValueInnerIdentifiersInner.md) | | [optional] | | ||
| **addresses** | [**Array<DirectorySearchResponseValueInnerAddressesInner>**](DirectorySearchResponseValueInnerAddressesInner.md) | | [optional] | | ||
| **supported_document_types** | [**Array<DirectorySearchResponseValueInnerSupportedDocumentTypesInner>**](DirectorySearchResponseValueInnerSupportedDocumentTypesInner.md) | | [optional] | | ||
|
||
## Example | ||
|
||
```ruby | ||
require 'avalara_sdk' | ||
|
||
instance = AvalaraSdk::EInvoicing::V1::DirectorySearchResponseValueInner.new( | ||
id: 2a27ee0cf5bcb6165ab891503652343419a8fc5fe6b406299c47d7b44aa8548c, | ||
name: Pineapple Labs ltd, | ||
network: Peppol, | ||
registration_date: null, | ||
identifiers: null, | ||
addresses: null, | ||
supported_document_types: null | ||
) | ||
``` | ||
|
26 changes: 26 additions & 0 deletions
26
docs/EInvoicing/V1/DirectorySearchResponseValueInnerAddressesInner.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
# AvalaraSdk::EInvoicing::V1::DirectorySearchResponseValueInnerAddressesInner | ||
|
||
## Properties | ||
|
||
| Name | Type | Description | Notes | | ||
| ---- | ---- | ----------- | ----- | | ||
| **line1** | **String** | Address line 1 | [optional] | | ||
| **line2** | **String** | Address line 2 | [optional] | | ||
| **city** | **String** | City | [optional] | | ||
| **state** | **String** | State | [optional] | | ||
| **country** | **String** | Country | [optional] | | ||
|
||
## Example | ||
|
||
```ruby | ||
require 'avalara_sdk' | ||
|
||
instance = AvalaraSdk::EInvoicing::V1::DirectorySearchResponseValueInnerAddressesInner.new( | ||
line1: , | ||
line2: , | ||
city: , | ||
state: , | ||
country: | ||
) | ||
``` | ||
|
20 changes: 20 additions & 0 deletions
20
docs/EInvoicing/V1/DirectorySearchResponseValueInnerIdentifiersInner.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
# AvalaraSdk::EInvoicing::V1::DirectorySearchResponseValueInnerIdentifiersInner | ||
|
||
## Properties | ||
|
||
| Name | Type | Description | Notes | | ||
| ---- | ---- | ----------- | ----- | | ||
| **name** | **String** | Peppol Participant ID if the participant is in Peppol network | [optional] | | ||
| **value** | **String** | Value of the identifier | [optional] | | ||
|
||
## Example | ||
|
||
```ruby | ||
require 'avalara_sdk' | ||
|
||
instance = AvalaraSdk::EInvoicing::V1::DirectorySearchResponseValueInnerIdentifiersInner.new( | ||
name: PeppolParticipantId, | ||
value: 9930:de112233445 | ||
) | ||
``` | ||
|
Oops, something went wrong.