Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
xvantage-integration committed Sep 9, 2024
1 parent ccebeb3 commit c99ee95
Show file tree
Hide file tree
Showing 9 changed files with 745 additions and 177 deletions.
248 changes: 143 additions & 105 deletions api/openapi.yaml

Large diffs are not rendered by default.

12 changes: 11 additions & 1 deletion docs/OrderDetailB2BLinesInnerShipmentDetailsInner.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**Quantity** | Pointer to **int32** | The quantity shipped of the line item. | [optional]
**Quantity** | Pointer to **NullableInt32** | The quantity shipped of the line item. | [optional]
**DeliveryNumber** | Pointer to **string** | The actual date of delivery of the line item. | [optional]
**EstimatedShipDate** | Pointer to **string** | The date the line item is expected to be shipped. | [optional]
**ShippedDate** | Pointer to **string** | | [optional]
Expand Down Expand Up @@ -59,6 +59,16 @@ SetQuantity sets Quantity field to given value.

HasQuantity returns a boolean if a field has been set.

### SetQuantityNil

`func (o *OrderDetailB2BLinesInnerShipmentDetailsInner) SetQuantityNil(b bool)`

SetQuantityNil sets the value for Quantity to be an explicit nil

### UnsetQuantity
`func (o *OrderDetailB2BLinesInnerShipmentDetailsInner) UnsetQuantity()`

UnsetQuantity ensures that no value is present for Quantity, not even an explicit nil
### GetDeliveryNumber

`func (o *OrderDetailB2BLinesInnerShipmentDetailsInner) GetDeliveryNumber() string`
Expand Down
36 changes: 36 additions & 0 deletions docs/QuoteDetailsResponse.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ Name | Type | Description | Notes
**SpecialBidEffectiveDate** | Pointer to **string** | If price discount has been applied to the quote - the starting date the discount begins. | [optional]
**SpecialBidExpirationDate** | Pointer to **string** | If a price discount has been applied to the quote - The date the discount expires and will no longer be applicable. | [optional]
**VendorQuoteNumber** | Pointer to **string** | | [optional]
**IsPartialOrderAllowed** | Pointer to **NullableBool** | | [optional]
**Status** | Pointer to **string** | This refers to the primary status of the quote. API responses will return | [optional]
**StatusReason** | Pointer to **string** | | [optional]
**ClosingReason** | Pointer to **string** | Closing Reason for quote. | [optional]
Expand Down Expand Up @@ -365,6 +366,41 @@ SetVendorQuoteNumber sets VendorQuoteNumber field to given value.

HasVendorQuoteNumber returns a boolean if a field has been set.

### GetIsPartialOrderAllowed

`func (o *QuoteDetailsResponse) GetIsPartialOrderAllowed() bool`

GetIsPartialOrderAllowed returns the IsPartialOrderAllowed field if non-nil, zero value otherwise.

### GetIsPartialOrderAllowedOk

`func (o *QuoteDetailsResponse) GetIsPartialOrderAllowedOk() (*bool, bool)`

GetIsPartialOrderAllowedOk returns a tuple with the IsPartialOrderAllowed field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.

### SetIsPartialOrderAllowed

`func (o *QuoteDetailsResponse) SetIsPartialOrderAllowed(v bool)`

SetIsPartialOrderAllowed sets IsPartialOrderAllowed field to given value.

### HasIsPartialOrderAllowed

`func (o *QuoteDetailsResponse) HasIsPartialOrderAllowed() bool`

HasIsPartialOrderAllowed returns a boolean if a field has been set.

### SetIsPartialOrderAllowedNil

`func (o *QuoteDetailsResponse) SetIsPartialOrderAllowedNil(b bool)`

SetIsPartialOrderAllowedNil sets the value for IsPartialOrderAllowed to be an explicit nil

### UnsetIsPartialOrderAllowed
`func (o *QuoteDetailsResponse) UnsetIsPartialOrderAllowed()`

UnsetIsPartialOrderAllowed ensures that no value is present for IsPartialOrderAllowed, not even an explicit nil
### GetStatus

`func (o *QuoteDetailsResponse) GetStatus() string`
Expand Down
72 changes: 72 additions & 0 deletions docs/QuoteDetailsResponseProductsInner.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ Name | Type | Description | Notes
**QuoteProductGuid** | Pointer to **string** | Quote Product GUID is the primary quote key in Ingram Micro's CRM - needed to retrieve quote details. | [optional]
**LineNumber** | Pointer to **string** | Line number which the product will appear in the quote. Line number is manditory when unique configurations are included in a quote and mainting the item line order is required. | [optional]
**Quantity** | Pointer to **int32** | Quantity of product line item quoted. | [optional]
**RemainingQuoteQty** | Pointer to **NullableInt32** | | [optional]
**MinimumOrderAllowedQty** | Pointer to **NullableInt32** | | [optional]
**Notes** | Pointer to **string** | Product line item comments. | [optional]
**Ean** | Pointer to **string** | EANUPC | [optional]
**Coo** | Pointer to **string** | Country of Origin. | [optional]
Expand Down Expand Up @@ -124,6 +126,76 @@ SetQuantity sets Quantity field to given value.

HasQuantity returns a boolean if a field has been set.

### GetRemainingQuoteQty

`func (o *QuoteDetailsResponseProductsInner) GetRemainingQuoteQty() int32`

GetRemainingQuoteQty returns the RemainingQuoteQty field if non-nil, zero value otherwise.

### GetRemainingQuoteQtyOk

`func (o *QuoteDetailsResponseProductsInner) GetRemainingQuoteQtyOk() (*int32, bool)`

GetRemainingQuoteQtyOk returns a tuple with the RemainingQuoteQty field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.

### SetRemainingQuoteQty

`func (o *QuoteDetailsResponseProductsInner) SetRemainingQuoteQty(v int32)`

SetRemainingQuoteQty sets RemainingQuoteQty field to given value.

### HasRemainingQuoteQty

`func (o *QuoteDetailsResponseProductsInner) HasRemainingQuoteQty() bool`

HasRemainingQuoteQty returns a boolean if a field has been set.

### SetRemainingQuoteQtyNil

`func (o *QuoteDetailsResponseProductsInner) SetRemainingQuoteQtyNil(b bool)`

SetRemainingQuoteQtyNil sets the value for RemainingQuoteQty to be an explicit nil

### UnsetRemainingQuoteQty
`func (o *QuoteDetailsResponseProductsInner) UnsetRemainingQuoteQty()`

UnsetRemainingQuoteQty ensures that no value is present for RemainingQuoteQty, not even an explicit nil
### GetMinimumOrderAllowedQty

`func (o *QuoteDetailsResponseProductsInner) GetMinimumOrderAllowedQty() int32`

GetMinimumOrderAllowedQty returns the MinimumOrderAllowedQty field if non-nil, zero value otherwise.

### GetMinimumOrderAllowedQtyOk

`func (o *QuoteDetailsResponseProductsInner) GetMinimumOrderAllowedQtyOk() (*int32, bool)`

GetMinimumOrderAllowedQtyOk returns a tuple with the MinimumOrderAllowedQty field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.

### SetMinimumOrderAllowedQty

`func (o *QuoteDetailsResponseProductsInner) SetMinimumOrderAllowedQty(v int32)`

SetMinimumOrderAllowedQty sets MinimumOrderAllowedQty field to given value.

### HasMinimumOrderAllowedQty

`func (o *QuoteDetailsResponseProductsInner) HasMinimumOrderAllowedQty() bool`

HasMinimumOrderAllowedQty returns a boolean if a field has been set.

### SetMinimumOrderAllowedQtyNil

`func (o *QuoteDetailsResponseProductsInner) SetMinimumOrderAllowedQtyNil(b bool)`

SetMinimumOrderAllowedQtyNil sets the value for MinimumOrderAllowedQty to be an explicit nil

### UnsetMinimumOrderAllowedQty
`func (o *QuoteDetailsResponseProductsInner) UnsetMinimumOrderAllowedQty()`

UnsetMinimumOrderAllowedQty ensures that no value is present for MinimumOrderAllowedQty, not even an explicit nil
### GetNotes

`func (o *QuoteDetailsResponseProductsInner) GetNotes() string`
Expand Down
132 changes: 127 additions & 5 deletions docs/QuoteDetailsResponseProductsInnerPrice.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,13 @@

Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**QuotePrice** | Pointer to **float32** | Ingram Micro quoted price specific to the reseller and quote. | [optional]
**Msrp** | Pointer to **float32** | Manufacturer Suggested Retail Price | [optional]
**ExtendedMsrp** | Pointer to **float32** | Extended MSRP - Manufacturer Suggested Retail Price X Quantity | [optional]
**ExtendedQuotePrice** | Pointer to **float32** | Extended reseller quoted price (cost to reseller) X Quantity | [optional]
**DiscountOffList** | Pointer to **string** | Discount off list percentage extended | [optional]
**QuotePrice** | Pointer to **NullableFloat32** | Ingram Micro quoted price specific to the reseller and quote. | [optional]
**Msrp** | Pointer to **NullableFloat32** | Manufacturer Suggested Retail Price | [optional]
**ExtendedMsrp** | Pointer to **NullableFloat32** | Extended MSRP - Manufacturer Suggested Retail Price X Quantity | [optional]
**ExtendedQuotePrice** | Pointer to **NullableFloat32** | Extended reseller quoted price (cost to reseller) X Quantity | [optional]
**RemainingQuantityExtendedMsrp** | Pointer to **NullableFloat32** | | [optional]
**RemainingQuantityExtendedQuotePrice** | Pointer to **NullableFloat32** | | [optional]
**DiscountOffList** | Pointer to **NullableString** | Discount off list percentage extended | [optional]
**Type** | Pointer to **string** | | [optional]
**RecurringPriceModel** | Pointer to **string** | | [optional]
**UnitOfMeasure** | Pointer to **string** | | [optional]
Expand Down Expand Up @@ -61,6 +63,16 @@ SetQuotePrice sets QuotePrice field to given value.

HasQuotePrice returns a boolean if a field has been set.

### SetQuotePriceNil

`func (o *QuoteDetailsResponseProductsInnerPrice) SetQuotePriceNil(b bool)`

SetQuotePriceNil sets the value for QuotePrice to be an explicit nil

### UnsetQuotePrice
`func (o *QuoteDetailsResponseProductsInnerPrice) UnsetQuotePrice()`

UnsetQuotePrice ensures that no value is present for QuotePrice, not even an explicit nil
### GetMsrp

`func (o *QuoteDetailsResponseProductsInnerPrice) GetMsrp() float32`
Expand All @@ -86,6 +98,16 @@ SetMsrp sets Msrp field to given value.

HasMsrp returns a boolean if a field has been set.

### SetMsrpNil

`func (o *QuoteDetailsResponseProductsInnerPrice) SetMsrpNil(b bool)`

SetMsrpNil sets the value for Msrp to be an explicit nil

### UnsetMsrp
`func (o *QuoteDetailsResponseProductsInnerPrice) UnsetMsrp()`

UnsetMsrp ensures that no value is present for Msrp, not even an explicit nil
### GetExtendedMsrp

`func (o *QuoteDetailsResponseProductsInnerPrice) GetExtendedMsrp() float32`
Expand All @@ -111,6 +133,16 @@ SetExtendedMsrp sets ExtendedMsrp field to given value.

HasExtendedMsrp returns a boolean if a field has been set.

### SetExtendedMsrpNil

`func (o *QuoteDetailsResponseProductsInnerPrice) SetExtendedMsrpNil(b bool)`

SetExtendedMsrpNil sets the value for ExtendedMsrp to be an explicit nil

### UnsetExtendedMsrp
`func (o *QuoteDetailsResponseProductsInnerPrice) UnsetExtendedMsrp()`

UnsetExtendedMsrp ensures that no value is present for ExtendedMsrp, not even an explicit nil
### GetExtendedQuotePrice

`func (o *QuoteDetailsResponseProductsInnerPrice) GetExtendedQuotePrice() float32`
Expand All @@ -136,6 +168,86 @@ SetExtendedQuotePrice sets ExtendedQuotePrice field to given value.

HasExtendedQuotePrice returns a boolean if a field has been set.

### SetExtendedQuotePriceNil

`func (o *QuoteDetailsResponseProductsInnerPrice) SetExtendedQuotePriceNil(b bool)`

SetExtendedQuotePriceNil sets the value for ExtendedQuotePrice to be an explicit nil

### UnsetExtendedQuotePrice
`func (o *QuoteDetailsResponseProductsInnerPrice) UnsetExtendedQuotePrice()`

UnsetExtendedQuotePrice ensures that no value is present for ExtendedQuotePrice, not even an explicit nil
### GetRemainingQuantityExtendedMsrp

`func (o *QuoteDetailsResponseProductsInnerPrice) GetRemainingQuantityExtendedMsrp() float32`

GetRemainingQuantityExtendedMsrp returns the RemainingQuantityExtendedMsrp field if non-nil, zero value otherwise.

### GetRemainingQuantityExtendedMsrpOk

`func (o *QuoteDetailsResponseProductsInnerPrice) GetRemainingQuantityExtendedMsrpOk() (*float32, bool)`

GetRemainingQuantityExtendedMsrpOk returns a tuple with the RemainingQuantityExtendedMsrp field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.

### SetRemainingQuantityExtendedMsrp

`func (o *QuoteDetailsResponseProductsInnerPrice) SetRemainingQuantityExtendedMsrp(v float32)`

SetRemainingQuantityExtendedMsrp sets RemainingQuantityExtendedMsrp field to given value.

### HasRemainingQuantityExtendedMsrp

`func (o *QuoteDetailsResponseProductsInnerPrice) HasRemainingQuantityExtendedMsrp() bool`

HasRemainingQuantityExtendedMsrp returns a boolean if a field has been set.

### SetRemainingQuantityExtendedMsrpNil

`func (o *QuoteDetailsResponseProductsInnerPrice) SetRemainingQuantityExtendedMsrpNil(b bool)`

SetRemainingQuantityExtendedMsrpNil sets the value for RemainingQuantityExtendedMsrp to be an explicit nil

### UnsetRemainingQuantityExtendedMsrp
`func (o *QuoteDetailsResponseProductsInnerPrice) UnsetRemainingQuantityExtendedMsrp()`

UnsetRemainingQuantityExtendedMsrp ensures that no value is present for RemainingQuantityExtendedMsrp, not even an explicit nil
### GetRemainingQuantityExtendedQuotePrice

`func (o *QuoteDetailsResponseProductsInnerPrice) GetRemainingQuantityExtendedQuotePrice() float32`

GetRemainingQuantityExtendedQuotePrice returns the RemainingQuantityExtendedQuotePrice field if non-nil, zero value otherwise.

### GetRemainingQuantityExtendedQuotePriceOk

`func (o *QuoteDetailsResponseProductsInnerPrice) GetRemainingQuantityExtendedQuotePriceOk() (*float32, bool)`

GetRemainingQuantityExtendedQuotePriceOk returns a tuple with the RemainingQuantityExtendedQuotePrice field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.

### SetRemainingQuantityExtendedQuotePrice

`func (o *QuoteDetailsResponseProductsInnerPrice) SetRemainingQuantityExtendedQuotePrice(v float32)`

SetRemainingQuantityExtendedQuotePrice sets RemainingQuantityExtendedQuotePrice field to given value.

### HasRemainingQuantityExtendedQuotePrice

`func (o *QuoteDetailsResponseProductsInnerPrice) HasRemainingQuantityExtendedQuotePrice() bool`

HasRemainingQuantityExtendedQuotePrice returns a boolean if a field has been set.

### SetRemainingQuantityExtendedQuotePriceNil

`func (o *QuoteDetailsResponseProductsInnerPrice) SetRemainingQuantityExtendedQuotePriceNil(b bool)`

SetRemainingQuantityExtendedQuotePriceNil sets the value for RemainingQuantityExtendedQuotePrice to be an explicit nil

### UnsetRemainingQuantityExtendedQuotePrice
`func (o *QuoteDetailsResponseProductsInnerPrice) UnsetRemainingQuantityExtendedQuotePrice()`

UnsetRemainingQuantityExtendedQuotePrice ensures that no value is present for RemainingQuantityExtendedQuotePrice, not even an explicit nil
### GetDiscountOffList

`func (o *QuoteDetailsResponseProductsInnerPrice) GetDiscountOffList() string`
Expand All @@ -161,6 +273,16 @@ SetDiscountOffList sets DiscountOffList field to given value.

HasDiscountOffList returns a boolean if a field has been set.

### SetDiscountOffListNil

`func (o *QuoteDetailsResponseProductsInnerPrice) SetDiscountOffListNil(b bool)`

SetDiscountOffListNil sets the value for DiscountOffList to be an explicit nil

### UnsetDiscountOffList
`func (o *QuoteDetailsResponseProductsInnerPrice) UnsetDiscountOffList()`

UnsetDiscountOffList ensures that no value is present for DiscountOffList, not even an explicit nil
### GetType

`func (o *QuoteDetailsResponseProductsInnerPrice) GetType() string`
Expand Down
Loading

0 comments on commit c99ee95

Please sign in to comment.