feat: shit shit

This commit is contained in:
2025-08-15 11:10:28 +03:00
parent 0c86228095
commit 38acc4a443
1402 changed files with 453050 additions and 111 deletions

View File

@@ -0,0 +1,103 @@
# BaseCampaignOfferDTO
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**OfferId** | **string** | Ваш :no-translate[SKU] — идентификатор товара в вашей системе. Правила использования :no-translate[SKU]: * У каждого товара :no-translate[SKU] должен быть свой. * Уже заданный :no-translate[SKU] нельзя освободить и использовать заново для другого товара. Каждый товар должен получать новый идентификатор, до того никогда не использовавшийся в вашем каталоге. :no-translate[SKU] товара можно изменить в кабинете продавца на Маркете. О том, как это сделать, читайте [в Справке Маркета для продавцов](https://yandex.ru/support2/marketplace/ru/assortment/operations/edit-sku). [Что такое :no-translate[SKU] и как его назначать](https://yandex.ru/support/marketplace/assortment/add/index.html#fields) |
**Quantum** | Pointer to [**QuantumDTO**](QuantumDTO.md) | | [optional]
**Available** | Pointer to **bool** | {% note warning \"Вместо него используйте методы скрытия товаров с витрины\" %} * [GET campaigns/{campaignId}/hidden-offers](../../reference/assortment/getHiddenOffers.md) — просмотр скрытых товаров; * [POST campaigns/{campaignId}/hidden-offers](../../reference/assortment/addHiddenOffers.md) — скрытие товаров; * [POST campaigns/{campaignId}/hidden-offers/delete](../../reference/assortment/deleteHiddenOffers.md) — возобновление показа. {% endnote %} Есть ли товар в продаже. | [optional]
## Methods
### NewBaseCampaignOfferDTO
`func NewBaseCampaignOfferDTO(offerId string, ) *BaseCampaignOfferDTO`
NewBaseCampaignOfferDTO instantiates a new BaseCampaignOfferDTO object
This constructor will assign default values to properties that have it defined,
and makes sure properties required by API are set, but the set of arguments
will change when the set of required properties is changed
### NewBaseCampaignOfferDTOWithDefaults
`func NewBaseCampaignOfferDTOWithDefaults() *BaseCampaignOfferDTO`
NewBaseCampaignOfferDTOWithDefaults instantiates a new BaseCampaignOfferDTO object
This constructor will only assign default values to properties that have it defined,
but it doesn't guarantee that properties required by API are set
### GetOfferId
`func (o *BaseCampaignOfferDTO) GetOfferId() string`
GetOfferId returns the OfferId field if non-nil, zero value otherwise.
### GetOfferIdOk
`func (o *BaseCampaignOfferDTO) GetOfferIdOk() (*string, bool)`
GetOfferIdOk returns a tuple with the OfferId field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetOfferId
`func (o *BaseCampaignOfferDTO) SetOfferId(v string)`
SetOfferId sets OfferId field to given value.
### GetQuantum
`func (o *BaseCampaignOfferDTO) GetQuantum() QuantumDTO`
GetQuantum returns the Quantum field if non-nil, zero value otherwise.
### GetQuantumOk
`func (o *BaseCampaignOfferDTO) GetQuantumOk() (*QuantumDTO, bool)`
GetQuantumOk returns a tuple with the Quantum field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetQuantum
`func (o *BaseCampaignOfferDTO) SetQuantum(v QuantumDTO)`
SetQuantum sets Quantum field to given value.
### HasQuantum
`func (o *BaseCampaignOfferDTO) HasQuantum() bool`
HasQuantum returns a boolean if a field has been set.
### GetAvailable
`func (o *BaseCampaignOfferDTO) GetAvailable() bool`
GetAvailable returns the Available field if non-nil, zero value otherwise.
### GetAvailableOk
`func (o *BaseCampaignOfferDTO) GetAvailableOk() (*bool, bool)`
GetAvailableOk returns a tuple with the Available field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetAvailable
`func (o *BaseCampaignOfferDTO) SetAvailable(v bool)`
SetAvailable sets Available field to given value.
### HasAvailable
`func (o *BaseCampaignOfferDTO) HasAvailable() bool`
HasAvailable returns a boolean if a field has been set.
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)