dear-inventory-ruby 0.2.10.1 → 0.2.12
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.
- checksums.yaml +4 -4
- data/CHANGELOG.md +11 -0
- data/README.md +14 -4
- data/docs/Account.md +15 -15
- data/docs/Accounts.md +3 -3
- data/docs/Address.md +8 -8
- data/docs/AttachmentLine.md +5 -5
- data/docs/Bin.md +19 -0
- data/docs/Carrier.md +19 -0
- data/docs/Carriers.md +21 -0
- data/docs/Contact.md +9 -9
- data/docs/Customer.md +31 -31
- data/docs/Customers.md +3 -3
- data/docs/Error.md +2 -2
- data/docs/ExternalHeader.md +2 -2
- data/docs/InventoryApi.md +252 -64
- data/docs/Location.md +51 -0
- data/docs/Locations.md +21 -0
- data/docs/Me.md +7 -7
- data/docs/MeContact.md +33 -0
- data/docs/MeContacts.md +21 -0
- data/docs/PaymentTerm.md +4 -4
- data/docs/PaymentTerms.md +3 -3
- data/docs/PriceTier.md +2 -2
- data/docs/PriceTiers.md +1 -1
- data/docs/Sale.md +43 -43
- data/docs/SaleAdditionalCharge.md +8 -8
- data/docs/SaleInvoice.md +17 -17
- data/docs/SaleInvoiceAdditionalCharge.md +9 -9
- data/docs/SaleInvoiceDelete.md +1 -1
- data/docs/SaleInvoiceLine.md +12 -12
- data/docs/SaleInvoicePartial.md +12 -12
- data/docs/SaleInvoicePost.md +12 -12
- data/docs/SaleInvoices.md +2 -2
- data/docs/SaleItem.md +31 -31
- data/docs/SaleList.md +3 -3
- data/docs/SaleOrder.md +9 -9
- data/docs/SaleOrderLine.md +13 -13
- data/docs/SalePayment.md +14 -14
- data/docs/SalePaymentLine.md +7 -7
- data/docs/SaleQuote.md +8 -8
- data/docs/SaleQuoteLine.md +11 -11
- data/docs/ShippingAddress.md +11 -11
- data/docs/Success.md +1 -1
- data/docs/SupplierCustomerAddress.md +9 -9
- data/docs/Tax.md +5 -5
- data/docs/TaxComponent.md +3 -3
- data/docs/Taxes.md +3 -3
- data/docs/Webhook.md +10 -10
- data/docs/Webhooks.md +1 -1
- data/lib/dear-inventory-ruby/api/inventory_api.rb +193 -4
- data/lib/dear-inventory-ruby/models/bin.rb +217 -0
- data/lib/dear-inventory-ruby/models/carrier.rb +217 -0
- data/lib/dear-inventory-ruby/models/carriers.rb +229 -0
- data/lib/dear-inventory-ruby/models/location.rb +391 -0
- data/lib/dear-inventory-ruby/models/locations.rb +229 -0
- data/lib/dear-inventory-ruby/models/me_contact.rb +289 -0
- data/lib/dear-inventory-ruby/models/me_contacts.rb +229 -0
- data/lib/dear-inventory-ruby/models/supplier_customer_address.rb +7 -7
- data/lib/dear-inventory-ruby/version.rb +1 -1
- data/lib/dear-inventory-ruby.rb +7 -0
- data/spec/.DS_Store +0 -0
- data/spec/api/inventory_api_spec.rb +41 -2
- data/spec/models/bin_spec.rb +47 -0
- data/spec/models/carrier_spec.rb +47 -0
- data/spec/models/carriers_spec.rb +53 -0
- data/spec/models/location_spec.rb +143 -0
- data/spec/models/locations_spec.rb +53 -0
- data/spec/models/me_contact_spec.rb +89 -0
- data/spec/models/me_contacts_spec.rb +53 -0
- data/spec/models/supplier_customer_address_spec.rb +1 -1
- metadata +31 -7
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 0b398acfbb9c3baa9e2a9420189210b9e255eeaa20f2ae30d06e6e90d531946c
|
4
|
+
data.tar.gz: 448315fbb73cce0397599d25d04521533d69306a3ab269b8974bce458bd6de84
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 242d613f5ce9e65ce672e504bcffbfccde41bee7618f199a0d80e39969f0785c0029b0e62c1563870ee99b5eb5fd04b471427aa0a45d03313adc088d9d03e272
|
7
|
+
data.tar.gz: 9f10dab1dafd5b9590ca5cb5e0945636f2d021e3c648b0340a8bc3cc3a3a85678c293515024a5d7f64ee8fb2f522e53cc4e6df5f24287a55b565b819876ac732
|
data/CHANGELOG.md
CHANGED
@@ -2,6 +2,17 @@
|
|
2
2
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
4
4
|
|
5
|
+
## [0.2.12] - 2025-03-15
|
6
|
+
|
7
|
+
- Update `Postcode` for `SupplierCustomerAddress`
|
8
|
+
|
9
|
+
## [0.2.11] - 2024-02-21
|
10
|
+
|
11
|
+
- Add the new endpoints
|
12
|
+
+ GET `/me/contacts`
|
13
|
+
+ GET `/ref/carrier`
|
14
|
+
+ GET `/ref/location`
|
15
|
+
|
5
16
|
## [0.2.10.1] - 2024-02-06
|
6
17
|
|
7
18
|
- Update gem version
|
data/README.md
CHANGED
@@ -7,7 +7,7 @@ This specifing endpoints for DEAR Inventory API
|
|
7
7
|
This SDK is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project:
|
8
8
|
|
9
9
|
- API version: 2.0.0
|
10
|
-
- Package version: 0.2.
|
10
|
+
- Package version: 0.2.11
|
11
11
|
- Build package: org.openapitools.codegen.languages.RubyClientCodegen
|
12
12
|
For more information, please visit [https://www.nhansg.com](https://www.nhansg.com)
|
13
13
|
|
@@ -24,16 +24,16 @@ gem build dear-inventory-ruby.gemspec
|
|
24
24
|
Then either install the gem locally:
|
25
25
|
|
26
26
|
```shell
|
27
|
-
gem install ./dear-inventory-ruby-0.2.
|
27
|
+
gem install ./dear-inventory-ruby-0.2.11.gem
|
28
28
|
```
|
29
29
|
|
30
|
-
(for development, run `gem install --dev ./dear-inventory-ruby-0.2.
|
30
|
+
(for development, run `gem install --dev ./dear-inventory-ruby-0.2.11.gem` to install the development dependencies)
|
31
31
|
|
32
32
|
or publish the gem to a gem hosting service, e.g. [RubyGems](https://rubygems.org/).
|
33
33
|
|
34
34
|
Finally add this to the Gemfile:
|
35
35
|
|
36
|
-
gem 'dear-inventory-ruby', '~> 0.2.
|
36
|
+
gem 'dear-inventory-ruby', '~> 0.2.11'
|
37
37
|
|
38
38
|
### Install from Git
|
39
39
|
|
@@ -107,8 +107,11 @@ Class | Method | HTTP request | Description
|
|
107
107
|
*DearInventoryRuby::InventoryApi* | [**delete_sale_payment**](docs/InventoryApi.md#delete_sale_payment) | **DELETE** /sale/payment | Allows you to delete a sale payment
|
108
108
|
*DearInventoryRuby::InventoryApi* | [**delete_webhook**](docs/InventoryApi.md#delete_webhook) | **DELETE** /webhooks | Allows you to delete a webhook
|
109
109
|
*DearInventoryRuby::InventoryApi* | [**get_accounts**](docs/InventoryApi.md#get_accounts) | **GET** /ref/account | Allows you to retrieve the Chart of Accounts
|
110
|
+
*DearInventoryRuby::InventoryApi* | [**get_carriers**](docs/InventoryApi.md#get_carriers) | **GET** /ref/carrier | Allows you to retrieve the carriers
|
110
111
|
*DearInventoryRuby::InventoryApi* | [**get_customers**](docs/InventoryApi.md#get_customers) | **GET** /customer | Allows you to retrieve the customers
|
112
|
+
*DearInventoryRuby::InventoryApi* | [**get_locations**](docs/InventoryApi.md#get_locations) | **GET** /ref/location | Allows you to retrieve the locations
|
111
113
|
*DearInventoryRuby::InventoryApi* | [**get_me**](docs/InventoryApi.md#get_me) | **GET** /me | Allows you to retrieve your information
|
114
|
+
*DearInventoryRuby::InventoryApi* | [**get_me_contacts**](docs/InventoryApi.md#get_me_contacts) | **GET** /me/contacts | Allows you to retrieve the me contacts (Sales Representatives)
|
112
115
|
*DearInventoryRuby::InventoryApi* | [**get_payment_terms**](docs/InventoryApi.md#get_payment_terms) | **GET** /ref/paymentterm | Allows you to retrieve the payment terms
|
113
116
|
*DearInventoryRuby::InventoryApi* | [**get_price_tiers**](docs/InventoryApi.md#get_price_tiers) | **GET** /ref/priceTier | Allows you to retrieve the Price Tiers
|
114
117
|
*DearInventoryRuby::InventoryApi* | [**get_sale**](docs/InventoryApi.md#get_sale) | **GET** /sale | Allows you to retrieve the Sale
|
@@ -134,12 +137,19 @@ Class | Method | HTTP request | Description
|
|
134
137
|
- [DearInventoryRuby::Address](docs/Address.md)
|
135
138
|
- [DearInventoryRuby::AttachmentLine](docs/AttachmentLine.md)
|
136
139
|
- [DearInventoryRuby::AuthorizationType](docs/AuthorizationType.md)
|
140
|
+
- [DearInventoryRuby::Bin](docs/Bin.md)
|
141
|
+
- [DearInventoryRuby::Carrier](docs/Carrier.md)
|
142
|
+
- [DearInventoryRuby::Carriers](docs/Carriers.md)
|
137
143
|
- [DearInventoryRuby::Contact](docs/Contact.md)
|
138
144
|
- [DearInventoryRuby::Customer](docs/Customer.md)
|
139
145
|
- [DearInventoryRuby::Customers](docs/Customers.md)
|
140
146
|
- [DearInventoryRuby::Error](docs/Error.md)
|
141
147
|
- [DearInventoryRuby::ExternalHeader](docs/ExternalHeader.md)
|
148
|
+
- [DearInventoryRuby::Location](docs/Location.md)
|
149
|
+
- [DearInventoryRuby::Locations](docs/Locations.md)
|
142
150
|
- [DearInventoryRuby::Me](docs/Me.md)
|
151
|
+
- [DearInventoryRuby::MeContact](docs/MeContact.md)
|
152
|
+
- [DearInventoryRuby::MeContacts](docs/MeContacts.md)
|
143
153
|
- [DearInventoryRuby::PaymentTerm](docs/PaymentTerm.md)
|
144
154
|
- [DearInventoryRuby::PaymentTerms](docs/PaymentTerms.md)
|
145
155
|
- [DearInventoryRuby::PriceTier](docs/PriceTier.md)
|
data/docs/Account.md
CHANGED
@@ -4,21 +4,21 @@
|
|
4
4
|
|
5
5
|
Name | Type | Description | Notes
|
6
6
|
------------ | ------------- | ------------- | -------------
|
7
|
-
**code** | **String** | Unique code of Account |
|
8
|
-
**name** | **String** | Account Name |
|
9
|
-
**type** | **String** | Type |
|
10
|
-
**status** | **String** | Account status |
|
11
|
-
**description** | **String** | Account description | [optional]
|
12
|
-
**_class** | **String** | Should be one of the following values: `ASSET`, `LIABILITY`, `EXPENSE`, `EQUITY`, `REVENUE` | [optional]
|
13
|
-
**system_account** | **String** | SystemAccount | [optional]
|
14
|
-
**system_account_code** | **String** | SystemAccountCode | [optional]
|
15
|
-
**for_payments** | **String** | Account status | [optional]
|
16
|
-
**display_name** | **String** | Account display name. Read-only. | [optional]
|
17
|
-
**old_code** | **String** | Read-only. | [optional]
|
18
|
-
**bank** | **String** | Name of the Bank. Only for PUT and POST. Required if Account Type is BANK. | [optional]
|
19
|
-
**bank_account_number** | **String** | Bank Account Number. Only for PUT and POST. Required if Account Type is BANK. | [optional]
|
20
|
-
**bank_account_id** | **String** | Bank Account ID to which the Account is linked. Read-only. | [optional]
|
21
|
-
**currency** | **String** | Currency. Read-only. | [optional]
|
7
|
+
**code** | **String** | Unique code of Account |
|
8
|
+
**name** | **String** | Account Name |
|
9
|
+
**type** | **String** | Type |
|
10
|
+
**status** | **String** | Account status |
|
11
|
+
**description** | **String** | Account description | [optional]
|
12
|
+
**_class** | **String** | Should be one of the following values: `ASSET`, `LIABILITY`, `EXPENSE`, `EQUITY`, `REVENUE` | [optional]
|
13
|
+
**system_account** | **String** | SystemAccount | [optional]
|
14
|
+
**system_account_code** | **String** | SystemAccountCode | [optional]
|
15
|
+
**for_payments** | **String** | Account status | [optional]
|
16
|
+
**display_name** | **String** | Account display name. Read-only. | [optional]
|
17
|
+
**old_code** | **String** | Read-only. | [optional]
|
18
|
+
**bank** | **String** | Name of the Bank. Only for PUT and POST. Required if Account Type is BANK. | [optional]
|
19
|
+
**bank_account_number** | **String** | Bank Account Number. Only for PUT and POST. Required if Account Type is BANK. | [optional]
|
20
|
+
**bank_account_id** | **String** | Bank Account ID to which the Account is linked. Read-only. | [optional]
|
21
|
+
**currency** | **String** | Currency. Read-only. | [optional]
|
22
22
|
|
23
23
|
## Code Sample
|
24
24
|
|
data/docs/Accounts.md
CHANGED
@@ -4,9 +4,9 @@
|
|
4
4
|
|
5
5
|
Name | Type | Description | Notes
|
6
6
|
------------ | ------------- | ------------- | -------------
|
7
|
-
**total** | **String** | Total | [optional]
|
8
|
-
**page** | **String** | Page | [optional]
|
9
|
-
**accounts_list** | [**Array<Account>**](Account.md) | Array of Accounts | [optional]
|
7
|
+
**total** | **String** | Total | [optional]
|
8
|
+
**page** | **String** | Page | [optional]
|
9
|
+
**accounts_list** | [**Array<Account>**](Account.md) | Array of Accounts | [optional]
|
10
10
|
|
11
11
|
## Code Sample
|
12
12
|
|
data/docs/Address.md
CHANGED
@@ -4,14 +4,14 @@
|
|
4
4
|
|
5
5
|
Name | Type | Description | Notes
|
6
6
|
------------ | ------------- | ------------- | -------------
|
7
|
-
**display_address_line1** | **String** | Address Line 1 as displayed on Sale form. = Line1 + Line2 | [optional]
|
8
|
-
**display_address_line2** | **String** | Address Line 2 as displayed on Sale form. = City + State/Region + Zip/Postcode + Country | [optional]
|
9
|
-
**line1** | **String** | Address Line 1 |
|
10
|
-
**line2** | **String** | Address Line 2 | [optional]
|
11
|
-
**city** | **String** | City | [optional]
|
12
|
-
**state** | **String** | State | [optional]
|
13
|
-
**post_code** | **String** | PostCode | [optional]
|
14
|
-
**country** | **String** | Country |
|
7
|
+
**display_address_line1** | **String** | Address Line 1 as displayed on Sale form. = Line1 + Line2 | [optional]
|
8
|
+
**display_address_line2** | **String** | Address Line 2 as displayed on Sale form. = City + State/Region + Zip/Postcode + Country | [optional]
|
9
|
+
**line1** | **String** | Address Line 1 |
|
10
|
+
**line2** | **String** | Address Line 2 | [optional]
|
11
|
+
**city** | **String** | City | [optional]
|
12
|
+
**state** | **String** | State | [optional]
|
13
|
+
**post_code** | **String** | PostCode | [optional]
|
14
|
+
**country** | **String** | Country |
|
15
15
|
|
16
16
|
## Code Sample
|
17
17
|
|
data/docs/AttachmentLine.md
CHANGED
@@ -4,11 +4,11 @@
|
|
4
4
|
|
5
5
|
Name | Type | Description | Notes
|
6
6
|
------------ | ------------- | ------------- | -------------
|
7
|
-
**id** | **String** | Attached file ID | [optional]
|
8
|
-
**content_type** | **String** | Attached file content type | [optional]
|
9
|
-
**is_default** | **Boolean** | Is this attachment will be used as default product image. Is visible only for product Attachment Endpoint. | [optional]
|
10
|
-
**file_name** | **String** | Attached file name | [optional]
|
11
|
-
**download_url** | **String** | Url to download attached File | [optional]
|
7
|
+
**id** | **String** | Attached file ID | [optional]
|
8
|
+
**content_type** | **String** | Attached file content type | [optional]
|
9
|
+
**is_default** | **Boolean** | Is this attachment will be used as default product image. Is visible only for product Attachment Endpoint. | [optional]
|
10
|
+
**file_name** | **String** | Attached file name | [optional]
|
11
|
+
**download_url** | **String** | Url to download attached File | [optional]
|
12
12
|
|
13
13
|
## Code Sample
|
14
14
|
|
data/docs/Bin.md
ADDED
@@ -0,0 +1,19 @@
|
|
1
|
+
# DearInventoryRuby::Bin
|
2
|
+
|
3
|
+
## Properties
|
4
|
+
|
5
|
+
Name | Type | Description | Notes
|
6
|
+
------------ | ------------- | ------------- | -------------
|
7
|
+
**id** | **String** | Unique ID | [optional]
|
8
|
+
**name** | **String** | Name of `Bin` | [optional]
|
9
|
+
|
10
|
+
## Code Sample
|
11
|
+
|
12
|
+
```ruby
|
13
|
+
require 'DearInventoryRuby'
|
14
|
+
|
15
|
+
instance = DearInventoryRuby::Bin.new(id: nil,
|
16
|
+
name: nil)
|
17
|
+
```
|
18
|
+
|
19
|
+
|
data/docs/Carrier.md
ADDED
@@ -0,0 +1,19 @@
|
|
1
|
+
# DearInventoryRuby::Carrier
|
2
|
+
|
3
|
+
## Properties
|
4
|
+
|
5
|
+
Name | Type | Description | Notes
|
6
|
+
------------ | ------------- | ------------- | -------------
|
7
|
+
**carrier_id** | **String** | Unique `Carrier` ID | [optional]
|
8
|
+
**description** | **String** | Name of `Carrier` | [optional]
|
9
|
+
|
10
|
+
## Code Sample
|
11
|
+
|
12
|
+
```ruby
|
13
|
+
require 'DearInventoryRuby'
|
14
|
+
|
15
|
+
instance = DearInventoryRuby::Carrier.new(carrier_id: nil,
|
16
|
+
description: nil)
|
17
|
+
```
|
18
|
+
|
19
|
+
|
data/docs/Carriers.md
ADDED
@@ -0,0 +1,21 @@
|
|
1
|
+
# DearInventoryRuby::Carriers
|
2
|
+
|
3
|
+
## Properties
|
4
|
+
|
5
|
+
Name | Type | Description | Notes
|
6
|
+
------------ | ------------- | ------------- | -------------
|
7
|
+
**total** | **Float** | Total | [optional]
|
8
|
+
**page** | **Float** | Page | [optional]
|
9
|
+
**carrier_list** | [**Array<Carrier>**](Carrier.md) | Array of Carriers | [optional]
|
10
|
+
|
11
|
+
## Code Sample
|
12
|
+
|
13
|
+
```ruby
|
14
|
+
require 'DearInventoryRuby'
|
15
|
+
|
16
|
+
instance = DearInventoryRuby::Carriers.new(total: nil,
|
17
|
+
page: nil,
|
18
|
+
carrier_list: nil)
|
19
|
+
```
|
20
|
+
|
21
|
+
|
data/docs/Contact.md
CHANGED
@@ -4,15 +4,15 @@
|
|
4
4
|
|
5
5
|
Name | Type | Description | Notes
|
6
6
|
------------ | ------------- | ------------- | -------------
|
7
|
-
**id** | **String** | If passed in PUT method, entry will be searched by id, found entry will be updated, otherwise created | [optional]
|
8
|
-
**name** | **String** | Name of Contact |
|
9
|
-
**job_title** | **String** | Job Title | [optional]
|
10
|
-
**phone** | **String** | Phone | [optional]
|
11
|
-
**mobile_phone** | **String** | Mobile Phone | [optional]
|
12
|
-
**fax** | **String** | Fax | [optional]
|
13
|
-
**email** | **String** | Email | [optional]
|
14
|
-
**website** | **String** | Website | [optional]
|
15
|
-
**comment** | **String** | Comment | [optional]
|
7
|
+
**id** | **String** | If passed in PUT method, entry will be searched by id, found entry will be updated, otherwise created | [optional]
|
8
|
+
**name** | **String** | Name of Contact |
|
9
|
+
**job_title** | **String** | Job Title | [optional]
|
10
|
+
**phone** | **String** | Phone | [optional]
|
11
|
+
**mobile_phone** | **String** | Mobile Phone | [optional]
|
12
|
+
**fax** | **String** | Fax | [optional]
|
13
|
+
**email** | **String** | Email | [optional]
|
14
|
+
**website** | **String** | Website | [optional]
|
15
|
+
**comment** | **String** | Comment | [optional]
|
16
16
|
**default** | **Boolean** | Points that Contact is used as default. `false` as default. | [optional] [default to false]
|
17
17
|
**include_in_email** | **Boolean** | Points that Contact is included in Email. `false` as default. | [optional] [default to false]
|
18
18
|
|
data/docs/Customer.md
CHANGED
@@ -4,38 +4,38 @@
|
|
4
4
|
|
5
5
|
Name | Type | Description | Notes
|
6
6
|
------------ | ------------- | ------------- | -------------
|
7
|
-
**id** | **String** | Unique Customer ID | [optional]
|
8
|
-
**name** | **String** | Name of Customer |
|
9
|
-
**status** | **String** | Points that Customer is Active. Available values are Active and Deprecated. Required for POST |
|
10
|
-
**currency** | **String** | Currency code of Customer |
|
11
|
-
**payment_term** | **String** | Payment term |
|
12
|
-
**account_receivable** | **String** | Account receivable code of Customer |
|
13
|
-
**revenue_account** | **String** | Sale account code of Customer |
|
14
|
-
**tax_rule** | **String** | Tax rule name |
|
15
|
-
**price_tier** | **String** | Price tier | [optional]
|
16
|
-
**carrier** | **String** | Carrier name | [optional]
|
17
|
-
**sales_representative** | **String** | Sales representative | [optional]
|
18
|
-
**location** | **String** | Location | [optional]
|
19
|
-
**discount** | **Float** | Discount must be between 0% and 100% | [optional]
|
20
|
-
**comments** | **String** | Comments | [optional]
|
21
|
-
**tax_number** | **String** | Tax number | [optional]
|
22
|
-
**credit_limit** | **Float** | Credit limit | [optional]
|
7
|
+
**id** | **String** | Unique Customer ID | [optional]
|
8
|
+
**name** | **String** | Name of Customer |
|
9
|
+
**status** | **String** | Points that Customer is Active. Available values are Active and Deprecated. Required for POST |
|
10
|
+
**currency** | **String** | Currency code of Customer |
|
11
|
+
**payment_term** | **String** | Payment term |
|
12
|
+
**account_receivable** | **String** | Account receivable code of Customer |
|
13
|
+
**revenue_account** | **String** | Sale account code of Customer |
|
14
|
+
**tax_rule** | **String** | Tax rule name |
|
15
|
+
**price_tier** | **String** | Price tier | [optional]
|
16
|
+
**carrier** | **String** | Carrier name | [optional]
|
17
|
+
**sales_representative** | **String** | Sales representative | [optional]
|
18
|
+
**location** | **String** | Location | [optional]
|
19
|
+
**discount** | **Float** | Discount must be between 0% and 100% | [optional]
|
20
|
+
**comments** | **String** | Comments | [optional]
|
21
|
+
**tax_number** | **String** | Tax number | [optional]
|
22
|
+
**credit_limit** | **Float** | Credit limit | [optional]
|
23
23
|
**is_on_credit_hold** | **Boolean** | boolean to indicate if a customer is on credit hold | [optional] [default to false]
|
24
|
-
**tags** | **String** | Tags string | [optional]
|
25
|
-
**attribute_set** | **String** | AttributeSet name | [optional]
|
26
|
-
**additional_attribute1** | **String** | Additional attribute 1 value | [optional]
|
27
|
-
**additional_attribute2** | **String** | Additional attribute 2 value | [optional]
|
28
|
-
**additional_attribute3** | **String** | Additional attribute 3 value | [optional]
|
29
|
-
**additional_attribute4** | **String** | Additional attribute 4 value | [optional]
|
30
|
-
**additional_attribute5** | **String** | Additional attribute 5 value | [optional]
|
31
|
-
**additional_attribute6** | **String** | Additional attribute 6 value | [optional]
|
32
|
-
**additional_attribute7** | **String** | Additional attribute 7 value | [optional]
|
33
|
-
**additional_attribute8** | **String** | Additional attribute 8 value | [optional]
|
34
|
-
**additional_attribute9** | **String** | Additional attribute 9 value | [optional]
|
35
|
-
**additional_attribute10** | **String** | Additional attribute 10 value | [optional]
|
36
|
-
**last_modified_on** | **String** | Date of last modification | [optional]
|
37
|
-
**addresses** | [**Array<SupplierCustomerAddress>**](SupplierCustomerAddress.md) | List of addresses | [optional]
|
38
|
-
**contacts** | [**Array<Contact>**](Contact.md) | List of contacts | [optional]
|
24
|
+
**tags** | **String** | Tags string | [optional]
|
25
|
+
**attribute_set** | **String** | AttributeSet name | [optional]
|
26
|
+
**additional_attribute1** | **String** | Additional attribute 1 value | [optional]
|
27
|
+
**additional_attribute2** | **String** | Additional attribute 2 value | [optional]
|
28
|
+
**additional_attribute3** | **String** | Additional attribute 3 value | [optional]
|
29
|
+
**additional_attribute4** | **String** | Additional attribute 4 value | [optional]
|
30
|
+
**additional_attribute5** | **String** | Additional attribute 5 value | [optional]
|
31
|
+
**additional_attribute6** | **String** | Additional attribute 6 value | [optional]
|
32
|
+
**additional_attribute7** | **String** | Additional attribute 7 value | [optional]
|
33
|
+
**additional_attribute8** | **String** | Additional attribute 8 value | [optional]
|
34
|
+
**additional_attribute9** | **String** | Additional attribute 9 value | [optional]
|
35
|
+
**additional_attribute10** | **String** | Additional attribute 10 value | [optional]
|
36
|
+
**last_modified_on** | **String** | Date of last modification | [optional]
|
37
|
+
**addresses** | [**Array<SupplierCustomerAddress>**](SupplierCustomerAddress.md) | List of addresses | [optional]
|
38
|
+
**contacts** | [**Array<Contact>**](Contact.md) | List of contacts | [optional]
|
39
39
|
|
40
40
|
## Code Sample
|
41
41
|
|
data/docs/Customers.md
CHANGED
@@ -4,9 +4,9 @@
|
|
4
4
|
|
5
5
|
Name | Type | Description | Notes
|
6
6
|
------------ | ------------- | ------------- | -------------
|
7
|
-
**total** | **String** | Total | [optional]
|
8
|
-
**page** | **String** | Page | [optional]
|
9
|
-
**customer_list** | [**Array<Customer>**](Customer.md) | Array of Customers | [optional]
|
7
|
+
**total** | **String** | Total | [optional]
|
8
|
+
**page** | **String** | Page | [optional]
|
9
|
+
**customer_list** | [**Array<Customer>**](Customer.md) | Array of Customers | [optional]
|
10
10
|
|
11
11
|
## Code Sample
|
12
12
|
|
data/docs/Error.md
CHANGED
@@ -4,8 +4,8 @@
|
|
4
4
|
|
5
5
|
Name | Type | Description | Notes
|
6
6
|
------------ | ------------- | ------------- | -------------
|
7
|
-
**error_code** | **Integer** | Exception number | [optional]
|
8
|
-
**exception** | **String** | Exception message | [optional]
|
7
|
+
**error_code** | **Integer** | Exception number | [optional]
|
8
|
+
**exception** | **String** | Exception message | [optional]
|
9
9
|
|
10
10
|
## Code Sample
|
11
11
|
|
data/docs/ExternalHeader.md
CHANGED
@@ -4,8 +4,8 @@
|
|
4
4
|
|
5
5
|
Name | Type | Description | Notes
|
6
6
|
------------ | ------------- | ------------- | -------------
|
7
|
-
**key** | **String** | Key | [optional]
|
8
|
-
**value** | **String** | Value | [optional]
|
7
|
+
**key** | **String** | Key | [optional]
|
8
|
+
**value** | **String** | Value | [optional]
|
9
9
|
|
10
10
|
## Code Sample
|
11
11
|
|