Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
xvantage-integration committed Jan 3, 2025
1 parent 320b4d4 commit c6ac354
Show file tree
Hide file tree
Showing 3 changed files with 66 additions and 24 deletions.
2 changes: 2 additions & 0 deletions api/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9417,10 +9417,12 @@ components:
showAvailableDiscounts:
description: Boolean value that will display Discount details in the response
when true.
nullable: true
type: boolean
showReserveInventoryDetails:
description: Boolean value that will display reserve inventory details in
the response when true.
nullable: true
type: boolean
specialBidNumber:
description: Pre-approved special pricing/bid number provided to the reseller
Expand Down
24 changes: 22 additions & 2 deletions docs/PriceAndAvailabilityRequest.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@

Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**ShowAvailableDiscounts** | Pointer to **bool** | Boolean value that will display Discount details in the response when true. | [optional]
**ShowReserveInventoryDetails** | Pointer to **bool** | Boolean value that will display reserve inventory details in the response when true. | [optional]
**ShowAvailableDiscounts** | Pointer to **NullableBool** | Boolean value that will display Discount details in the response when true. | [optional]
**ShowReserveInventoryDetails** | Pointer to **NullableBool** | Boolean value that will display reserve inventory details in the response when true. | [optional]
**SpecialBidNumber** | Pointer to **NullableString** | Pre-approved special pricing/bid number provided to the reseller by the vendor for special pricing and discounts. Used to track the bid number where different line items have different bid numbers. | [optional]
**AvailabilityByWarehouse** | Pointer to [**[]PriceAndAvailabilityRequestAvailabilityByWarehouseInner**](PriceAndAvailabilityRequestAvailabilityByWarehouseInner.md) | | [optional]
**Products** | Pointer to [**[]PriceAndAvailabilityRequestProductsInner**](PriceAndAvailabilityRequestProductsInner.md) | | [optional]
Expand Down Expand Up @@ -55,6 +55,16 @@ SetShowAvailableDiscounts sets ShowAvailableDiscounts field to given value.

HasShowAvailableDiscounts returns a boolean if a field has been set.

### SetShowAvailableDiscountsNil

`func (o *PriceAndAvailabilityRequest) SetShowAvailableDiscountsNil(b bool)`

SetShowAvailableDiscountsNil sets the value for ShowAvailableDiscounts to be an explicit nil

### UnsetShowAvailableDiscounts
`func (o *PriceAndAvailabilityRequest) UnsetShowAvailableDiscounts()`

UnsetShowAvailableDiscounts ensures that no value is present for ShowAvailableDiscounts, not even an explicit nil
### GetShowReserveInventoryDetails

`func (o *PriceAndAvailabilityRequest) GetShowReserveInventoryDetails() bool`
Expand All @@ -80,6 +90,16 @@ SetShowReserveInventoryDetails sets ShowReserveInventoryDetails field to given v

HasShowReserveInventoryDetails returns a boolean if a field has been set.

### SetShowReserveInventoryDetailsNil

`func (o *PriceAndAvailabilityRequest) SetShowReserveInventoryDetailsNil(b bool)`

SetShowReserveInventoryDetailsNil sets the value for ShowReserveInventoryDetails to be an explicit nil

### UnsetShowReserveInventoryDetails
`func (o *PriceAndAvailabilityRequest) UnsetShowReserveInventoryDetails()`

UnsetShowReserveInventoryDetails ensures that no value is present for ShowReserveInventoryDetails, not even an explicit nil
### GetSpecialBidNumber

`func (o *PriceAndAvailabilityRequest) GetSpecialBidNumber() string`
Expand Down
64 changes: 42 additions & 22 deletions model_price_and_availability_request.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit c6ac354

Please sign in to comment.