wbproducts

package
v0.1.0 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: May 14, 2026 License: MIT Imports: 21 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

View Source
var (
	JsonCheck = regexp.MustCompile(`(?i:(?:application|text)/(?:[^;]+\+)?json)`)
	XmlCheck  = regexp.MustCompile(`(?i:(?:application|text)/(?:[^;]+\+)?xml)`)
)
View Source
var (
	// ContextAPIKeys takes a string apikey as authentication for the request
	ContextAPIKeys = contextKey("apiKeys")

	// ContextServerIndex uses a server configuration from the index.
	ContextServerIndex = contextKey("serverIndex")

	// ContextOperationServerIndices uses a server configuration from the index mapping.
	ContextOperationServerIndices = contextKey("serverOperationIndices")

	// ContextServerVariables overrides a server configuration variables.
	ContextServerVariables = contextKey("serverVariables")

	// ContextOperationServerVariables overrides a server configuration variables using operation specific values.
	ContextOperationServerVariables = contextKey("serverOperationVariables")
)

Functions

func CacheExpires

func CacheExpires(r *http.Response) time.Time

CacheExpires helper function to determine remaining time before repeating a request.

func IsNil

func IsNil(i interface{}) bool

IsNil checks if an input is nil

func PtrBool

func PtrBool(v bool) *bool

PtrBool is a helper routine that returns a pointer to given boolean value.

func PtrFloat32

func PtrFloat32(v float32) *float32

PtrFloat32 is a helper routine that returns a pointer to given float value.

func PtrFloat64

func PtrFloat64(v float64) *float64

PtrFloat64 is a helper routine that returns a pointer to given float value.

func PtrInt

func PtrInt(v int) *int

PtrInt is a helper routine that returns a pointer to given integer value.

func PtrInt32

func PtrInt32(v int32) *int32

PtrInt32 is a helper routine that returns a pointer to given integer value.

func PtrInt64

func PtrInt64(v int64) *int64

PtrInt64 is a helper routine that returns a pointer to given integer value.

func PtrString

func PtrString(v string) *string

PtrString is a helper routine that returns a pointer to given string value.

func PtrTime

func PtrTime(v time.Time) *time.Time

PtrTime is helper routine that returns a pointer to given Time value.

Types

type APIClient

type APIClient struct {
	CategoriesSubjectsAndCharacteristicsAPI *CategoriesSubjectsAndCharacteristicsAPIService

	CreatingProductCardsAPI *CreatingProductCardsAPIService

	MediaFilesAPI *MediaFilesAPIService

	PricesAndDiscountsAPI *PricesAndDiscountsAPIService

	ProductCardsAPI *ProductCardsAPIService

	SellerWarehousesAPI *SellerWarehousesAPIService

	SellerWarehousesInventoryAPI *SellerWarehousesInventoryAPIService

	TagsAPI *TagsAPIService
	// contains filtered or unexported fields
}

APIClient manages communication with the Product Management API vproducts In most cases there should be only one, shared, APIClient.

func NewAPIClient

func NewAPIClient(cfg *Configuration) *APIClient

NewAPIClient creates a new API client. Requires a userAgent string describing your application. optionally a custom http.Client to allow for advanced features such as caching.

func (*APIClient) GetConfig

func (c *APIClient) GetConfig() *Configuration

Allow modification of underlying config for alternate implementations and testing Caution: modifying the configuration while live can cause data races and potentially unwanted behavior

type APIKey

type APIKey struct {
	Key    string
	Prefix string
}

APIKey provides API key based authentication to a request passed via context using ContextAPIKey

type APIResponse

type APIResponse struct {
	*http.Response `json:"-"`
	Message        string `json:"message,omitempty"`
	// Operation is the name of the OpenAPI operation.
	Operation string `json:"operation,omitempty"`
	// RequestURL is the request URL. This value is always available, even if the
	// embedded *http.Response is nil.
	RequestURL string `json:"url,omitempty"`
	// Method is the HTTP method used for the request.  This value is always
	// available, even if the embedded *http.Response is nil.
	Method string `json:"method,omitempty"`
	// Payload holds the contents of the response body (which may be nil or empty).
	// This is provided here as the raw response.Body() reader will have already
	// been drained.
	Payload []byte `json:"-"`
}

APIResponse stores the API response returned by the server.

func NewAPIResponse

func NewAPIResponse(r *http.Response) *APIResponse

NewAPIResponse returns a new APIResponse object.

func NewAPIResponseWithError

func NewAPIResponseWithError(errorMessage string) *APIResponse

NewAPIResponseWithError returns a new APIResponse object with the provided error message.

type ApiApiContentV1BrandsGetRequest

type ApiApiContentV1BrandsGetRequest struct {
	ApiService *CategoriesSubjectsAndCharacteristicsAPIService
	// contains filtered or unexported fields
}

func (ApiApiContentV1BrandsGetRequest) Execute

func (ApiApiContentV1BrandsGetRequest) Next

Pagination parameter. Use the `next` value from the response to get the next data batch

func (ApiApiContentV1BrandsGetRequest) SubjectId

Subject ID

type ApiApiV2BufferGoodsTaskGetRequest

type ApiApiV2BufferGoodsTaskGetRequest struct {
	ApiService *PricesAndDiscountsAPIService
	// contains filtered or unexported fields
}

func (ApiApiV2BufferGoodsTaskGetRequest) Execute

func (ApiApiV2BufferGoodsTaskGetRequest) Limit

Number of elements per page (pagination)

func (ApiApiV2BufferGoodsTaskGetRequest) Offset

How many results to skip. For example, with value `10`, the response will start with the 11 element

func (ApiApiV2BufferGoodsTaskGetRequest) UploadID

Download ID

type ApiApiV2BufferTasksGetRequest

type ApiApiV2BufferTasksGetRequest struct {
	ApiService *PricesAndDiscountsAPIService
	// contains filtered or unexported fields
}

func (ApiApiV2BufferTasksGetRequest) Execute

func (ApiApiV2BufferTasksGetRequest) UploadID

Download ID

type ApiApiV2HistoryGoodsTaskGetRequest

type ApiApiV2HistoryGoodsTaskGetRequest struct {
	ApiService *PricesAndDiscountsAPIService
	// contains filtered or unexported fields
}

func (ApiApiV2HistoryGoodsTaskGetRequest) Execute

func (ApiApiV2HistoryGoodsTaskGetRequest) Limit

Number of elements per page (pagination)

func (ApiApiV2HistoryGoodsTaskGetRequest) Offset

How many results to skip. For example, with value `10`, the response will start with the 11 element

func (ApiApiV2HistoryGoodsTaskGetRequest) UploadID

Download ID

type ApiApiV2HistoryTasksGetRequest

type ApiApiV2HistoryTasksGetRequest struct {
	ApiService *PricesAndDiscountsAPIService
	// contains filtered or unexported fields
}

func (ApiApiV2HistoryTasksGetRequest) Execute

func (ApiApiV2HistoryTasksGetRequest) UploadID

Download ID

type ApiApiV2ListGoodsFilterGetRequest

type ApiApiV2ListGoodsFilterGetRequest struct {
	ApiService *PricesAndDiscountsAPIService
	// contains filtered or unexported fields
}

func (ApiApiV2ListGoodsFilterGetRequest) Execute

func (ApiApiV2ListGoodsFilterGetRequest) FilterNmID

WB article for search

func (ApiApiV2ListGoodsFilterGetRequest) Limit

Number of elements per page (pagination)

func (ApiApiV2ListGoodsFilterGetRequest) Offset

How many results to skip. For example, with value `10`, the response will start with the 11 element

type ApiApiV2ListGoodsFilterPostRequest

type ApiApiV2ListGoodsFilterPostRequest struct {
	ApiService *PricesAndDiscountsAPIService
	// contains filtered or unexported fields
}

func (ApiApiV2ListGoodsFilterPostRequest) ApiV2ListGoodsFilterPostRequest

func (r ApiApiV2ListGoodsFilterPostRequest) ApiV2ListGoodsFilterPostRequest(apiV2ListGoodsFilterPostRequest ApiV2ListGoodsFilterPostRequest) ApiApiV2ListGoodsFilterPostRequest

func (ApiApiV2ListGoodsFilterPostRequest) Execute

type ApiApiV2ListGoodsSizeNmGetRequest

type ApiApiV2ListGoodsSizeNmGetRequest struct {
	ApiService *PricesAndDiscountsAPIService
	// contains filtered or unexported fields
}

func (ApiApiV2ListGoodsSizeNmGetRequest) Execute

func (ApiApiV2ListGoodsSizeNmGetRequest) Limit

Number of elements per page (pagination)

func (ApiApiV2ListGoodsSizeNmGetRequest) NmID

WB article

func (ApiApiV2ListGoodsSizeNmGetRequest) Offset

How many results to skip. For example, with value `10`, the response will start with the 11 element

type ApiApiV2QuarantineGoodsGetRequest

type ApiApiV2QuarantineGoodsGetRequest struct {
	ApiService *PricesAndDiscountsAPIService
	// contains filtered or unexported fields
}

func (ApiApiV2QuarantineGoodsGetRequest) Execute

func (ApiApiV2QuarantineGoodsGetRequest) Limit

Number of elements per page (pagination)

func (ApiApiV2QuarantineGoodsGetRequest) Offset

How many results to skip. For example, with value `10`, the response will start with the 11 element

type ApiApiV2UploadTaskClubDiscountPostRequest

type ApiApiV2UploadTaskClubDiscountPostRequest struct {
	ApiService *PricesAndDiscountsAPIService
	// contains filtered or unexported fields
}

func (ApiApiV2UploadTaskClubDiscountPostRequest) ApiV2UploadTaskClubDiscountPostRequest

func (r ApiApiV2UploadTaskClubDiscountPostRequest) ApiV2UploadTaskClubDiscountPostRequest(apiV2UploadTaskClubDiscountPostRequest ApiV2UploadTaskClubDiscountPostRequest) ApiApiV2UploadTaskClubDiscountPostRequest

func (ApiApiV2UploadTaskClubDiscountPostRequest) Execute

type ApiApiV2UploadTaskPostRequest

type ApiApiV2UploadTaskPostRequest struct {
	ApiService *PricesAndDiscountsAPIService
	// contains filtered or unexported fields
}

func (ApiApiV2UploadTaskPostRequest) ApiV2UploadTaskPostRequest

func (r ApiApiV2UploadTaskPostRequest) ApiV2UploadTaskPostRequest(apiV2UploadTaskPostRequest ApiV2UploadTaskPostRequest) ApiApiV2UploadTaskPostRequest

func (ApiApiV2UploadTaskPostRequest) Execute

type ApiApiV2UploadTaskSizePostRequest

type ApiApiV2UploadTaskSizePostRequest struct {
	ApiService *PricesAndDiscountsAPIService
	// contains filtered or unexported fields
}

func (ApiApiV2UploadTaskSizePostRequest) ApiV2UploadTaskSizePostRequest

func (r ApiApiV2UploadTaskSizePostRequest) ApiV2UploadTaskSizePostRequest(apiV2UploadTaskSizePostRequest ApiV2UploadTaskSizePostRequest) ApiApiV2UploadTaskSizePostRequest

func (ApiApiV2UploadTaskSizePostRequest) Execute

type ApiApiV3DbwWarehousesWarehouseIdContactsGetRequest

type ApiApiV3DbwWarehousesWarehouseIdContactsGetRequest struct {
	ApiService *SellerWarehousesAPIService
	// contains filtered or unexported fields
}

func (ApiApiV3DbwWarehousesWarehouseIdContactsGetRequest) Execute

type ApiApiV3DbwWarehousesWarehouseIdContactsPutRequest

type ApiApiV3DbwWarehousesWarehouseIdContactsPutRequest struct {
	ApiService *SellerWarehousesAPIService
	// contains filtered or unexported fields
}

func (ApiApiV3DbwWarehousesWarehouseIdContactsPutRequest) Execute

func (ApiApiV3DbwWarehousesWarehouseIdContactsPutRequest) StoreContactRequestBody

type ApiApiV3OfficesGetRequest

type ApiApiV3OfficesGetRequest struct {
	ApiService *SellerWarehousesAPIService
	// contains filtered or unexported fields
}

func (ApiApiV3OfficesGetRequest) Execute

func (r ApiApiV3OfficesGetRequest) Execute() ([]Office, *http.Response, error)

type ApiApiV3StocksWarehouseIdDeleteRequest

type ApiApiV3StocksWarehouseIdDeleteRequest struct {
	ApiService *SellerWarehousesInventoryAPIService
	// contains filtered or unexported fields
}

func (ApiApiV3StocksWarehouseIdDeleteRequest) ApiV3StocksWarehouseIdDeleteRequest

func (r ApiApiV3StocksWarehouseIdDeleteRequest) ApiV3StocksWarehouseIdDeleteRequest(apiV3StocksWarehouseIdDeleteRequest ApiV3StocksWarehouseIdDeleteRequest) ApiApiV3StocksWarehouseIdDeleteRequest

func (ApiApiV3StocksWarehouseIdDeleteRequest) Execute

type ApiApiV3StocksWarehouseIdPostRequest

type ApiApiV3StocksWarehouseIdPostRequest struct {
	ApiService *SellerWarehousesInventoryAPIService
	// contains filtered or unexported fields
}

func (ApiApiV3StocksWarehouseIdPostRequest) ApiV3StocksWarehouseIdPostRequest

func (r ApiApiV3StocksWarehouseIdPostRequest) ApiV3StocksWarehouseIdPostRequest(apiV3StocksWarehouseIdPostRequest ApiV3StocksWarehouseIdPostRequest) ApiApiV3StocksWarehouseIdPostRequest

func (ApiApiV3StocksWarehouseIdPostRequest) Execute

type ApiApiV3StocksWarehouseIdPutRequest

type ApiApiV3StocksWarehouseIdPutRequest struct {
	ApiService *SellerWarehousesInventoryAPIService
	// contains filtered or unexported fields
}

func (ApiApiV3StocksWarehouseIdPutRequest) ApiV3StocksWarehouseIdPutRequest

func (r ApiApiV3StocksWarehouseIdPutRequest) ApiV3StocksWarehouseIdPutRequest(apiV3StocksWarehouseIdPutRequest ApiV3StocksWarehouseIdPutRequest) ApiApiV3StocksWarehouseIdPutRequest

func (ApiApiV3StocksWarehouseIdPutRequest) Execute

type ApiApiV3WarehousesGetRequest

type ApiApiV3WarehousesGetRequest struct {
	ApiService *SellerWarehousesAPIService
	// contains filtered or unexported fields
}

func (ApiApiV3WarehousesGetRequest) Execute

type ApiApiV3WarehousesPostRequest

type ApiApiV3WarehousesPostRequest struct {
	ApiService *SellerWarehousesAPIService
	// contains filtered or unexported fields
}

func (ApiApiV3WarehousesPostRequest) ApiV3WarehousesPostRequest

func (r ApiApiV3WarehousesPostRequest) ApiV3WarehousesPostRequest(apiV3WarehousesPostRequest ApiV3WarehousesPostRequest) ApiApiV3WarehousesPostRequest

func (ApiApiV3WarehousesPostRequest) Execute

type ApiApiV3WarehousesWarehouseIdDeleteRequest

type ApiApiV3WarehousesWarehouseIdDeleteRequest struct {
	ApiService *SellerWarehousesAPIService
	// contains filtered or unexported fields
}

func (ApiApiV3WarehousesWarehouseIdDeleteRequest) Execute

type ApiApiV3WarehousesWarehouseIdPutRequest

type ApiApiV3WarehousesWarehouseIdPutRequest struct {
	ApiService *SellerWarehousesAPIService
	// contains filtered or unexported fields
}

func (ApiApiV3WarehousesWarehouseIdPutRequest) ApiV3WarehousesWarehouseIdPutRequest

func (r ApiApiV3WarehousesWarehouseIdPutRequest) ApiV3WarehousesWarehouseIdPutRequest(apiV3WarehousesWarehouseIdPutRequest ApiV3WarehousesWarehouseIdPutRequest) ApiApiV3WarehousesWarehouseIdPutRequest

func (ApiApiV3WarehousesWarehouseIdPutRequest) Execute

type ApiContentV2BarcodesPostRequest

type ApiContentV2BarcodesPostRequest struct {
	ApiService *CreatingProductCardsAPIService
	// contains filtered or unexported fields
}

func (ApiContentV2BarcodesPostRequest) ContentV2BarcodesPostRequest

func (r ApiContentV2BarcodesPostRequest) ContentV2BarcodesPostRequest(contentV2BarcodesPostRequest ContentV2BarcodesPostRequest) ApiContentV2BarcodesPostRequest

func (ApiContentV2BarcodesPostRequest) Execute

type ApiContentV2CardsDeleteTrashPostRequest

type ApiContentV2CardsDeleteTrashPostRequest struct {
	ApiService *ProductCardsAPIService
	// contains filtered or unexported fields
}

func (ApiContentV2CardsDeleteTrashPostRequest) ContentV2CardsDeleteTrashPostRequest

func (r ApiContentV2CardsDeleteTrashPostRequest) ContentV2CardsDeleteTrashPostRequest(contentV2CardsDeleteTrashPostRequest ContentV2CardsDeleteTrashPostRequest) ApiContentV2CardsDeleteTrashPostRequest

func (ApiContentV2CardsDeleteTrashPostRequest) Execute

type ApiContentV2CardsErrorListPostRequest

type ApiContentV2CardsErrorListPostRequest struct {
	ApiService *ProductCardsAPIService
	// contains filtered or unexported fields
}

func (ApiContentV2CardsErrorListPostRequest) Execute

func (ApiContentV2CardsErrorListPostRequest) Locale

Language of subject names: - `ru` — Russian - `en` — English - `zh` — Chinese

func (ApiContentV2CardsErrorListPostRequest) RequestPublicViewerPublicErrorsTableListV2

func (r ApiContentV2CardsErrorListPostRequest) RequestPublicViewerPublicErrorsTableListV2(requestPublicViewerPublicErrorsTableListV2 RequestPublicViewerPublicErrorsTableListV2) ApiContentV2CardsErrorListPostRequest

type ApiContentV2CardsLimitsGetRequest

type ApiContentV2CardsLimitsGetRequest struct {
	ApiService *CreatingProductCardsAPIService
	// contains filtered or unexported fields
}

func (ApiContentV2CardsLimitsGetRequest) Execute

type ApiContentV2CardsMoveNmPostRequest

type ApiContentV2CardsMoveNmPostRequest struct {
	ApiService *ProductCardsAPIService
	// contains filtered or unexported fields
}

func (ApiContentV2CardsMoveNmPostRequest) ContentV2CardsMoveNmPostRequest

func (r ApiContentV2CardsMoveNmPostRequest) ContentV2CardsMoveNmPostRequest(contentV2CardsMoveNmPostRequest ContentV2CardsMoveNmPostRequest) ApiContentV2CardsMoveNmPostRequest

func (ApiContentV2CardsMoveNmPostRequest) Execute

type ApiContentV2CardsRecoverPostRequest

type ApiContentV2CardsRecoverPostRequest struct {
	ApiService *ProductCardsAPIService
	// contains filtered or unexported fields
}

func (ApiContentV2CardsRecoverPostRequest) ContentV2CardsDeleteTrashPostRequest

func (r ApiContentV2CardsRecoverPostRequest) ContentV2CardsDeleteTrashPostRequest(contentV2CardsDeleteTrashPostRequest ContentV2CardsDeleteTrashPostRequest) ApiContentV2CardsRecoverPostRequest

func (ApiContentV2CardsRecoverPostRequest) Execute

type ApiContentV2CardsUpdatePostRequest

type ApiContentV2CardsUpdatePostRequest struct {
	ApiService *ProductCardsAPIService
	// contains filtered or unexported fields
}

func (ApiContentV2CardsUpdatePostRequest) ContentV2CardsUpdatePostRequestInner

func (r ApiContentV2CardsUpdatePostRequest) ContentV2CardsUpdatePostRequestInner(contentV2CardsUpdatePostRequestInner []ContentV2CardsUpdatePostRequestInner) ApiContentV2CardsUpdatePostRequest

func (ApiContentV2CardsUpdatePostRequest) Execute

type ApiContentV2CardsUploadAddPostRequest

type ApiContentV2CardsUploadAddPostRequest struct {
	ApiService *CreatingProductCardsAPIService
	// contains filtered or unexported fields
}

func (ApiContentV2CardsUploadAddPostRequest) ContentV2CardsUploadAddPostRequest

func (r ApiContentV2CardsUploadAddPostRequest) ContentV2CardsUploadAddPostRequest(contentV2CardsUploadAddPostRequest ContentV2CardsUploadAddPostRequest) ApiContentV2CardsUploadAddPostRequest

func (ApiContentV2CardsUploadAddPostRequest) Execute

type ApiContentV2CardsUploadPostRequest

type ApiContentV2CardsUploadPostRequest struct {
	ApiService *CreatingProductCardsAPIService
	// contains filtered or unexported fields
}

func (ApiContentV2CardsUploadPostRequest) ContentV2CardsUploadPostRequestInner

func (r ApiContentV2CardsUploadPostRequest) ContentV2CardsUploadPostRequestInner(contentV2CardsUploadPostRequestInner []ContentV2CardsUploadPostRequestInner) ApiContentV2CardsUploadPostRequest

func (ApiContentV2CardsUploadPostRequest) Execute

type ApiContentV2DirectoryColorsGetRequest

type ApiContentV2DirectoryColorsGetRequest struct {
	ApiService *CategoriesSubjectsAndCharacteristicsAPIService
	// contains filtered or unexported fields
}

func (ApiContentV2DirectoryColorsGetRequest) Execute

func (ApiContentV2DirectoryColorsGetRequest) Locale

Language for response of the `subjectName` and `name` fields: - `ru` — Russian - `en` — English - `zh` — Chinese Not used in the sandbox

type ApiContentV2DirectoryCountriesGetRequest

type ApiContentV2DirectoryCountriesGetRequest struct {
	ApiService *CategoriesSubjectsAndCharacteristicsAPIService
	// contains filtered or unexported fields
}

func (ApiContentV2DirectoryCountriesGetRequest) Execute

func (ApiContentV2DirectoryCountriesGetRequest) Locale

Language for response of the `subjectName` and `name` fields: - `ru` — Russian - `en` — English - `zh` — Chinese Not used in the sandbox

type ApiContentV2DirectoryKindsGetRequest

type ApiContentV2DirectoryKindsGetRequest struct {
	ApiService *CategoriesSubjectsAndCharacteristicsAPIService
	// contains filtered or unexported fields
}

func (ApiContentV2DirectoryKindsGetRequest) Execute

func (ApiContentV2DirectoryKindsGetRequest) Locale

Language for response of the `subjectName` and `name` fields: - `ru` — Russian - `en` — English - `zh` — Chinese Not used in the sandbox

type ApiContentV2DirectorySeasonsGetRequest

type ApiContentV2DirectorySeasonsGetRequest struct {
	ApiService *CategoriesSubjectsAndCharacteristicsAPIService
	// contains filtered or unexported fields
}

func (ApiContentV2DirectorySeasonsGetRequest) Execute

func (ApiContentV2DirectorySeasonsGetRequest) Locale

Language for response of the `subjectName` and `name` fields: - `ru` — Russian - `en` — English - `zh` — Chinese Not used in the sandbox

type ApiContentV2DirectoryTnvedGetRequest

type ApiContentV2DirectoryTnvedGetRequest struct {
	ApiService *CategoriesSubjectsAndCharacteristicsAPIService
	// contains filtered or unexported fields
}

func (ApiContentV2DirectoryTnvedGetRequest) Execute

func (ApiContentV2DirectoryTnvedGetRequest) Locale

Language for response of the `subjectName` and `name` fields: - `ru` — Russian - `en` — English - `zh` — Chinese Not used in the sandbox

func (ApiContentV2DirectoryTnvedGetRequest) Search

Search by HS-code. Works only with the subjectID parameter

func (ApiContentV2DirectoryTnvedGetRequest) SubjectID

Subject ID

type ApiContentV2DirectoryVatGetRequest

type ApiContentV2DirectoryVatGetRequest struct {
	ApiService *CategoriesSubjectsAndCharacteristicsAPIService
	// contains filtered or unexported fields
}

func (ApiContentV2DirectoryVatGetRequest) Execute

func (ApiContentV2DirectoryVatGetRequest) Locale

Language for response of the `subjectName` and `name` fields: - `ru` — Russian - `en` — English - `zh` — Chinese Not used in the sandbox

type ApiContentV2GetCardsListPostRequest

type ApiContentV2GetCardsListPostRequest struct {
	ApiService *ProductCardsAPIService
	// contains filtered or unexported fields
}

func (ApiContentV2GetCardsListPostRequest) ContentV2GetCardsListPostRequest

func (r ApiContentV2GetCardsListPostRequest) ContentV2GetCardsListPostRequest(contentV2GetCardsListPostRequest ContentV2GetCardsListPostRequest) ApiContentV2GetCardsListPostRequest

func (ApiContentV2GetCardsListPostRequest) Execute

func (ApiContentV2GetCardsListPostRequest) Locale

Language for response of the `name`, `value` and `object` fields: - `ru` — Russian - `en` — English - `zh` — Chinese Not used in the sandbox

type ApiContentV2GetCardsTrashPostRequest

type ApiContentV2GetCardsTrashPostRequest struct {
	ApiService *ProductCardsAPIService
	// contains filtered or unexported fields
}

func (ApiContentV2GetCardsTrashPostRequest) ContentV2GetCardsTrashPostRequest

func (r ApiContentV2GetCardsTrashPostRequest) ContentV2GetCardsTrashPostRequest(contentV2GetCardsTrashPostRequest ContentV2GetCardsTrashPostRequest) ApiContentV2GetCardsTrashPostRequest

func (ApiContentV2GetCardsTrashPostRequest) Execute

func (ApiContentV2GetCardsTrashPostRequest) Locale

Language for response of the `name`, `value` and `object` fields: - `ru` — Russian - `en` — English - `zh` — Chinese Not used in the sandbox

type ApiContentV2ObjectAllGetRequest

type ApiContentV2ObjectAllGetRequest struct {
	ApiService *CategoriesSubjectsAndCharacteristicsAPIService
	// contains filtered or unexported fields
}

func (ApiContentV2ObjectAllGetRequest) Execute

func (ApiContentV2ObjectAllGetRequest) Limit

Number of search results, maximum 1,000

func (ApiContentV2ObjectAllGetRequest) Locale

Language for response of the `name` field: - `ru` — Russian - `en` — English - `zh` — Chinese Not used in the sandbox

func (ApiContentV2ObjectAllGetRequest) Name

Search by item name (Socks), the search works by substring and can be conducted in any of the supported languages

func (ApiContentV2ObjectAllGetRequest) Offset

How many results to skip. For example, with value `10`, the response will start with the 11 element

func (ApiContentV2ObjectAllGetRequest) ParentID

Subject parent category ID

type ApiContentV2ObjectCharcsSubjectIdGetRequest

type ApiContentV2ObjectCharcsSubjectIdGetRequest struct {
	ApiService *CategoriesSubjectsAndCharacteristicsAPIService
	// contains filtered or unexported fields
}

func (ApiContentV2ObjectCharcsSubjectIdGetRequest) Execute

func (ApiContentV2ObjectCharcsSubjectIdGetRequest) Locale

Language for response of the `subjectName` and `name` fields: - `ru` — Russian - `en` — English - `zh` — Chinese Not used in the sandbox

type ApiContentV2ObjectParentAllGetRequest

type ApiContentV2ObjectParentAllGetRequest struct {
	ApiService *CategoriesSubjectsAndCharacteristicsAPIService
	// contains filtered or unexported fields
}

func (ApiContentV2ObjectParentAllGetRequest) Execute

func (ApiContentV2ObjectParentAllGetRequest) Locale

Language for response of the `name` field: - `ru` — Russian - `en` — English - `zh` — Chinese Not used in the sandbox

type ApiContentV2TagIdDeleteRequest

type ApiContentV2TagIdDeleteRequest struct {
	ApiService *TagsAPIService
	// contains filtered or unexported fields
}

func (ApiContentV2TagIdDeleteRequest) Execute

type ApiContentV2TagIdPatchRequest

type ApiContentV2TagIdPatchRequest struct {
	ApiService *TagsAPIService
	// contains filtered or unexported fields
}

func (ApiContentV2TagIdPatchRequest) ContentV2TagIdPatchRequest

func (r ApiContentV2TagIdPatchRequest) ContentV2TagIdPatchRequest(contentV2TagIdPatchRequest ContentV2TagIdPatchRequest) ApiContentV2TagIdPatchRequest

func (ApiContentV2TagIdPatchRequest) Execute

type ApiContentV2TagNomenclatureLinkPostRequest

type ApiContentV2TagNomenclatureLinkPostRequest struct {
	ApiService *TagsAPIService
	// contains filtered or unexported fields
}

func (ApiContentV2TagNomenclatureLinkPostRequest) ContentV2TagNomenclatureLinkPostRequest

func (r ApiContentV2TagNomenclatureLinkPostRequest) ContentV2TagNomenclatureLinkPostRequest(contentV2TagNomenclatureLinkPostRequest ContentV2TagNomenclatureLinkPostRequest) ApiContentV2TagNomenclatureLinkPostRequest

func (ApiContentV2TagNomenclatureLinkPostRequest) Execute

type ApiContentV2TagPostRequest

type ApiContentV2TagPostRequest struct {
	ApiService *TagsAPIService
	// contains filtered or unexported fields
}

func (ApiContentV2TagPostRequest) ContentV2TagPostRequest

func (r ApiContentV2TagPostRequest) ContentV2TagPostRequest(contentV2TagPostRequest ContentV2TagPostRequest) ApiContentV2TagPostRequest

func (ApiContentV2TagPostRequest) Execute

type ApiContentV2TagsGetRequest

type ApiContentV2TagsGetRequest struct {
	ApiService *TagsAPIService
	// contains filtered or unexported fields
}

func (ApiContentV2TagsGetRequest) Execute

type ApiContentV3MediaFilePostRequest

type ApiContentV3MediaFilePostRequest struct {
	ApiService *MediaFilesAPIService
	// contains filtered or unexported fields
}

func (ApiContentV3MediaFilePostRequest) Execute

func (ApiContentV3MediaFilePostRequest) Uploadfile

func (ApiContentV3MediaFilePostRequest) XNmId

Wildberries article

func (ApiContentV3MediaFilePostRequest) XPhotoNumber

Number of media file, starting from `1`. To add the video set `1`. To add the image to the uploaded ones, set file the number more then number of uploaded files.

type ApiContentV3MediaSavePostRequest

type ApiContentV3MediaSavePostRequest struct {
	ApiService *MediaFilesAPIService
	// contains filtered or unexported fields
}

func (ApiContentV3MediaSavePostRequest) ContentV3MediaSavePostRequest

func (r ApiContentV3MediaSavePostRequest) ContentV3MediaSavePostRequest(contentV3MediaSavePostRequest ContentV3MediaSavePostRequest) ApiContentV3MediaSavePostRequest

func (ApiContentV3MediaSavePostRequest) Execute

type ApiV2BufferGoodsTaskGet200Response

type ApiV2BufferGoodsTaskGet200Response struct {
	Data *ApiV2BufferGoodsTaskGet200ResponseData `json:"data,omitempty"`
	// Error flag
	Error *bool `json:"error,omitempty"`
	// Error text
	ErrorText *string `json:"errorText,omitempty"`
}

ApiV2BufferGoodsTaskGet200Response struct for ApiV2BufferGoodsTaskGet200Response

func NewApiV2BufferGoodsTaskGet200Response

func NewApiV2BufferGoodsTaskGet200Response() *ApiV2BufferGoodsTaskGet200Response

NewApiV2BufferGoodsTaskGet200Response instantiates a new ApiV2BufferGoodsTaskGet200Response 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

func NewApiV2BufferGoodsTaskGet200ResponseWithDefaults

func NewApiV2BufferGoodsTaskGet200ResponseWithDefaults() *ApiV2BufferGoodsTaskGet200Response

NewApiV2BufferGoodsTaskGet200ResponseWithDefaults instantiates a new ApiV2BufferGoodsTaskGet200Response 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

func (*ApiV2BufferGoodsTaskGet200Response) GetData

GetData returns the Data field value if set, zero value otherwise.

func (*ApiV2BufferGoodsTaskGet200Response) GetDataOk

GetDataOk returns a tuple with the Data field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ApiV2BufferGoodsTaskGet200Response) GetError

GetError returns the Error field value if set, zero value otherwise.

func (*ApiV2BufferGoodsTaskGet200Response) GetErrorOk

func (o *ApiV2BufferGoodsTaskGet200Response) GetErrorOk() (*bool, bool)

GetErrorOk returns a tuple with the Error field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ApiV2BufferGoodsTaskGet200Response) GetErrorText

func (o *ApiV2BufferGoodsTaskGet200Response) GetErrorText() string

GetErrorText returns the ErrorText field value if set, zero value otherwise.

func (*ApiV2BufferGoodsTaskGet200Response) GetErrorTextOk

func (o *ApiV2BufferGoodsTaskGet200Response) GetErrorTextOk() (*string, bool)

GetErrorTextOk returns a tuple with the ErrorText field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ApiV2BufferGoodsTaskGet200Response) HasData

HasData returns a boolean if a field has been set.

func (*ApiV2BufferGoodsTaskGet200Response) HasError

HasError returns a boolean if a field has been set.

func (*ApiV2BufferGoodsTaskGet200Response) HasErrorText

func (o *ApiV2BufferGoodsTaskGet200Response) HasErrorText() bool

HasErrorText returns a boolean if a field has been set.

func (ApiV2BufferGoodsTaskGet200Response) MarshalJSON

func (o ApiV2BufferGoodsTaskGet200Response) MarshalJSON() ([]byte, error)

func (*ApiV2BufferGoodsTaskGet200Response) SetData

SetData gets a reference to the given ApiV2BufferGoodsTaskGet200ResponseData and assigns it to the Data field.

func (*ApiV2BufferGoodsTaskGet200Response) SetError

SetError gets a reference to the given bool and assigns it to the Error field.

func (*ApiV2BufferGoodsTaskGet200Response) SetErrorText

func (o *ApiV2BufferGoodsTaskGet200Response) SetErrorText(v string)

SetErrorText gets a reference to the given string and assigns it to the ErrorText field.

func (ApiV2BufferGoodsTaskGet200Response) ToMap

func (o ApiV2BufferGoodsTaskGet200Response) ToMap() (map[string]interface{}, error)

type ApiV2BufferGoodsTaskGet200ResponseData

type ApiV2BufferGoodsTaskGet200ResponseData struct {
	// Upload ID
	UploadID NullableInt32 `json:"uploadID,omitempty"`
	// Data of products in the upload
	BufferGoods []GoodBufferHistory `json:"bufferGoods,omitempty"`
}

ApiV2BufferGoodsTaskGet200ResponseData Response data

func NewApiV2BufferGoodsTaskGet200ResponseData

func NewApiV2BufferGoodsTaskGet200ResponseData() *ApiV2BufferGoodsTaskGet200ResponseData

NewApiV2BufferGoodsTaskGet200ResponseData instantiates a new ApiV2BufferGoodsTaskGet200ResponseData 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

func NewApiV2BufferGoodsTaskGet200ResponseDataWithDefaults

func NewApiV2BufferGoodsTaskGet200ResponseDataWithDefaults() *ApiV2BufferGoodsTaskGet200ResponseData

NewApiV2BufferGoodsTaskGet200ResponseDataWithDefaults instantiates a new ApiV2BufferGoodsTaskGet200ResponseData 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

func (*ApiV2BufferGoodsTaskGet200ResponseData) GetBufferGoods

GetBufferGoods returns the BufferGoods field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ApiV2BufferGoodsTaskGet200ResponseData) GetBufferGoodsOk

GetBufferGoodsOk returns a tuple with the BufferGoods field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*ApiV2BufferGoodsTaskGet200ResponseData) GetUploadID

GetUploadID returns the UploadID field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ApiV2BufferGoodsTaskGet200ResponseData) GetUploadIDOk

func (o *ApiV2BufferGoodsTaskGet200ResponseData) GetUploadIDOk() (*int32, bool)

GetUploadIDOk returns a tuple with the UploadID field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*ApiV2BufferGoodsTaskGet200ResponseData) HasBufferGoods

func (o *ApiV2BufferGoodsTaskGet200ResponseData) HasBufferGoods() bool

HasBufferGoods returns a boolean if a field has been set.

func (*ApiV2BufferGoodsTaskGet200ResponseData) HasUploadID

HasUploadID returns a boolean if a field has been set.

func (ApiV2BufferGoodsTaskGet200ResponseData) MarshalJSON

func (o ApiV2BufferGoodsTaskGet200ResponseData) MarshalJSON() ([]byte, error)

func (*ApiV2BufferGoodsTaskGet200ResponseData) SetBufferGoods

SetBufferGoods gets a reference to the given []GoodBufferHistory and assigns it to the BufferGoods field.

func (*ApiV2BufferGoodsTaskGet200ResponseData) SetUploadID

SetUploadID gets a reference to the given NullableInt32 and assigns it to the UploadID field.

func (*ApiV2BufferGoodsTaskGet200ResponseData) SetUploadIDNil

func (o *ApiV2BufferGoodsTaskGet200ResponseData) SetUploadIDNil()

SetUploadIDNil sets the value for UploadID to be an explicit nil

func (ApiV2BufferGoodsTaskGet200ResponseData) ToMap

func (o ApiV2BufferGoodsTaskGet200ResponseData) ToMap() (map[string]interface{}, error)

func (*ApiV2BufferGoodsTaskGet200ResponseData) UnsetUploadID

func (o *ApiV2BufferGoodsTaskGet200ResponseData) UnsetUploadID()

UnsetUploadID ensures that no value is present for UploadID, not even an explicit nil

type ApiV2BufferTasksGet200Response

type ApiV2BufferTasksGet200Response struct {
	Data NullableSupplierTaskMetadataBuffer `json:"data,omitempty"`
	// Error flag
	Error *bool `json:"error,omitempty"`
	// Error text
	ErrorText *string `json:"errorText,omitempty"`
}

ApiV2BufferTasksGet200Response struct for ApiV2BufferTasksGet200Response

func NewApiV2BufferTasksGet200Response

func NewApiV2BufferTasksGet200Response() *ApiV2BufferTasksGet200Response

NewApiV2BufferTasksGet200Response instantiates a new ApiV2BufferTasksGet200Response 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

func NewApiV2BufferTasksGet200ResponseWithDefaults

func NewApiV2BufferTasksGet200ResponseWithDefaults() *ApiV2BufferTasksGet200Response

NewApiV2BufferTasksGet200ResponseWithDefaults instantiates a new ApiV2BufferTasksGet200Response 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

func (*ApiV2BufferTasksGet200Response) GetData

GetData returns the Data field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ApiV2BufferTasksGet200Response) GetDataOk

GetDataOk returns a tuple with the Data field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*ApiV2BufferTasksGet200Response) GetError

func (o *ApiV2BufferTasksGet200Response) GetError() bool

GetError returns the Error field value if set, zero value otherwise.

func (*ApiV2BufferTasksGet200Response) GetErrorOk

func (o *ApiV2BufferTasksGet200Response) GetErrorOk() (*bool, bool)

GetErrorOk returns a tuple with the Error field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ApiV2BufferTasksGet200Response) GetErrorText

func (o *ApiV2BufferTasksGet200Response) GetErrorText() string

GetErrorText returns the ErrorText field value if set, zero value otherwise.

func (*ApiV2BufferTasksGet200Response) GetErrorTextOk

func (o *ApiV2BufferTasksGet200Response) GetErrorTextOk() (*string, bool)

GetErrorTextOk returns a tuple with the ErrorText field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ApiV2BufferTasksGet200Response) HasData

func (o *ApiV2BufferTasksGet200Response) HasData() bool

HasData returns a boolean if a field has been set.

func (*ApiV2BufferTasksGet200Response) HasError

func (o *ApiV2BufferTasksGet200Response) HasError() bool

HasError returns a boolean if a field has been set.

func (*ApiV2BufferTasksGet200Response) HasErrorText

func (o *ApiV2BufferTasksGet200Response) HasErrorText() bool

HasErrorText returns a boolean if a field has been set.

func (ApiV2BufferTasksGet200Response) MarshalJSON

func (o ApiV2BufferTasksGet200Response) MarshalJSON() ([]byte, error)

func (*ApiV2BufferTasksGet200Response) SetData

SetData gets a reference to the given NullableSupplierTaskMetadataBuffer and assigns it to the Data field.

func (*ApiV2BufferTasksGet200Response) SetDataNil

func (o *ApiV2BufferTasksGet200Response) SetDataNil()

SetDataNil sets the value for Data to be an explicit nil

func (*ApiV2BufferTasksGet200Response) SetError

func (o *ApiV2BufferTasksGet200Response) SetError(v bool)

SetError gets a reference to the given bool and assigns it to the Error field.

func (*ApiV2BufferTasksGet200Response) SetErrorText

func (o *ApiV2BufferTasksGet200Response) SetErrorText(v string)

SetErrorText gets a reference to the given string and assigns it to the ErrorText field.

func (ApiV2BufferTasksGet200Response) ToMap

func (o ApiV2BufferTasksGet200Response) ToMap() (map[string]interface{}, error)

func (*ApiV2BufferTasksGet200Response) UnsetData

func (o *ApiV2BufferTasksGet200Response) UnsetData()

UnsetData ensures that no value is present for Data, not even an explicit nil

type ApiV2HistoryGoodsTaskGet200Response

type ApiV2HistoryGoodsTaskGet200Response struct {
	Data *ApiV2HistoryGoodsTaskGet200ResponseData `json:"data,omitempty"`
}

ApiV2HistoryGoodsTaskGet200Response struct for ApiV2HistoryGoodsTaskGet200Response

func NewApiV2HistoryGoodsTaskGet200Response

func NewApiV2HistoryGoodsTaskGet200Response() *ApiV2HistoryGoodsTaskGet200Response

NewApiV2HistoryGoodsTaskGet200Response instantiates a new ApiV2HistoryGoodsTaskGet200Response 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

func NewApiV2HistoryGoodsTaskGet200ResponseWithDefaults

func NewApiV2HistoryGoodsTaskGet200ResponseWithDefaults() *ApiV2HistoryGoodsTaskGet200Response

NewApiV2HistoryGoodsTaskGet200ResponseWithDefaults instantiates a new ApiV2HistoryGoodsTaskGet200Response 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

func (*ApiV2HistoryGoodsTaskGet200Response) GetData

GetData returns the Data field value if set, zero value otherwise.

func (*ApiV2HistoryGoodsTaskGet200Response) GetDataOk

GetDataOk returns a tuple with the Data field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ApiV2HistoryGoodsTaskGet200Response) HasData

HasData returns a boolean if a field has been set.

func (ApiV2HistoryGoodsTaskGet200Response) MarshalJSON

func (o ApiV2HistoryGoodsTaskGet200Response) MarshalJSON() ([]byte, error)

func (*ApiV2HistoryGoodsTaskGet200Response) SetData

SetData gets a reference to the given ApiV2HistoryGoodsTaskGet200ResponseData and assigns it to the Data field.

func (ApiV2HistoryGoodsTaskGet200Response) ToMap

func (o ApiV2HistoryGoodsTaskGet200Response) ToMap() (map[string]interface{}, error)

type ApiV2HistoryGoodsTaskGet200ResponseData

type ApiV2HistoryGoodsTaskGet200ResponseData struct {
	// Upload ID
	UploadID *int32 `json:"uploadID,omitempty"`
	// Data of products in the upload
	HistoryGoods []GoodHistory `json:"historyGoods,omitempty"`
}

ApiV2HistoryGoodsTaskGet200ResponseData Response data

func NewApiV2HistoryGoodsTaskGet200ResponseData

func NewApiV2HistoryGoodsTaskGet200ResponseData() *ApiV2HistoryGoodsTaskGet200ResponseData

NewApiV2HistoryGoodsTaskGet200ResponseData instantiates a new ApiV2HistoryGoodsTaskGet200ResponseData 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

func NewApiV2HistoryGoodsTaskGet200ResponseDataWithDefaults

func NewApiV2HistoryGoodsTaskGet200ResponseDataWithDefaults() *ApiV2HistoryGoodsTaskGet200ResponseData

NewApiV2HistoryGoodsTaskGet200ResponseDataWithDefaults instantiates a new ApiV2HistoryGoodsTaskGet200ResponseData 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

func (*ApiV2HistoryGoodsTaskGet200ResponseData) GetHistoryGoods

GetHistoryGoods returns the HistoryGoods field value if set, zero value otherwise.

func (*ApiV2HistoryGoodsTaskGet200ResponseData) GetHistoryGoodsOk

func (o *ApiV2HistoryGoodsTaskGet200ResponseData) GetHistoryGoodsOk() ([]GoodHistory, bool)

GetHistoryGoodsOk returns a tuple with the HistoryGoods field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ApiV2HistoryGoodsTaskGet200ResponseData) GetUploadID

GetUploadID returns the UploadID field value if set, zero value otherwise.

func (*ApiV2HistoryGoodsTaskGet200ResponseData) GetUploadIDOk

func (o *ApiV2HistoryGoodsTaskGet200ResponseData) GetUploadIDOk() (*int32, bool)

GetUploadIDOk returns a tuple with the UploadID field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ApiV2HistoryGoodsTaskGet200ResponseData) HasHistoryGoods

func (o *ApiV2HistoryGoodsTaskGet200ResponseData) HasHistoryGoods() bool

HasHistoryGoods returns a boolean if a field has been set.

func (*ApiV2HistoryGoodsTaskGet200ResponseData) HasUploadID

HasUploadID returns a boolean if a field has been set.

func (ApiV2HistoryGoodsTaskGet200ResponseData) MarshalJSON

func (o ApiV2HistoryGoodsTaskGet200ResponseData) MarshalJSON() ([]byte, error)

func (*ApiV2HistoryGoodsTaskGet200ResponseData) SetHistoryGoods

func (o *ApiV2HistoryGoodsTaskGet200ResponseData) SetHistoryGoods(v []GoodHistory)

SetHistoryGoods gets a reference to the given []GoodHistory and assigns it to the HistoryGoods field.

func (*ApiV2HistoryGoodsTaskGet200ResponseData) SetUploadID

SetUploadID gets a reference to the given int32 and assigns it to the UploadID field.

func (ApiV2HistoryGoodsTaskGet200ResponseData) ToMap

func (o ApiV2HistoryGoodsTaskGet200ResponseData) ToMap() (map[string]interface{}, error)

type ApiV2HistoryTasksGet200Response

type ApiV2HistoryTasksGet200Response struct {
	Data NullableSupplierTaskMetadata `json:"data,omitempty"`
	// Error flag
	Error *bool `json:"error,omitempty"`
	// Error text
	ErrorText *string `json:"errorText,omitempty"`
}

ApiV2HistoryTasksGet200Response struct for ApiV2HistoryTasksGet200Response

func NewApiV2HistoryTasksGet200Response

func NewApiV2HistoryTasksGet200Response() *ApiV2HistoryTasksGet200Response

NewApiV2HistoryTasksGet200Response instantiates a new ApiV2HistoryTasksGet200Response 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

func NewApiV2HistoryTasksGet200ResponseWithDefaults

func NewApiV2HistoryTasksGet200ResponseWithDefaults() *ApiV2HistoryTasksGet200Response

NewApiV2HistoryTasksGet200ResponseWithDefaults instantiates a new ApiV2HistoryTasksGet200Response 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

func (*ApiV2HistoryTasksGet200Response) GetData

GetData returns the Data field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ApiV2HistoryTasksGet200Response) GetDataOk

GetDataOk returns a tuple with the Data field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*ApiV2HistoryTasksGet200Response) GetError

func (o *ApiV2HistoryTasksGet200Response) GetError() bool

GetError returns the Error field value if set, zero value otherwise.

func (*ApiV2HistoryTasksGet200Response) GetErrorOk

func (o *ApiV2HistoryTasksGet200Response) GetErrorOk() (*bool, bool)

GetErrorOk returns a tuple with the Error field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ApiV2HistoryTasksGet200Response) GetErrorText

func (o *ApiV2HistoryTasksGet200Response) GetErrorText() string

GetErrorText returns the ErrorText field value if set, zero value otherwise.

func (*ApiV2HistoryTasksGet200Response) GetErrorTextOk

func (o *ApiV2HistoryTasksGet200Response) GetErrorTextOk() (*string, bool)

GetErrorTextOk returns a tuple with the ErrorText field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ApiV2HistoryTasksGet200Response) HasData

HasData returns a boolean if a field has been set.

func (*ApiV2HistoryTasksGet200Response) HasError

func (o *ApiV2HistoryTasksGet200Response) HasError() bool

HasError returns a boolean if a field has been set.

func (*ApiV2HistoryTasksGet200Response) HasErrorText

func (o *ApiV2HistoryTasksGet200Response) HasErrorText() bool

HasErrorText returns a boolean if a field has been set.

func (ApiV2HistoryTasksGet200Response) MarshalJSON

func (o ApiV2HistoryTasksGet200Response) MarshalJSON() ([]byte, error)

func (*ApiV2HistoryTasksGet200Response) SetData

SetData gets a reference to the given NullableSupplierTaskMetadata and assigns it to the Data field.

func (*ApiV2HistoryTasksGet200Response) SetDataNil

func (o *ApiV2HistoryTasksGet200Response) SetDataNil()

SetDataNil sets the value for Data to be an explicit nil

func (*ApiV2HistoryTasksGet200Response) SetError

func (o *ApiV2HistoryTasksGet200Response) SetError(v bool)

SetError gets a reference to the given bool and assigns it to the Error field.

func (*ApiV2HistoryTasksGet200Response) SetErrorText

func (o *ApiV2HistoryTasksGet200Response) SetErrorText(v string)

SetErrorText gets a reference to the given string and assigns it to the ErrorText field.

func (ApiV2HistoryTasksGet200Response) ToMap

func (o ApiV2HistoryTasksGet200Response) ToMap() (map[string]interface{}, error)

func (*ApiV2HistoryTasksGet200Response) UnsetData

func (o *ApiV2HistoryTasksGet200Response) UnsetData()

UnsetData ensures that no value is present for Data, not even an explicit nil

type ApiV2ListGoodsFilterGet200Response

type ApiV2ListGoodsFilterGet200Response struct {
	Data ApiV2ListGoodsFilterGet200ResponseData `json:"data"`
	// Error flag
	Error bool `json:"error"`
	// Error text
	ErrorText string `json:"errorText"`
}

ApiV2ListGoodsFilterGet200Response struct for ApiV2ListGoodsFilterGet200Response

func NewApiV2ListGoodsFilterGet200Response

func NewApiV2ListGoodsFilterGet200Response(data ApiV2ListGoodsFilterGet200ResponseData, error_ bool, errorText string) *ApiV2ListGoodsFilterGet200Response

NewApiV2ListGoodsFilterGet200Response instantiates a new ApiV2ListGoodsFilterGet200Response 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

func NewApiV2ListGoodsFilterGet200ResponseWithDefaults

func NewApiV2ListGoodsFilterGet200ResponseWithDefaults() *ApiV2ListGoodsFilterGet200Response

NewApiV2ListGoodsFilterGet200ResponseWithDefaults instantiates a new ApiV2ListGoodsFilterGet200Response 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

func (*ApiV2ListGoodsFilterGet200Response) GetData

GetData returns the Data field value

func (*ApiV2ListGoodsFilterGet200Response) GetDataOk

GetDataOk returns a tuple with the Data field value and a boolean to check if the value has been set.

func (*ApiV2ListGoodsFilterGet200Response) GetError

GetError returns the Error field value

func (*ApiV2ListGoodsFilterGet200Response) GetErrorOk

func (o *ApiV2ListGoodsFilterGet200Response) GetErrorOk() (*bool, bool)

GetErrorOk returns a tuple with the Error field value and a boolean to check if the value has been set.

func (*ApiV2ListGoodsFilterGet200Response) GetErrorText

func (o *ApiV2ListGoodsFilterGet200Response) GetErrorText() string

GetErrorText returns the ErrorText field value

func (*ApiV2ListGoodsFilterGet200Response) GetErrorTextOk

func (o *ApiV2ListGoodsFilterGet200Response) GetErrorTextOk() (*string, bool)

GetErrorTextOk returns a tuple with the ErrorText field value and a boolean to check if the value has been set.

func (ApiV2ListGoodsFilterGet200Response) MarshalJSON

func (o ApiV2ListGoodsFilterGet200Response) MarshalJSON() ([]byte, error)

func (*ApiV2ListGoodsFilterGet200Response) SetData

SetData sets field value

func (*ApiV2ListGoodsFilterGet200Response) SetError

SetError sets field value

func (*ApiV2ListGoodsFilterGet200Response) SetErrorText

func (o *ApiV2ListGoodsFilterGet200Response) SetErrorText(v string)

SetErrorText sets field value

func (ApiV2ListGoodsFilterGet200Response) ToMap

func (o ApiV2ListGoodsFilterGet200Response) ToMap() (map[string]interface{}, error)

func (*ApiV2ListGoodsFilterGet200Response) UnmarshalJSON

func (o *ApiV2ListGoodsFilterGet200Response) UnmarshalJSON(data []byte) (err error)

type ApiV2ListGoodsFilterGet200ResponseData

type ApiV2ListGoodsFilterGet200ResponseData struct {
	// Product information
	ListGoods []GoodsList `json:"listGoods"`
}

ApiV2ListGoodsFilterGet200ResponseData Response data

func NewApiV2ListGoodsFilterGet200ResponseData

func NewApiV2ListGoodsFilterGet200ResponseData(listGoods []GoodsList) *ApiV2ListGoodsFilterGet200ResponseData

NewApiV2ListGoodsFilterGet200ResponseData instantiates a new ApiV2ListGoodsFilterGet200ResponseData 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

func NewApiV2ListGoodsFilterGet200ResponseDataWithDefaults

func NewApiV2ListGoodsFilterGet200ResponseDataWithDefaults() *ApiV2ListGoodsFilterGet200ResponseData

NewApiV2ListGoodsFilterGet200ResponseDataWithDefaults instantiates a new ApiV2ListGoodsFilterGet200ResponseData 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

func (*ApiV2ListGoodsFilterGet200ResponseData) GetListGoods

GetListGoods returns the ListGoods field value

func (*ApiV2ListGoodsFilterGet200ResponseData) GetListGoodsOk

func (o *ApiV2ListGoodsFilterGet200ResponseData) GetListGoodsOk() ([]GoodsList, bool)

GetListGoodsOk returns a tuple with the ListGoods field value and a boolean to check if the value has been set.

func (ApiV2ListGoodsFilterGet200ResponseData) MarshalJSON

func (o ApiV2ListGoodsFilterGet200ResponseData) MarshalJSON() ([]byte, error)

func (*ApiV2ListGoodsFilterGet200ResponseData) SetListGoods

SetListGoods sets field value

func (ApiV2ListGoodsFilterGet200ResponseData) ToMap

func (o ApiV2ListGoodsFilterGet200ResponseData) ToMap() (map[string]interface{}, error)

func (*ApiV2ListGoodsFilterGet200ResponseData) UnmarshalJSON

func (o *ApiV2ListGoodsFilterGet200ResponseData) UnmarshalJSON(data []byte) (err error)

type ApiV2ListGoodsFilterPostRequest

type ApiV2ListGoodsFilterPostRequest struct {
	// WB articles for search
	NmList []int32 `json:"nmList"`
}

ApiV2ListGoodsFilterPostRequest struct for ApiV2ListGoodsFilterPostRequest

func NewApiV2ListGoodsFilterPostRequest

func NewApiV2ListGoodsFilterPostRequest(nmList []int32) *ApiV2ListGoodsFilterPostRequest

NewApiV2ListGoodsFilterPostRequest instantiates a new ApiV2ListGoodsFilterPostRequest 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

func NewApiV2ListGoodsFilterPostRequestWithDefaults

func NewApiV2ListGoodsFilterPostRequestWithDefaults() *ApiV2ListGoodsFilterPostRequest

NewApiV2ListGoodsFilterPostRequestWithDefaults instantiates a new ApiV2ListGoodsFilterPostRequest 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

func (*ApiV2ListGoodsFilterPostRequest) GetNmList

func (o *ApiV2ListGoodsFilterPostRequest) GetNmList() []int32

GetNmList returns the NmList field value

func (*ApiV2ListGoodsFilterPostRequest) GetNmListOk

func (o *ApiV2ListGoodsFilterPostRequest) GetNmListOk() ([]int32, bool)

GetNmListOk returns a tuple with the NmList field value and a boolean to check if the value has been set.

func (ApiV2ListGoodsFilterPostRequest) MarshalJSON

func (o ApiV2ListGoodsFilterPostRequest) MarshalJSON() ([]byte, error)

func (*ApiV2ListGoodsFilterPostRequest) SetNmList

func (o *ApiV2ListGoodsFilterPostRequest) SetNmList(v []int32)

SetNmList sets field value

func (ApiV2ListGoodsFilterPostRequest) ToMap

func (o ApiV2ListGoodsFilterPostRequest) ToMap() (map[string]interface{}, error)

func (*ApiV2ListGoodsFilterPostRequest) UnmarshalJSON

func (o *ApiV2ListGoodsFilterPostRequest) UnmarshalJSON(data []byte) (err error)

type ApiV2ListGoodsSizeNmGet200Response

type ApiV2ListGoodsSizeNmGet200Response struct {
	Data *ApiV2ListGoodsSizeNmGet200ResponseData `json:"data,omitempty"`
	// Error flag
	Error *bool `json:"error,omitempty"`
	// Error text
	ErrorText *string `json:"errorText,omitempty"`
}

ApiV2ListGoodsSizeNmGet200Response struct for ApiV2ListGoodsSizeNmGet200Response

func NewApiV2ListGoodsSizeNmGet200Response

func NewApiV2ListGoodsSizeNmGet200Response() *ApiV2ListGoodsSizeNmGet200Response

NewApiV2ListGoodsSizeNmGet200Response instantiates a new ApiV2ListGoodsSizeNmGet200Response 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

func NewApiV2ListGoodsSizeNmGet200ResponseWithDefaults

func NewApiV2ListGoodsSizeNmGet200ResponseWithDefaults() *ApiV2ListGoodsSizeNmGet200Response

NewApiV2ListGoodsSizeNmGet200ResponseWithDefaults instantiates a new ApiV2ListGoodsSizeNmGet200Response 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

func (*ApiV2ListGoodsSizeNmGet200Response) GetData

GetData returns the Data field value if set, zero value otherwise.

func (*ApiV2ListGoodsSizeNmGet200Response) GetDataOk

GetDataOk returns a tuple with the Data field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ApiV2ListGoodsSizeNmGet200Response) GetError

GetError returns the Error field value if set, zero value otherwise.

func (*ApiV2ListGoodsSizeNmGet200Response) GetErrorOk

func (o *ApiV2ListGoodsSizeNmGet200Response) GetErrorOk() (*bool, bool)

GetErrorOk returns a tuple with the Error field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ApiV2ListGoodsSizeNmGet200Response) GetErrorText

func (o *ApiV2ListGoodsSizeNmGet200Response) GetErrorText() string

GetErrorText returns the ErrorText field value if set, zero value otherwise.

func (*ApiV2ListGoodsSizeNmGet200Response) GetErrorTextOk

func (o *ApiV2ListGoodsSizeNmGet200Response) GetErrorTextOk() (*string, bool)

GetErrorTextOk returns a tuple with the ErrorText field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ApiV2ListGoodsSizeNmGet200Response) HasData

HasData returns a boolean if a field has been set.

func (*ApiV2ListGoodsSizeNmGet200Response) HasError

HasError returns a boolean if a field has been set.

func (*ApiV2ListGoodsSizeNmGet200Response) HasErrorText

func (o *ApiV2ListGoodsSizeNmGet200Response) HasErrorText() bool

HasErrorText returns a boolean if a field has been set.

func (ApiV2ListGoodsSizeNmGet200Response) MarshalJSON

func (o ApiV2ListGoodsSizeNmGet200Response) MarshalJSON() ([]byte, error)

func (*ApiV2ListGoodsSizeNmGet200Response) SetData

SetData gets a reference to the given ApiV2ListGoodsSizeNmGet200ResponseData and assigns it to the Data field.

func (*ApiV2ListGoodsSizeNmGet200Response) SetError

SetError gets a reference to the given bool and assigns it to the Error field.

func (*ApiV2ListGoodsSizeNmGet200Response) SetErrorText

func (o *ApiV2ListGoodsSizeNmGet200Response) SetErrorText(v string)

SetErrorText gets a reference to the given string and assigns it to the ErrorText field.

func (ApiV2ListGoodsSizeNmGet200Response) ToMap

func (o ApiV2ListGoodsSizeNmGet200Response) ToMap() (map[string]interface{}, error)

type ApiV2ListGoodsSizeNmGet200ResponseData

type ApiV2ListGoodsSizeNmGet200ResponseData struct {
	// Product sizes
	ListGoods []SizeGood `json:"listGoods,omitempty"`
}

ApiV2ListGoodsSizeNmGet200ResponseData Response data

func NewApiV2ListGoodsSizeNmGet200ResponseData

func NewApiV2ListGoodsSizeNmGet200ResponseData() *ApiV2ListGoodsSizeNmGet200ResponseData

NewApiV2ListGoodsSizeNmGet200ResponseData instantiates a new ApiV2ListGoodsSizeNmGet200ResponseData 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

func NewApiV2ListGoodsSizeNmGet200ResponseDataWithDefaults

func NewApiV2ListGoodsSizeNmGet200ResponseDataWithDefaults() *ApiV2ListGoodsSizeNmGet200ResponseData

NewApiV2ListGoodsSizeNmGet200ResponseDataWithDefaults instantiates a new ApiV2ListGoodsSizeNmGet200ResponseData 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

func (*ApiV2ListGoodsSizeNmGet200ResponseData) GetListGoods

GetListGoods returns the ListGoods field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ApiV2ListGoodsSizeNmGet200ResponseData) GetListGoodsOk

func (o *ApiV2ListGoodsSizeNmGet200ResponseData) GetListGoodsOk() ([]SizeGood, bool)

GetListGoodsOk returns a tuple with the ListGoods field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*ApiV2ListGoodsSizeNmGet200ResponseData) HasListGoods

func (o *ApiV2ListGoodsSizeNmGet200ResponseData) HasListGoods() bool

HasListGoods returns a boolean if a field has been set.

func (ApiV2ListGoodsSizeNmGet200ResponseData) MarshalJSON

func (o ApiV2ListGoodsSizeNmGet200ResponseData) MarshalJSON() ([]byte, error)

func (*ApiV2ListGoodsSizeNmGet200ResponseData) SetListGoods

func (o *ApiV2ListGoodsSizeNmGet200ResponseData) SetListGoods(v []SizeGood)

SetListGoods gets a reference to the given []SizeGood and assigns it to the ListGoods field.

func (ApiV2ListGoodsSizeNmGet200ResponseData) ToMap

func (o ApiV2ListGoodsSizeNmGet200ResponseData) ToMap() (map[string]interface{}, error)

type ApiV2QuarantineGoodsGet200Response

type ApiV2QuarantineGoodsGet200Response struct {
	Data NullableApiV2QuarantineGoodsGet200ResponseData `json:"data,omitempty"`
	// Error flag
	Error *bool `json:"error,omitempty"`
	// Error text
	ErrorText *string `json:"errorText,omitempty"`
}

ApiV2QuarantineGoodsGet200Response struct for ApiV2QuarantineGoodsGet200Response

func NewApiV2QuarantineGoodsGet200Response

func NewApiV2QuarantineGoodsGet200Response() *ApiV2QuarantineGoodsGet200Response

NewApiV2QuarantineGoodsGet200Response instantiates a new ApiV2QuarantineGoodsGet200Response 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

func NewApiV2QuarantineGoodsGet200ResponseWithDefaults

func NewApiV2QuarantineGoodsGet200ResponseWithDefaults() *ApiV2QuarantineGoodsGet200Response

NewApiV2QuarantineGoodsGet200ResponseWithDefaults instantiates a new ApiV2QuarantineGoodsGet200Response 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

func (*ApiV2QuarantineGoodsGet200Response) GetData

GetData returns the Data field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ApiV2QuarantineGoodsGet200Response) GetDataOk

GetDataOk returns a tuple with the Data field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*ApiV2QuarantineGoodsGet200Response) GetError

GetError returns the Error field value if set, zero value otherwise.

func (*ApiV2QuarantineGoodsGet200Response) GetErrorOk

func (o *ApiV2QuarantineGoodsGet200Response) GetErrorOk() (*bool, bool)

GetErrorOk returns a tuple with the Error field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ApiV2QuarantineGoodsGet200Response) GetErrorText

func (o *ApiV2QuarantineGoodsGet200Response) GetErrorText() string

GetErrorText returns the ErrorText field value if set, zero value otherwise.

func (*ApiV2QuarantineGoodsGet200Response) GetErrorTextOk

func (o *ApiV2QuarantineGoodsGet200Response) GetErrorTextOk() (*string, bool)

GetErrorTextOk returns a tuple with the ErrorText field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ApiV2QuarantineGoodsGet200Response) HasData

HasData returns a boolean if a field has been set.

func (*ApiV2QuarantineGoodsGet200Response) HasError

HasError returns a boolean if a field has been set.

func (*ApiV2QuarantineGoodsGet200Response) HasErrorText

func (o *ApiV2QuarantineGoodsGet200Response) HasErrorText() bool

HasErrorText returns a boolean if a field has been set.

func (ApiV2QuarantineGoodsGet200Response) MarshalJSON

func (o ApiV2QuarantineGoodsGet200Response) MarshalJSON() ([]byte, error)

func (*ApiV2QuarantineGoodsGet200Response) SetData

SetData gets a reference to the given NullableApiV2QuarantineGoodsGet200ResponseData and assigns it to the Data field.

func (*ApiV2QuarantineGoodsGet200Response) SetDataNil

func (o *ApiV2QuarantineGoodsGet200Response) SetDataNil()

SetDataNil sets the value for Data to be an explicit nil

func (*ApiV2QuarantineGoodsGet200Response) SetError

SetError gets a reference to the given bool and assigns it to the Error field.

func (*ApiV2QuarantineGoodsGet200Response) SetErrorText

func (o *ApiV2QuarantineGoodsGet200Response) SetErrorText(v string)

SetErrorText gets a reference to the given string and assigns it to the ErrorText field.

func (ApiV2QuarantineGoodsGet200Response) ToMap

func (o ApiV2QuarantineGoodsGet200Response) ToMap() (map[string]interface{}, error)

func (*ApiV2QuarantineGoodsGet200Response) UnsetData

func (o *ApiV2QuarantineGoodsGet200Response) UnsetData()

UnsetData ensures that no value is present for Data, not even an explicit nil

type ApiV2QuarantineGoodsGet200ResponseData

type ApiV2QuarantineGoodsGet200ResponseData struct {
	// Information about products in quarantine
	QuarantineGoods []QuarantineGoods `json:"quarantineGoods,omitempty"`
}

ApiV2QuarantineGoodsGet200ResponseData Response data

func NewApiV2QuarantineGoodsGet200ResponseData

func NewApiV2QuarantineGoodsGet200ResponseData() *ApiV2QuarantineGoodsGet200ResponseData

NewApiV2QuarantineGoodsGet200ResponseData instantiates a new ApiV2QuarantineGoodsGet200ResponseData 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

func NewApiV2QuarantineGoodsGet200ResponseDataWithDefaults

func NewApiV2QuarantineGoodsGet200ResponseDataWithDefaults() *ApiV2QuarantineGoodsGet200ResponseData

NewApiV2QuarantineGoodsGet200ResponseDataWithDefaults instantiates a new ApiV2QuarantineGoodsGet200ResponseData 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

func (*ApiV2QuarantineGoodsGet200ResponseData) GetQuarantineGoods

func (o *ApiV2QuarantineGoodsGet200ResponseData) GetQuarantineGoods() []QuarantineGoods

GetQuarantineGoods returns the QuarantineGoods field value if set, zero value otherwise.

func (*ApiV2QuarantineGoodsGet200ResponseData) GetQuarantineGoodsOk

func (o *ApiV2QuarantineGoodsGet200ResponseData) GetQuarantineGoodsOk() ([]QuarantineGoods, bool)

GetQuarantineGoodsOk returns a tuple with the QuarantineGoods field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ApiV2QuarantineGoodsGet200ResponseData) HasQuarantineGoods

func (o *ApiV2QuarantineGoodsGet200ResponseData) HasQuarantineGoods() bool

HasQuarantineGoods returns a boolean if a field has been set.

func (ApiV2QuarantineGoodsGet200ResponseData) MarshalJSON

func (o ApiV2QuarantineGoodsGet200ResponseData) MarshalJSON() ([]byte, error)

func (*ApiV2QuarantineGoodsGet200ResponseData) SetQuarantineGoods

func (o *ApiV2QuarantineGoodsGet200ResponseData) SetQuarantineGoods(v []QuarantineGoods)

SetQuarantineGoods gets a reference to the given []QuarantineGoods and assigns it to the QuarantineGoods field.

func (ApiV2QuarantineGoodsGet200ResponseData) ToMap

func (o ApiV2QuarantineGoodsGet200ResponseData) ToMap() (map[string]interface{}, error)

type ApiV2UploadTaskClubDiscountPostRequest

type ApiV2UploadTaskClubDiscountPostRequest struct {
	// Products and WB Club discounts. Maximum 1,000 products.
	Data []ClubDiscReq `json:"data"`
}

ApiV2UploadTaskClubDiscountPostRequest struct for ApiV2UploadTaskClubDiscountPostRequest

func NewApiV2UploadTaskClubDiscountPostRequest

func NewApiV2UploadTaskClubDiscountPostRequest(data []ClubDiscReq) *ApiV2UploadTaskClubDiscountPostRequest

NewApiV2UploadTaskClubDiscountPostRequest instantiates a new ApiV2UploadTaskClubDiscountPostRequest 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

func NewApiV2UploadTaskClubDiscountPostRequestWithDefaults

func NewApiV2UploadTaskClubDiscountPostRequestWithDefaults() *ApiV2UploadTaskClubDiscountPostRequest

NewApiV2UploadTaskClubDiscountPostRequestWithDefaults instantiates a new ApiV2UploadTaskClubDiscountPostRequest 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

func (*ApiV2UploadTaskClubDiscountPostRequest) GetData

GetData returns the Data field value

func (*ApiV2UploadTaskClubDiscountPostRequest) GetDataOk

GetDataOk returns a tuple with the Data field value and a boolean to check if the value has been set.

func (ApiV2UploadTaskClubDiscountPostRequest) MarshalJSON

func (o ApiV2UploadTaskClubDiscountPostRequest) MarshalJSON() ([]byte, error)

func (*ApiV2UploadTaskClubDiscountPostRequest) SetData

SetData sets field value

func (ApiV2UploadTaskClubDiscountPostRequest) ToMap

func (o ApiV2UploadTaskClubDiscountPostRequest) ToMap() (map[string]interface{}, error)

func (*ApiV2UploadTaskClubDiscountPostRequest) UnmarshalJSON

func (o *ApiV2UploadTaskClubDiscountPostRequest) UnmarshalJSON(data []byte) (err error)

type ApiV2UploadTaskPostRequest

type ApiV2UploadTaskPostRequest struct {
	// Products, prices and discounts. Maximum 1,000 products. Both price and discount can not be empty <br><br> If the new price with discount is at least 3 times less than the previous one, the price will go into [price quarantine](https://seller.wildberries.ru/discount-and-prices/quarantine) and will not change. You will get the error in the response of the upload states methods. <br><br> You can edit price/discount using API or remove the price out of quarantine in [your account](https://seller.wildberries.ru/discount-and-prices/quarantine)
	Data []Good `json:"data"`
}

ApiV2UploadTaskPostRequest struct for ApiV2UploadTaskPostRequest

func NewApiV2UploadTaskPostRequest

func NewApiV2UploadTaskPostRequest(data []Good) *ApiV2UploadTaskPostRequest

NewApiV2UploadTaskPostRequest instantiates a new ApiV2UploadTaskPostRequest 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

func NewApiV2UploadTaskPostRequestWithDefaults

func NewApiV2UploadTaskPostRequestWithDefaults() *ApiV2UploadTaskPostRequest

NewApiV2UploadTaskPostRequestWithDefaults instantiates a new ApiV2UploadTaskPostRequest 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

func (*ApiV2UploadTaskPostRequest) GetData

func (o *ApiV2UploadTaskPostRequest) GetData() []Good

GetData returns the Data field value

func (*ApiV2UploadTaskPostRequest) GetDataOk

func (o *ApiV2UploadTaskPostRequest) GetDataOk() ([]Good, bool)

GetDataOk returns a tuple with the Data field value and a boolean to check if the value has been set.

func (ApiV2UploadTaskPostRequest) MarshalJSON

func (o ApiV2UploadTaskPostRequest) MarshalJSON() ([]byte, error)

func (*ApiV2UploadTaskPostRequest) SetData

func (o *ApiV2UploadTaskPostRequest) SetData(v []Good)

SetData sets field value

func (ApiV2UploadTaskPostRequest) ToMap

func (o ApiV2UploadTaskPostRequest) ToMap() (map[string]interface{}, error)

func (*ApiV2UploadTaskPostRequest) UnmarshalJSON

func (o *ApiV2UploadTaskPostRequest) UnmarshalJSON(data []byte) (err error)

type ApiV2UploadTaskSizePostRequest

type ApiV2UploadTaskSizePostRequest struct {
	// Sizes and prices. Maximum 1,000 sizes <br><br> For products with [size-based pricing](./work-with-products#tag/Prices-and-Discounts/paths/~1api~1v2~1upload~1task~1size/post), [quarantine](https://seller.wildberries.ru/discount-and-prices/quarantine) does not apply.
	Data []SizeGoodReq `json:"data"`
}

ApiV2UploadTaskSizePostRequest struct for ApiV2UploadTaskSizePostRequest

func NewApiV2UploadTaskSizePostRequest

func NewApiV2UploadTaskSizePostRequest(data []SizeGoodReq) *ApiV2UploadTaskSizePostRequest

NewApiV2UploadTaskSizePostRequest instantiates a new ApiV2UploadTaskSizePostRequest 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

func NewApiV2UploadTaskSizePostRequestWithDefaults

func NewApiV2UploadTaskSizePostRequestWithDefaults() *ApiV2UploadTaskSizePostRequest

NewApiV2UploadTaskSizePostRequestWithDefaults instantiates a new ApiV2UploadTaskSizePostRequest 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

func (*ApiV2UploadTaskSizePostRequest) GetData

GetData returns the Data field value

func (*ApiV2UploadTaskSizePostRequest) GetDataOk

func (o *ApiV2UploadTaskSizePostRequest) GetDataOk() ([]SizeGoodReq, bool)

GetDataOk returns a tuple with the Data field value and a boolean to check if the value has been set.

func (ApiV2UploadTaskSizePostRequest) MarshalJSON

func (o ApiV2UploadTaskSizePostRequest) MarshalJSON() ([]byte, error)

func (*ApiV2UploadTaskSizePostRequest) SetData

SetData sets field value

func (ApiV2UploadTaskSizePostRequest) ToMap

func (o ApiV2UploadTaskSizePostRequest) ToMap() (map[string]interface{}, error)

func (*ApiV2UploadTaskSizePostRequest) UnmarshalJSON

func (o *ApiV2UploadTaskSizePostRequest) UnmarshalJSON(data []byte) (err error)

type ApiV3DbwWarehousesWarehouseIdContactsGet200Response

type ApiV3DbwWarehousesWarehouseIdContactsGet200Response struct {
	Contacts []ApiV3DbwWarehousesWarehouseIdContactsGet200ResponseContactsInner `json:"contacts,omitempty"`
}

ApiV3DbwWarehousesWarehouseIdContactsGet200Response Seller's warehouse contact list

func NewApiV3DbwWarehousesWarehouseIdContactsGet200Response

func NewApiV3DbwWarehousesWarehouseIdContactsGet200Response() *ApiV3DbwWarehousesWarehouseIdContactsGet200Response

NewApiV3DbwWarehousesWarehouseIdContactsGet200Response instantiates a new ApiV3DbwWarehousesWarehouseIdContactsGet200Response 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

func NewApiV3DbwWarehousesWarehouseIdContactsGet200ResponseWithDefaults

func NewApiV3DbwWarehousesWarehouseIdContactsGet200ResponseWithDefaults() *ApiV3DbwWarehousesWarehouseIdContactsGet200Response

NewApiV3DbwWarehousesWarehouseIdContactsGet200ResponseWithDefaults instantiates a new ApiV3DbwWarehousesWarehouseIdContactsGet200Response 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

func (*ApiV3DbwWarehousesWarehouseIdContactsGet200Response) GetContacts

GetContacts returns the Contacts field value if set, zero value otherwise.

func (*ApiV3DbwWarehousesWarehouseIdContactsGet200Response) GetContactsOk

GetContactsOk returns a tuple with the Contacts field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ApiV3DbwWarehousesWarehouseIdContactsGet200Response) HasContacts

HasContacts returns a boolean if a field has been set.

func (ApiV3DbwWarehousesWarehouseIdContactsGet200Response) MarshalJSON

func (*ApiV3DbwWarehousesWarehouseIdContactsGet200Response) SetContacts

SetContacts gets a reference to the given []ApiV3DbwWarehousesWarehouseIdContactsGet200ResponseContactsInner and assigns it to the Contacts field.

func (ApiV3DbwWarehousesWarehouseIdContactsGet200Response) ToMap

type ApiV3DbwWarehousesWarehouseIdContactsGet200ResponseContactsInner

type ApiV3DbwWarehousesWarehouseIdContactsGet200ResponseContactsInner struct {
	// Comment
	Comment *string `json:"comment,omitempty"`
	// Phone number
	Phone *string `json:"phone,omitempty"`
}

ApiV3DbwWarehousesWarehouseIdContactsGet200ResponseContactsInner struct for ApiV3DbwWarehousesWarehouseIdContactsGet200ResponseContactsInner

func NewApiV3DbwWarehousesWarehouseIdContactsGet200ResponseContactsInner

func NewApiV3DbwWarehousesWarehouseIdContactsGet200ResponseContactsInner() *ApiV3DbwWarehousesWarehouseIdContactsGet200ResponseContactsInner

NewApiV3DbwWarehousesWarehouseIdContactsGet200ResponseContactsInner instantiates a new ApiV3DbwWarehousesWarehouseIdContactsGet200ResponseContactsInner 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

func NewApiV3DbwWarehousesWarehouseIdContactsGet200ResponseContactsInnerWithDefaults

func NewApiV3DbwWarehousesWarehouseIdContactsGet200ResponseContactsInnerWithDefaults() *ApiV3DbwWarehousesWarehouseIdContactsGet200ResponseContactsInner

NewApiV3DbwWarehousesWarehouseIdContactsGet200ResponseContactsInnerWithDefaults instantiates a new ApiV3DbwWarehousesWarehouseIdContactsGet200ResponseContactsInner 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

func (*ApiV3DbwWarehousesWarehouseIdContactsGet200ResponseContactsInner) GetComment

GetComment returns the Comment field value if set, zero value otherwise.

func (*ApiV3DbwWarehousesWarehouseIdContactsGet200ResponseContactsInner) GetCommentOk

GetCommentOk returns a tuple with the Comment field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ApiV3DbwWarehousesWarehouseIdContactsGet200ResponseContactsInner) GetPhone

GetPhone returns the Phone field value if set, zero value otherwise.

func (*ApiV3DbwWarehousesWarehouseIdContactsGet200ResponseContactsInner) GetPhoneOk

GetPhoneOk returns a tuple with the Phone field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ApiV3DbwWarehousesWarehouseIdContactsGet200ResponseContactsInner) HasComment

HasComment returns a boolean if a field has been set.

func (*ApiV3DbwWarehousesWarehouseIdContactsGet200ResponseContactsInner) HasPhone

HasPhone returns a boolean if a field has been set.

func (ApiV3DbwWarehousesWarehouseIdContactsGet200ResponseContactsInner) MarshalJSON

func (*ApiV3DbwWarehousesWarehouseIdContactsGet200ResponseContactsInner) SetComment

SetComment gets a reference to the given string and assigns it to the Comment field.

func (*ApiV3DbwWarehousesWarehouseIdContactsGet200ResponseContactsInner) SetPhone

SetPhone gets a reference to the given string and assigns it to the Phone field.

func (ApiV3DbwWarehousesWarehouseIdContactsGet200ResponseContactsInner) ToMap

type ApiV3StocksWarehouseIdDeleteRequest

type ApiV3StocksWarehouseIdDeleteRequest struct {
	// Size IDs array
	ChrtIds []int32 `json:"chrtIds"`
}

ApiV3StocksWarehouseIdDeleteRequest struct for ApiV3StocksWarehouseIdDeleteRequest

func NewApiV3StocksWarehouseIdDeleteRequest

func NewApiV3StocksWarehouseIdDeleteRequest(chrtIds []int32) *ApiV3StocksWarehouseIdDeleteRequest

NewApiV3StocksWarehouseIdDeleteRequest instantiates a new ApiV3StocksWarehouseIdDeleteRequest 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

func NewApiV3StocksWarehouseIdDeleteRequestWithDefaults

func NewApiV3StocksWarehouseIdDeleteRequestWithDefaults() *ApiV3StocksWarehouseIdDeleteRequest

NewApiV3StocksWarehouseIdDeleteRequestWithDefaults instantiates a new ApiV3StocksWarehouseIdDeleteRequest 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

func (*ApiV3StocksWarehouseIdDeleteRequest) GetChrtIds

func (o *ApiV3StocksWarehouseIdDeleteRequest) GetChrtIds() []int32

GetChrtIds returns the ChrtIds field value

func (*ApiV3StocksWarehouseIdDeleteRequest) GetChrtIdsOk

func (o *ApiV3StocksWarehouseIdDeleteRequest) GetChrtIdsOk() ([]int32, bool)

GetChrtIdsOk returns a tuple with the ChrtIds field value and a boolean to check if the value has been set.

func (ApiV3StocksWarehouseIdDeleteRequest) MarshalJSON

func (o ApiV3StocksWarehouseIdDeleteRequest) MarshalJSON() ([]byte, error)

func (*ApiV3StocksWarehouseIdDeleteRequest) SetChrtIds

func (o *ApiV3StocksWarehouseIdDeleteRequest) SetChrtIds(v []int32)

SetChrtIds sets field value

func (ApiV3StocksWarehouseIdDeleteRequest) ToMap

func (o ApiV3StocksWarehouseIdDeleteRequest) ToMap() (map[string]interface{}, error)

func (*ApiV3StocksWarehouseIdDeleteRequest) UnmarshalJSON

func (o *ApiV3StocksWarehouseIdDeleteRequest) UnmarshalJSON(data []byte) (err error)

type ApiV3StocksWarehouseIdPost200Response

type ApiV3StocksWarehouseIdPost200Response struct {
	Stocks []ApiV3StocksWarehouseIdPost200ResponseStocksInner `json:"stocks,omitempty"`
}

ApiV3StocksWarehouseIdPost200Response struct for ApiV3StocksWarehouseIdPost200Response

func NewApiV3StocksWarehouseIdPost200Response

func NewApiV3StocksWarehouseIdPost200Response() *ApiV3StocksWarehouseIdPost200Response

NewApiV3StocksWarehouseIdPost200Response instantiates a new ApiV3StocksWarehouseIdPost200Response 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

func NewApiV3StocksWarehouseIdPost200ResponseWithDefaults

func NewApiV3StocksWarehouseIdPost200ResponseWithDefaults() *ApiV3StocksWarehouseIdPost200Response

NewApiV3StocksWarehouseIdPost200ResponseWithDefaults instantiates a new ApiV3StocksWarehouseIdPost200Response 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

func (*ApiV3StocksWarehouseIdPost200Response) GetStocks

GetStocks returns the Stocks field value if set, zero value otherwise.

func (*ApiV3StocksWarehouseIdPost200Response) GetStocksOk

GetStocksOk returns a tuple with the Stocks field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ApiV3StocksWarehouseIdPost200Response) HasStocks

HasStocks returns a boolean if a field has been set.

func (ApiV3StocksWarehouseIdPost200Response) MarshalJSON

func (o ApiV3StocksWarehouseIdPost200Response) MarshalJSON() ([]byte, error)

func (*ApiV3StocksWarehouseIdPost200Response) SetStocks

SetStocks gets a reference to the given []ApiV3StocksWarehouseIdPost200ResponseStocksInner and assigns it to the Stocks field.

func (ApiV3StocksWarehouseIdPost200Response) ToMap

func (o ApiV3StocksWarehouseIdPost200Response) ToMap() (map[string]interface{}, error)

type ApiV3StocksWarehouseIdPost200ResponseStocksInner

type ApiV3StocksWarehouseIdPost200ResponseStocksInner struct {
	// Size ID
	ChrtId *int32 `json:"chrtId,omitempty"`
	// Amount
	Amount *int32 `json:"amount,omitempty"`
}

ApiV3StocksWarehouseIdPost200ResponseStocksInner struct for ApiV3StocksWarehouseIdPost200ResponseStocksInner

func NewApiV3StocksWarehouseIdPost200ResponseStocksInner

func NewApiV3StocksWarehouseIdPost200ResponseStocksInner() *ApiV3StocksWarehouseIdPost200ResponseStocksInner

NewApiV3StocksWarehouseIdPost200ResponseStocksInner instantiates a new ApiV3StocksWarehouseIdPost200ResponseStocksInner 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

func NewApiV3StocksWarehouseIdPost200ResponseStocksInnerWithDefaults

func NewApiV3StocksWarehouseIdPost200ResponseStocksInnerWithDefaults() *ApiV3StocksWarehouseIdPost200ResponseStocksInner

NewApiV3StocksWarehouseIdPost200ResponseStocksInnerWithDefaults instantiates a new ApiV3StocksWarehouseIdPost200ResponseStocksInner 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

func (*ApiV3StocksWarehouseIdPost200ResponseStocksInner) GetAmount

GetAmount returns the Amount field value if set, zero value otherwise.

func (*ApiV3StocksWarehouseIdPost200ResponseStocksInner) GetAmountOk

GetAmountOk returns a tuple with the Amount field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ApiV3StocksWarehouseIdPost200ResponseStocksInner) GetChrtId

GetChrtId returns the ChrtId field value if set, zero value otherwise.

func (*ApiV3StocksWarehouseIdPost200ResponseStocksInner) GetChrtIdOk

GetChrtIdOk returns a tuple with the ChrtId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ApiV3StocksWarehouseIdPost200ResponseStocksInner) HasAmount

HasAmount returns a boolean if a field has been set.

func (*ApiV3StocksWarehouseIdPost200ResponseStocksInner) HasChrtId

HasChrtId returns a boolean if a field has been set.

func (ApiV3StocksWarehouseIdPost200ResponseStocksInner) MarshalJSON

func (*ApiV3StocksWarehouseIdPost200ResponseStocksInner) SetAmount

SetAmount gets a reference to the given int32 and assigns it to the Amount field.

func (*ApiV3StocksWarehouseIdPost200ResponseStocksInner) SetChrtId

SetChrtId gets a reference to the given int32 and assigns it to the ChrtId field.

func (ApiV3StocksWarehouseIdPost200ResponseStocksInner) ToMap

func (o ApiV3StocksWarehouseIdPost200ResponseStocksInner) ToMap() (map[string]interface{}, error)

type ApiV3StocksWarehouseIdPostRequest

type ApiV3StocksWarehouseIdPostRequest struct {
	// Size IDs array
	ChrtIds []int32 `json:"chrtIds"`
}

ApiV3StocksWarehouseIdPostRequest struct for ApiV3StocksWarehouseIdPostRequest

func NewApiV3StocksWarehouseIdPostRequest

func NewApiV3StocksWarehouseIdPostRequest(chrtIds []int32) *ApiV3StocksWarehouseIdPostRequest

NewApiV3StocksWarehouseIdPostRequest instantiates a new ApiV3StocksWarehouseIdPostRequest 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

func NewApiV3StocksWarehouseIdPostRequestWithDefaults

func NewApiV3StocksWarehouseIdPostRequestWithDefaults() *ApiV3StocksWarehouseIdPostRequest

NewApiV3StocksWarehouseIdPostRequestWithDefaults instantiates a new ApiV3StocksWarehouseIdPostRequest 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

func (*ApiV3StocksWarehouseIdPostRequest) GetChrtIds

func (o *ApiV3StocksWarehouseIdPostRequest) GetChrtIds() []int32

GetChrtIds returns the ChrtIds field value

func (*ApiV3StocksWarehouseIdPostRequest) GetChrtIdsOk

func (o *ApiV3StocksWarehouseIdPostRequest) GetChrtIdsOk() ([]int32, bool)

GetChrtIdsOk returns a tuple with the ChrtIds field value and a boolean to check if the value has been set.

func (ApiV3StocksWarehouseIdPostRequest) MarshalJSON

func (o ApiV3StocksWarehouseIdPostRequest) MarshalJSON() ([]byte, error)

func (*ApiV3StocksWarehouseIdPostRequest) SetChrtIds

func (o *ApiV3StocksWarehouseIdPostRequest) SetChrtIds(v []int32)

SetChrtIds sets field value

func (ApiV3StocksWarehouseIdPostRequest) ToMap

func (o ApiV3StocksWarehouseIdPostRequest) ToMap() (map[string]interface{}, error)

func (*ApiV3StocksWarehouseIdPostRequest) UnmarshalJSON

func (o *ApiV3StocksWarehouseIdPostRequest) UnmarshalJSON(data []byte) (err error)

type ApiV3StocksWarehouseIdPut406Response

type ApiV3StocksWarehouseIdPut406Response struct {
	// Error code
	Code *string `json:"code,omitempty"`
	// Error description
	Message *string `json:"message,omitempty"`
	// Additional error data
	Data map[string]interface{} `json:"data,omitempty"`
}

ApiV3StocksWarehouseIdPut406Response struct for ApiV3StocksWarehouseIdPut406Response

func NewApiV3StocksWarehouseIdPut406Response

func NewApiV3StocksWarehouseIdPut406Response() *ApiV3StocksWarehouseIdPut406Response

NewApiV3StocksWarehouseIdPut406Response instantiates a new ApiV3StocksWarehouseIdPut406Response 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

func NewApiV3StocksWarehouseIdPut406ResponseWithDefaults

func NewApiV3StocksWarehouseIdPut406ResponseWithDefaults() *ApiV3StocksWarehouseIdPut406Response

NewApiV3StocksWarehouseIdPut406ResponseWithDefaults instantiates a new ApiV3StocksWarehouseIdPut406Response 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

func (*ApiV3StocksWarehouseIdPut406Response) GetCode

GetCode returns the Code field value if set, zero value otherwise.

func (*ApiV3StocksWarehouseIdPut406Response) GetCodeOk

GetCodeOk returns a tuple with the Code field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ApiV3StocksWarehouseIdPut406Response) GetData

func (o *ApiV3StocksWarehouseIdPut406Response) GetData() map[string]interface{}

GetData returns the Data field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ApiV3StocksWarehouseIdPut406Response) GetDataOk

func (o *ApiV3StocksWarehouseIdPut406Response) GetDataOk() (map[string]interface{}, bool)

GetDataOk returns a tuple with the Data field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*ApiV3StocksWarehouseIdPut406Response) GetMessage

GetMessage returns the Message field value if set, zero value otherwise.

func (*ApiV3StocksWarehouseIdPut406Response) GetMessageOk

func (o *ApiV3StocksWarehouseIdPut406Response) GetMessageOk() (*string, bool)

GetMessageOk returns a tuple with the Message field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ApiV3StocksWarehouseIdPut406Response) HasCode

HasCode returns a boolean if a field has been set.

func (*ApiV3StocksWarehouseIdPut406Response) HasData

HasData returns a boolean if a field has been set.

func (*ApiV3StocksWarehouseIdPut406Response) HasMessage

HasMessage returns a boolean if a field has been set.

func (ApiV3StocksWarehouseIdPut406Response) MarshalJSON

func (o ApiV3StocksWarehouseIdPut406Response) MarshalJSON() ([]byte, error)

func (*ApiV3StocksWarehouseIdPut406Response) SetCode

SetCode gets a reference to the given string and assigns it to the Code field.

func (*ApiV3StocksWarehouseIdPut406Response) SetData

func (o *ApiV3StocksWarehouseIdPut406Response) SetData(v map[string]interface{})

SetData gets a reference to the given map[string]interface{} and assigns it to the Data field.

func (*ApiV3StocksWarehouseIdPut406Response) SetMessage

SetMessage gets a reference to the given string and assigns it to the Message field.

func (ApiV3StocksWarehouseIdPut406Response) ToMap

func (o ApiV3StocksWarehouseIdPut406Response) ToMap() (map[string]interface{}, error)

type ApiV3StocksWarehouseIdPutRequest

type ApiV3StocksWarehouseIdPutRequest struct {
	// Array of size IDs and amounts
	Stocks []ApiV3StocksWarehouseIdPutRequestStocksInner `json:"stocks"`
}

ApiV3StocksWarehouseIdPutRequest struct for ApiV3StocksWarehouseIdPutRequest

func NewApiV3StocksWarehouseIdPutRequest

func NewApiV3StocksWarehouseIdPutRequest(stocks []ApiV3StocksWarehouseIdPutRequestStocksInner) *ApiV3StocksWarehouseIdPutRequest

NewApiV3StocksWarehouseIdPutRequest instantiates a new ApiV3StocksWarehouseIdPutRequest 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

func NewApiV3StocksWarehouseIdPutRequestWithDefaults

func NewApiV3StocksWarehouseIdPutRequestWithDefaults() *ApiV3StocksWarehouseIdPutRequest

NewApiV3StocksWarehouseIdPutRequestWithDefaults instantiates a new ApiV3StocksWarehouseIdPutRequest 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

func (*ApiV3StocksWarehouseIdPutRequest) GetStocks

GetStocks returns the Stocks field value

func (*ApiV3StocksWarehouseIdPutRequest) GetStocksOk

GetStocksOk returns a tuple with the Stocks field value and a boolean to check if the value has been set.

func (ApiV3StocksWarehouseIdPutRequest) MarshalJSON

func (o ApiV3StocksWarehouseIdPutRequest) MarshalJSON() ([]byte, error)

func (*ApiV3StocksWarehouseIdPutRequest) SetStocks

SetStocks sets field value

func (ApiV3StocksWarehouseIdPutRequest) ToMap

func (o ApiV3StocksWarehouseIdPutRequest) ToMap() (map[string]interface{}, error)

func (*ApiV3StocksWarehouseIdPutRequest) UnmarshalJSON

func (o *ApiV3StocksWarehouseIdPutRequest) UnmarshalJSON(data []byte) (err error)

type ApiV3StocksWarehouseIdPutRequestStocksInner

type ApiV3StocksWarehouseIdPutRequestStocksInner struct {
	// Size ID
	ChrtId *int32 `json:"chrtId,omitempty"`
	// Stock
	Amount *int32 `json:"amount,omitempty"`
}

ApiV3StocksWarehouseIdPutRequestStocksInner struct for ApiV3StocksWarehouseIdPutRequestStocksInner

func NewApiV3StocksWarehouseIdPutRequestStocksInner

func NewApiV3StocksWarehouseIdPutRequestStocksInner() *ApiV3StocksWarehouseIdPutRequestStocksInner

NewApiV3StocksWarehouseIdPutRequestStocksInner instantiates a new ApiV3StocksWarehouseIdPutRequestStocksInner 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

func NewApiV3StocksWarehouseIdPutRequestStocksInnerWithDefaults

func NewApiV3StocksWarehouseIdPutRequestStocksInnerWithDefaults() *ApiV3StocksWarehouseIdPutRequestStocksInner

NewApiV3StocksWarehouseIdPutRequestStocksInnerWithDefaults instantiates a new ApiV3StocksWarehouseIdPutRequestStocksInner 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

func (*ApiV3StocksWarehouseIdPutRequestStocksInner) GetAmount

GetAmount returns the Amount field value if set, zero value otherwise.

func (*ApiV3StocksWarehouseIdPutRequestStocksInner) GetAmountOk

GetAmountOk returns a tuple with the Amount field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ApiV3StocksWarehouseIdPutRequestStocksInner) GetChrtId

GetChrtId returns the ChrtId field value if set, zero value otherwise.

func (*ApiV3StocksWarehouseIdPutRequestStocksInner) GetChrtIdOk

GetChrtIdOk returns a tuple with the ChrtId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ApiV3StocksWarehouseIdPutRequestStocksInner) HasAmount

HasAmount returns a boolean if a field has been set.

func (*ApiV3StocksWarehouseIdPutRequestStocksInner) HasChrtId

HasChrtId returns a boolean if a field has been set.

func (ApiV3StocksWarehouseIdPutRequestStocksInner) MarshalJSON

func (*ApiV3StocksWarehouseIdPutRequestStocksInner) SetAmount

SetAmount gets a reference to the given int32 and assigns it to the Amount field.

func (*ApiV3StocksWarehouseIdPutRequestStocksInner) SetChrtId

SetChrtId gets a reference to the given int32 and assigns it to the ChrtId field.

func (ApiV3StocksWarehouseIdPutRequestStocksInner) ToMap

func (o ApiV3StocksWarehouseIdPutRequestStocksInner) ToMap() (map[string]interface{}, error)

type ApiV3WarehousesPost201Response

type ApiV3WarehousesPost201Response struct {
	// Warehouse ID
	Id *int32 `json:"id,omitempty"`
}

ApiV3WarehousesPost201Response struct for ApiV3WarehousesPost201Response

func NewApiV3WarehousesPost201Response

func NewApiV3WarehousesPost201Response() *ApiV3WarehousesPost201Response

NewApiV3WarehousesPost201Response instantiates a new ApiV3WarehousesPost201Response 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

func NewApiV3WarehousesPost201ResponseWithDefaults

func NewApiV3WarehousesPost201ResponseWithDefaults() *ApiV3WarehousesPost201Response

NewApiV3WarehousesPost201ResponseWithDefaults instantiates a new ApiV3WarehousesPost201Response 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

func (*ApiV3WarehousesPost201Response) GetId

GetId returns the Id field value if set, zero value otherwise.

func (*ApiV3WarehousesPost201Response) GetIdOk

func (o *ApiV3WarehousesPost201Response) GetIdOk() (*int32, bool)

GetIdOk returns a tuple with the Id field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ApiV3WarehousesPost201Response) HasId

HasId returns a boolean if a field has been set.

func (ApiV3WarehousesPost201Response) MarshalJSON

func (o ApiV3WarehousesPost201Response) MarshalJSON() ([]byte, error)

func (*ApiV3WarehousesPost201Response) SetId

SetId gets a reference to the given int32 and assigns it to the Id field.

func (ApiV3WarehousesPost201Response) ToMap

func (o ApiV3WarehousesPost201Response) ToMap() (map[string]interface{}, error)

type ApiV3WarehousesPostRequest

type ApiV3WarehousesPostRequest struct {
	// Seller's warehouse name
	Name string `json:"name"`
	// Office ID
	OfficeId int32 `json:"officeId"`
}

ApiV3WarehousesPostRequest struct for ApiV3WarehousesPostRequest

func NewApiV3WarehousesPostRequest

func NewApiV3WarehousesPostRequest(name string, officeId int32) *ApiV3WarehousesPostRequest

NewApiV3WarehousesPostRequest instantiates a new ApiV3WarehousesPostRequest 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

func NewApiV3WarehousesPostRequestWithDefaults

func NewApiV3WarehousesPostRequestWithDefaults() *ApiV3WarehousesPostRequest

NewApiV3WarehousesPostRequestWithDefaults instantiates a new ApiV3WarehousesPostRequest 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

func (*ApiV3WarehousesPostRequest) GetName

func (o *ApiV3WarehousesPostRequest) GetName() string

GetName returns the Name field value

func (*ApiV3WarehousesPostRequest) GetNameOk

func (o *ApiV3WarehousesPostRequest) GetNameOk() (*string, bool)

GetNameOk returns a tuple with the Name field value and a boolean to check if the value has been set.

func (*ApiV3WarehousesPostRequest) GetOfficeId

func (o *ApiV3WarehousesPostRequest) GetOfficeId() int32

GetOfficeId returns the OfficeId field value

func (*ApiV3WarehousesPostRequest) GetOfficeIdOk

func (o *ApiV3WarehousesPostRequest) GetOfficeIdOk() (*int32, bool)

GetOfficeIdOk returns a tuple with the OfficeId field value and a boolean to check if the value has been set.

func (ApiV3WarehousesPostRequest) MarshalJSON

func (o ApiV3WarehousesPostRequest) MarshalJSON() ([]byte, error)

func (*ApiV3WarehousesPostRequest) SetName

func (o *ApiV3WarehousesPostRequest) SetName(v string)

SetName sets field value

func (*ApiV3WarehousesPostRequest) SetOfficeId

func (o *ApiV3WarehousesPostRequest) SetOfficeId(v int32)

SetOfficeId sets field value

func (ApiV3WarehousesPostRequest) ToMap

func (o ApiV3WarehousesPostRequest) ToMap() (map[string]interface{}, error)

func (*ApiV3WarehousesPostRequest) UnmarshalJSON

func (o *ApiV3WarehousesPostRequest) UnmarshalJSON(data []byte) (err error)

type ApiV3WarehousesWarehouseIdPutRequest

type ApiV3WarehousesWarehouseIdPutRequest struct {
	// Seller's warehouse name
	Name string `json:"name"`
	// Office ID
	OfficeId int32 `json:"officeId"`
}

ApiV3WarehousesWarehouseIdPutRequest struct for ApiV3WarehousesWarehouseIdPutRequest

func NewApiV3WarehousesWarehouseIdPutRequest

func NewApiV3WarehousesWarehouseIdPutRequest(name string, officeId int32) *ApiV3WarehousesWarehouseIdPutRequest

NewApiV3WarehousesWarehouseIdPutRequest instantiates a new ApiV3WarehousesWarehouseIdPutRequest 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

func NewApiV3WarehousesWarehouseIdPutRequestWithDefaults

func NewApiV3WarehousesWarehouseIdPutRequestWithDefaults() *ApiV3WarehousesWarehouseIdPutRequest

NewApiV3WarehousesWarehouseIdPutRequestWithDefaults instantiates a new ApiV3WarehousesWarehouseIdPutRequest 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

func (*ApiV3WarehousesWarehouseIdPutRequest) GetName

GetName returns the Name field value

func (*ApiV3WarehousesWarehouseIdPutRequest) GetNameOk

GetNameOk returns a tuple with the Name field value and a boolean to check if the value has been set.

func (*ApiV3WarehousesWarehouseIdPutRequest) GetOfficeId

GetOfficeId returns the OfficeId field value

func (*ApiV3WarehousesWarehouseIdPutRequest) GetOfficeIdOk

func (o *ApiV3WarehousesWarehouseIdPutRequest) GetOfficeIdOk() (*int32, bool)

GetOfficeIdOk returns a tuple with the OfficeId field value and a boolean to check if the value has been set.

func (ApiV3WarehousesWarehouseIdPutRequest) MarshalJSON

func (o ApiV3WarehousesWarehouseIdPutRequest) MarshalJSON() ([]byte, error)

func (*ApiV3WarehousesWarehouseIdPutRequest) SetName

SetName sets field value

func (*ApiV3WarehousesWarehouseIdPutRequest) SetOfficeId

func (o *ApiV3WarehousesWarehouseIdPutRequest) SetOfficeId(v int32)

SetOfficeId sets field value

func (ApiV3WarehousesWarehouseIdPutRequest) ToMap

func (o ApiV3WarehousesWarehouseIdPutRequest) ToMap() (map[string]interface{}, error)

func (*ApiV3WarehousesWarehouseIdPutRequest) UnmarshalJSON

func (o *ApiV3WarehousesWarehouseIdPutRequest) UnmarshalJSON(data []byte) (err error)

type BasicAuth

type BasicAuth struct {
	UserName string `json:"userName,omitempty"`
	Password string `json:"password,omitempty"`
}

BasicAuth provides basic http authentication to a request passed via context using ContextBasicAuth

type BrandsResponse

type BrandsResponse struct {
	Brands []BrandsResponseBrandsInner `json:"brands"`
	// Pagination parameter. Specify this value in the request to get the next batch. If the field is missing, you received all the data
	Next *int32 `json:"next,omitempty"`
	// Total number of brands of the subject
	Total int32 `json:"total"`
}

BrandsResponse struct for BrandsResponse

func NewBrandsResponse

func NewBrandsResponse(brands []BrandsResponseBrandsInner, total int32) *BrandsResponse

NewBrandsResponse instantiates a new BrandsResponse 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

func NewBrandsResponseWithDefaults

func NewBrandsResponseWithDefaults() *BrandsResponse

NewBrandsResponseWithDefaults instantiates a new BrandsResponse 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

func (*BrandsResponse) GetBrands

func (o *BrandsResponse) GetBrands() []BrandsResponseBrandsInner

GetBrands returns the Brands field value

func (*BrandsResponse) GetBrandsOk

func (o *BrandsResponse) GetBrandsOk() ([]BrandsResponseBrandsInner, bool)

GetBrandsOk returns a tuple with the Brands field value and a boolean to check if the value has been set.

func (*BrandsResponse) GetNext

func (o *BrandsResponse) GetNext() int32

GetNext returns the Next field value if set, zero value otherwise.

func (*BrandsResponse) GetNextOk

func (o *BrandsResponse) GetNextOk() (*int32, bool)

GetNextOk returns a tuple with the Next field value if set, nil otherwise and a boolean to check if the value has been set.

func (*BrandsResponse) GetTotal

func (o *BrandsResponse) GetTotal() int32

GetTotal returns the Total field value

func (*BrandsResponse) GetTotalOk

func (o *BrandsResponse) GetTotalOk() (*int32, bool)

GetTotalOk returns a tuple with the Total field value and a boolean to check if the value has been set.

func (*BrandsResponse) HasNext

func (o *BrandsResponse) HasNext() bool

HasNext returns a boolean if a field has been set.

func (BrandsResponse) MarshalJSON

func (o BrandsResponse) MarshalJSON() ([]byte, error)

func (*BrandsResponse) SetBrands

func (o *BrandsResponse) SetBrands(v []BrandsResponseBrandsInner)

SetBrands sets field value

func (*BrandsResponse) SetNext

func (o *BrandsResponse) SetNext(v int32)

SetNext gets a reference to the given int32 and assigns it to the Next field.

func (*BrandsResponse) SetTotal

func (o *BrandsResponse) SetTotal(v int32)

SetTotal sets field value

func (BrandsResponse) ToMap

func (o BrandsResponse) ToMap() (map[string]interface{}, error)

func (*BrandsResponse) UnmarshalJSON

func (o *BrandsResponse) UnmarshalJSON(data []byte) (err error)

type BrandsResponseBrandsInner

type BrandsResponseBrandsInner struct {
	// Brand ID
	Id int32 `json:"id"`
	// Brand logo URL
	LogoUrl string `json:"logoUrl"`
	// Brand name
	Name string `json:"name"`
}

BrandsResponseBrandsInner struct for BrandsResponseBrandsInner

func NewBrandsResponseBrandsInner

func NewBrandsResponseBrandsInner(id int32, logoUrl string, name string) *BrandsResponseBrandsInner

NewBrandsResponseBrandsInner instantiates a new BrandsResponseBrandsInner 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

func NewBrandsResponseBrandsInnerWithDefaults

func NewBrandsResponseBrandsInnerWithDefaults() *BrandsResponseBrandsInner

NewBrandsResponseBrandsInnerWithDefaults instantiates a new BrandsResponseBrandsInner 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

func (*BrandsResponseBrandsInner) GetId

func (o *BrandsResponseBrandsInner) GetId() int32

GetId returns the Id field value

func (*BrandsResponseBrandsInner) GetIdOk

func (o *BrandsResponseBrandsInner) GetIdOk() (*int32, bool)

GetIdOk returns a tuple with the Id field value and a boolean to check if the value has been set.

func (*BrandsResponseBrandsInner) GetLogoUrl

func (o *BrandsResponseBrandsInner) GetLogoUrl() string

GetLogoUrl returns the LogoUrl field value

func (*BrandsResponseBrandsInner) GetLogoUrlOk

func (o *BrandsResponseBrandsInner) GetLogoUrlOk() (*string, bool)

GetLogoUrlOk returns a tuple with the LogoUrl field value and a boolean to check if the value has been set.

func (*BrandsResponseBrandsInner) GetName

func (o *BrandsResponseBrandsInner) GetName() string

GetName returns the Name field value

func (*BrandsResponseBrandsInner) GetNameOk

func (o *BrandsResponseBrandsInner) GetNameOk() (*string, bool)

GetNameOk returns a tuple with the Name field value and a boolean to check if the value has been set.

func (BrandsResponseBrandsInner) MarshalJSON

func (o BrandsResponseBrandsInner) MarshalJSON() ([]byte, error)

func (*BrandsResponseBrandsInner) SetId

func (o *BrandsResponseBrandsInner) SetId(v int32)

SetId sets field value

func (*BrandsResponseBrandsInner) SetLogoUrl

func (o *BrandsResponseBrandsInner) SetLogoUrl(v string)

SetLogoUrl sets field value

func (*BrandsResponseBrandsInner) SetName

func (o *BrandsResponseBrandsInner) SetName(v string)

SetName sets field value

func (BrandsResponseBrandsInner) ToMap

func (o BrandsResponseBrandsInner) ToMap() (map[string]interface{}, error)

func (*BrandsResponseBrandsInner) UnmarshalJSON

func (o *BrandsResponseBrandsInner) UnmarshalJSON(data []byte) (err error)

type BrandsResponseError

type BrandsResponseError struct {
	// Error title
	Title string `json:"title"`
	// Error details
	Detail string `json:"detail"`
	// WB internal service ID
	Origin string `json:"origin"`
	// Unique request ID
	RequestId string                           `json:"requestId"`
	Errors    []BrandsResponseErrorErrorsInner `json:"errors,omitempty"`
}

BrandsResponseError struct for BrandsResponseError

func NewBrandsResponseError

func NewBrandsResponseError(title string, detail string, origin string, requestId string) *BrandsResponseError

NewBrandsResponseError instantiates a new BrandsResponseError 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

func NewBrandsResponseErrorWithDefaults

func NewBrandsResponseErrorWithDefaults() *BrandsResponseError

NewBrandsResponseErrorWithDefaults instantiates a new BrandsResponseError 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

func (*BrandsResponseError) GetDetail

func (o *BrandsResponseError) GetDetail() string

GetDetail returns the Detail field value

func (*BrandsResponseError) GetDetailOk

func (o *BrandsResponseError) GetDetailOk() (*string, bool)

GetDetailOk returns a tuple with the Detail field value and a boolean to check if the value has been set.

func (*BrandsResponseError) GetErrors

GetErrors returns the Errors field value if set, zero value otherwise.

func (*BrandsResponseError) GetErrorsOk

GetErrorsOk returns a tuple with the Errors field value if set, nil otherwise and a boolean to check if the value has been set.

func (*BrandsResponseError) GetOrigin

func (o *BrandsResponseError) GetOrigin() string

GetOrigin returns the Origin field value

func (*BrandsResponseError) GetOriginOk

func (o *BrandsResponseError) GetOriginOk() (*string, bool)

GetOriginOk returns a tuple with the Origin field value and a boolean to check if the value has been set.

func (*BrandsResponseError) GetRequestId

func (o *BrandsResponseError) GetRequestId() string

GetRequestId returns the RequestId field value

func (*BrandsResponseError) GetRequestIdOk

func (o *BrandsResponseError) GetRequestIdOk() (*string, bool)

GetRequestIdOk returns a tuple with the RequestId field value and a boolean to check if the value has been set.

func (*BrandsResponseError) GetTitle

func (o *BrandsResponseError) GetTitle() string

GetTitle returns the Title field value

func (*BrandsResponseError) GetTitleOk

func (o *BrandsResponseError) GetTitleOk() (*string, bool)

GetTitleOk returns a tuple with the Title field value and a boolean to check if the value has been set.

func (*BrandsResponseError) HasErrors

func (o *BrandsResponseError) HasErrors() bool

HasErrors returns a boolean if a field has been set.

func (BrandsResponseError) MarshalJSON

func (o BrandsResponseError) MarshalJSON() ([]byte, error)

func (*BrandsResponseError) SetDetail

func (o *BrandsResponseError) SetDetail(v string)

SetDetail sets field value

func (*BrandsResponseError) SetErrors

SetErrors gets a reference to the given []BrandsResponseErrorErrorsInner and assigns it to the Errors field.

func (*BrandsResponseError) SetOrigin

func (o *BrandsResponseError) SetOrigin(v string)

SetOrigin sets field value

func (*BrandsResponseError) SetRequestId

func (o *BrandsResponseError) SetRequestId(v string)

SetRequestId sets field value

func (*BrandsResponseError) SetTitle

func (o *BrandsResponseError) SetTitle(v string)

SetTitle sets field value

func (BrandsResponseError) ToMap

func (o BrandsResponseError) ToMap() (map[string]interface{}, error)

func (*BrandsResponseError) UnmarshalJSON

func (o *BrandsResponseError) UnmarshalJSON(data []byte) (err error)

type BrandsResponseErrorErrorsInner

type BrandsResponseErrorErrorsInner struct {
	// Error text
	Message *string `json:"message,omitempty"`
	// Parameter where the error occurred
	Location *string `json:"location,omitempty"`
	// Value of the parameter where the error occurred
	Value interface{} `json:"value,omitempty"`
}

BrandsResponseErrorErrorsInner struct for BrandsResponseErrorErrorsInner

func NewBrandsResponseErrorErrorsInner

func NewBrandsResponseErrorErrorsInner() *BrandsResponseErrorErrorsInner

NewBrandsResponseErrorErrorsInner instantiates a new BrandsResponseErrorErrorsInner 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

func NewBrandsResponseErrorErrorsInnerWithDefaults

func NewBrandsResponseErrorErrorsInnerWithDefaults() *BrandsResponseErrorErrorsInner

NewBrandsResponseErrorErrorsInnerWithDefaults instantiates a new BrandsResponseErrorErrorsInner 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

func (*BrandsResponseErrorErrorsInner) GetLocation

func (o *BrandsResponseErrorErrorsInner) GetLocation() string

GetLocation returns the Location field value if set, zero value otherwise.

func (*BrandsResponseErrorErrorsInner) GetLocationOk

func (o *BrandsResponseErrorErrorsInner) GetLocationOk() (*string, bool)

GetLocationOk returns a tuple with the Location field value if set, nil otherwise and a boolean to check if the value has been set.

func (*BrandsResponseErrorErrorsInner) GetMessage

func (o *BrandsResponseErrorErrorsInner) GetMessage() string

GetMessage returns the Message field value if set, zero value otherwise.

func (*BrandsResponseErrorErrorsInner) GetMessageOk

func (o *BrandsResponseErrorErrorsInner) GetMessageOk() (*string, bool)

GetMessageOk returns a tuple with the Message field value if set, nil otherwise and a boolean to check if the value has been set.

func (*BrandsResponseErrorErrorsInner) GetValue

func (o *BrandsResponseErrorErrorsInner) GetValue() interface{}

GetValue returns the Value field value if set, zero value otherwise (both if not set or set to explicit null).

func (*BrandsResponseErrorErrorsInner) GetValueOk

func (o *BrandsResponseErrorErrorsInner) GetValueOk() (*interface{}, bool)

GetValueOk returns a tuple with the Value field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*BrandsResponseErrorErrorsInner) HasLocation

func (o *BrandsResponseErrorErrorsInner) HasLocation() bool

HasLocation returns a boolean if a field has been set.

func (*BrandsResponseErrorErrorsInner) HasMessage

func (o *BrandsResponseErrorErrorsInner) HasMessage() bool

HasMessage returns a boolean if a field has been set.

func (*BrandsResponseErrorErrorsInner) HasValue

func (o *BrandsResponseErrorErrorsInner) HasValue() bool

HasValue returns a boolean if a field has been set.

func (BrandsResponseErrorErrorsInner) MarshalJSON

func (o BrandsResponseErrorErrorsInner) MarshalJSON() ([]byte, error)

func (*BrandsResponseErrorErrorsInner) SetLocation

func (o *BrandsResponseErrorErrorsInner) SetLocation(v string)

SetLocation gets a reference to the given string and assigns it to the Location field.

func (*BrandsResponseErrorErrorsInner) SetMessage

func (o *BrandsResponseErrorErrorsInner) SetMessage(v string)

SetMessage gets a reference to the given string and assigns it to the Message field.

func (*BrandsResponseErrorErrorsInner) SetValue

func (o *BrandsResponseErrorErrorsInner) SetValue(v interface{})

SetValue gets a reference to the given interface{} and assigns it to the Value field.

func (BrandsResponseErrorErrorsInner) ToMap

func (o BrandsResponseErrorErrorsInner) ToMap() (map[string]interface{}, error)

type CategoriesSubjectsAndCharacteristicsAPIService

type CategoriesSubjectsAndCharacteristicsAPIService service

CategoriesSubjectsAndCharacteristicsAPIService CategoriesSubjectsAndCharacteristicsAPI service

func (*CategoriesSubjectsAndCharacteristicsAPIService) ApiContentV1BrandsGet

ApiContentV1BrandsGet Brands

The method returns list of brands by subject ID.

<div class="description_limit"> <a href="/openapi/api-information#tag/Introduction/Rate-Limits">Request limit</a> per one seller's account:

| Period | Limit | Interval | Burst | | --- | --- | --- | --- | | 1 s | 1 request | 1 s | 5 requests | </div>

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiApiContentV1BrandsGetRequest

func (*CategoriesSubjectsAndCharacteristicsAPIService) ApiContentV1BrandsGetExecute

Execute executes the request

@return BrandsResponse

func (*CategoriesSubjectsAndCharacteristicsAPIService) ContentV2DirectoryColorsGet

ContentV2DirectoryColorsGet Color

Provides values of color characteristic.

<div class="description_limit"> <a href="/openapi/api-information#tag/Introduction/Rate-Limits">Request limit</a> per one seller's account for all methods in the <strong>Content</strong> category:

| Period | Limit | Interval | Burst | | --- | --- | --- | --- | | 1 min | 100 requests | 600 ms | 5 requests |

Exceptions are the methods: <ul>

<li><a href="/openapi/work-with-products#tag/Creating-Product-Cards/paths/~1content~1v2~1cards~1upload/post">creating product cards</a></li>
<li><a href="/openapi/work-with-products#tag/Creating-Product-Cards/paths/~1content~1v2~1cards~1upload~1add/post">creating product cards with merge</a></li>
<li><a href="/openapi/work-with-products#tag/Product-Cards/paths/~1content~1v2~1cards~1update/post">editing product cards</a></li>
<li><a href="/openapi/work-with-products#tag/Product-Cards/paths/~1content~1v2~1cards~1error~1list/post">getting failed product cards with errors</a></li>
<li><a href="/openapi/work-with-products#tag/Product-Cards/paths/~1content~1v2~1cards~1delete~1trash/post">transfering product card to trash</a></li>
<li><a href="/openapi/work-with-products#tag/Product-Cards/paths/~1content~1v2~1cards~1recover/post">recovering product card from trash</a></li>

</ul> </div>

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiContentV2DirectoryColorsGetRequest

func (*CategoriesSubjectsAndCharacteristicsAPIService) ContentV2DirectoryColorsGetExecute

Execute executes the request

@return ContentV2DirectoryColorsGet200Response

func (*CategoriesSubjectsAndCharacteristicsAPIService) ContentV2DirectoryCountriesGet

ContentV2DirectoryCountriesGet Country of Origin

Provides value of characteristic country of origin.

<div class="description_limit"> <a href="/openapi/api-information#tag/Introduction/Rate-Limits">Request limit</a> per one seller's account for all methods in the <strong>Content</strong> category:

| Period | Limit | Interval | Burst | | --- | --- | --- | --- | | 1 min | 100 requests | 600 ms | 5 requests |

Exceptions are the methods: <ul>

<li><a href="/openapi/work-with-products#tag/Creating-Product-Cards/paths/~1content~1v2~1cards~1upload/post">creating product cards</a></li>
<li><a href="/openapi/work-with-products#tag/Creating-Product-Cards/paths/~1content~1v2~1cards~1upload~1add/post">creating product cards with merge</a></li>
<li><a href="/openapi/work-with-products#tag/Product-Cards/paths/~1content~1v2~1cards~1update/post">editing product cards</a></li>
<li><a href="/openapi/work-with-products#tag/Product-Cards/paths/~1content~1v2~1cards~1error~1list/post">getting failed product cards with errors</a></li>
<li><a href="/openapi/work-with-products#tag/Product-Cards/paths/~1content~1v2~1cards~1delete~1trash/post">transfering product card to trash</a></li>
<li><a href="/openapi/work-with-products#tag/Product-Cards/paths/~1content~1v2~1cards~1recover/post">recovering product card from trash</a></li>

</ul> </div>

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiContentV2DirectoryCountriesGetRequest

func (*CategoriesSubjectsAndCharacteristicsAPIService) ContentV2DirectoryCountriesGetExecute

Execute executes the request

@return ContentV2DirectoryCountriesGet200Response

func (*CategoriesSubjectsAndCharacteristicsAPIService) ContentV2DirectoryKindsGet

ContentV2DirectoryKindsGet Gender

Provides values of gender characteristic.

<div class="description_limit"> <a href="/openapi/api-information#tag/Introduction/Rate-Limits">Request limit</a> per one seller's account for all methods in the <strong>Content</strong> category:

| Period | Limit | Interval | Burst | | --- | --- | --- | --- | | 1 min | 100 requests | 600 ms | 5 requests |

Exceptions are the methods: <ul>

<li><a href="/openapi/work-with-products#tag/Creating-Product-Cards/paths/~1content~1v2~1cards~1upload/post">creating product cards</a></li>
<li><a href="/openapi/work-with-products#tag/Creating-Product-Cards/paths/~1content~1v2~1cards~1upload~1add/post">creating product cards with merge</a></li>
<li><a href="/openapi/work-with-products#tag/Product-Cards/paths/~1content~1v2~1cards~1update/post">editing product cards</a></li>
<li><a href="/openapi/work-with-products#tag/Product-Cards/paths/~1content~1v2~1cards~1error~1list/post">getting failed product cards with errors</a></li>
<li><a href="/openapi/work-with-products#tag/Product-Cards/paths/~1content~1v2~1cards~1delete~1trash/post">transfering product card to trash</a></li>
<li><a href="/openapi/work-with-products#tag/Product-Cards/paths/~1content~1v2~1cards~1recover/post">recovering product card from trash</a></li>

</ul> </div>

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiContentV2DirectoryKindsGetRequest

func (*CategoriesSubjectsAndCharacteristicsAPIService) ContentV2DirectoryKindsGetExecute

Execute executes the request

@return ContentV2DirectoryKindsGet200Response

func (*CategoriesSubjectsAndCharacteristicsAPIService) ContentV2DirectorySeasonsGet

ContentV2DirectorySeasonsGet Season

Provide values of season characteristic

<div class="description_limit"> <a href="/openapi/api-information#tag/Introduction/Rate-Limits">Request limit</a> per one seller's account for all methods in the <strong>Content</strong> category:

| Period | Limit | Interval | Burst | | --- | --- | --- | --- | | 1 min | 100 requests | 600 ms | 5 requests |

Exceptions are the methods: <ul>

<li><a href="/openapi/work-with-products#tag/Creating-Product-Cards/paths/~1content~1v2~1cards~1upload/post">creating product cards</a></li>
<li><a href="/openapi/work-with-products#tag/Creating-Product-Cards/paths/~1content~1v2~1cards~1upload~1add/post">creating product cards with merge</a></li>
<li><a href="/openapi/work-with-products#tag/Product-Cards/paths/~1content~1v2~1cards~1update/post">editing product cards</a></li>
<li><a href="/openapi/work-with-products#tag/Product-Cards/paths/~1content~1v2~1cards~1error~1list/post">getting failed product cards with errors</a></li>
<li><a href="/openapi/work-with-products#tag/Product-Cards/paths/~1content~1v2~1cards~1delete~1trash/post">transfering product card to trash</a></li>
<li><a href="/openapi/work-with-products#tag/Product-Cards/paths/~1content~1v2~1cards~1recover/post">recovering product card from trash</a></li>

</ul> </div>

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiContentV2DirectorySeasonsGetRequest

func (*CategoriesSubjectsAndCharacteristicsAPIService) ContentV2DirectorySeasonsGetExecute

Execute executes the request

@return ContentV2DirectorySeasonsGet200Response

func (*CategoriesSubjectsAndCharacteristicsAPIService) ContentV2DirectoryTnvedGet

ContentV2DirectoryTnvedGet HS-codes

The method provides list of HS-codes by category name and filter by HS-code.

<div class="description_limit"> <a href="/openapi/api-information#tag/Introduction/Rate-Limits">Request limit</a> per one seller's account for all methods in the <strong>Content</strong> category:

| Period | Limit | Interval | Burst | | --- | --- | --- | --- | | 1 min | 100 requests | 600 ms | 5 requests |

Exceptions are the methods: <ul>

<li><a href="/openapi/work-with-products#tag/Creating-Product-Cards/paths/~1content~1v2~1cards~1upload/post">creating product cards</a></li>
<li><a href="/openapi/work-with-products#tag/Creating-Product-Cards/paths/~1content~1v2~1cards~1upload~1add/post">creating product cards with merge</a></li>
<li><a href="/openapi/work-with-products#tag/Product-Cards/paths/~1content~1v2~1cards~1update/post">editing product cards</a></li>
<li><a href="/openapi/work-with-products#tag/Product-Cards/paths/~1content~1v2~1cards~1error~1list/post">getting failed product cards with errors</a></li>
<li><a href="/openapi/work-with-products#tag/Product-Cards/paths/~1content~1v2~1cards~1delete~1trash/post">transfering product card to trash</a></li>
<li><a href="/openapi/work-with-products#tag/Product-Cards/paths/~1content~1v2~1cards~1recover/post">recovering product card from trash</a></li>

</ul> </div>

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiContentV2DirectoryTnvedGetRequest

func (*CategoriesSubjectsAndCharacteristicsAPIService) ContentV2DirectoryTnvedGetExecute

Execute executes the request

@return ContentV2DirectoryTnvedGet200Response

func (*CategoriesSubjectsAndCharacteristicsAPIService) ContentV2DirectoryVatGet

ContentV2DirectoryVatGet VAT Rate

Returns a list of values for the **VAT rate** characteristic

<div class="description_limit"> <a href="/openapi/api-information#tag/Introduction/Rate-Limits">Request limit</a> per one seller's account for all methods in the <strong>Content</strong> category:

| Period | Limit | Interval | Burst | | --- | --- | --- | --- | | 1 min | 100 requests | 600 ms | 5 requests |

Exceptions are the methods: <ul>

<li><a href="/openapi/work-with-products#tag/Creating-Product-Cards/paths/~1content~1v2~1cards~1upload/post">creating product cards</a></li>
<li><a href="/openapi/work-with-products#tag/Creating-Product-Cards/paths/~1content~1v2~1cards~1upload~1add/post">creating product cards with merge</a></li>
<li><a href="/openapi/work-with-products#tag/Product-Cards/paths/~1content~1v2~1cards~1update/post">editing product cards</a></li>
<li><a href="/openapi/work-with-products#tag/Product-Cards/paths/~1content~1v2~1cards~1error~1list/post">getting failed product cards with errors</a></li>
<li><a href="/openapi/work-with-products#tag/Product-Cards/paths/~1content~1v2~1cards~1delete~1trash/post">transfering product card to trash</a></li>
<li><a href="/openapi/work-with-products#tag/Product-Cards/paths/~1content~1v2~1cards~1recover/post">recovering product card from trash</a></li>

</ul> </div>

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiContentV2DirectoryVatGetRequest

func (*CategoriesSubjectsAndCharacteristicsAPIService) ContentV2DirectoryVatGetExecute

Execute executes the request

@return ContentV2DirectoryVatGet200Response

func (*CategoriesSubjectsAndCharacteristicsAPIService) ContentV2ObjectAllGet

ContentV2ObjectAllGet Subjects List

Returns the list of all available subjects, subjects parent categories and their IDs

<div class="description_limit"> <a href="/openapi/api-information#tag/Introduction/Rate-Limits">Request limit</a> per one seller's account for all methods in the <strong>Content</strong> category:

| Period | Limit | Interval | Burst | | --- | --- | --- | --- | | 1 min | 100 requests | 600 ms | 5 requests |

Exceptions are the methods: <ul>

<li><a href="/openapi/work-with-products#tag/Creating-Product-Cards/paths/~1content~1v2~1cards~1upload/post">creating product cards</a></li>
<li><a href="/openapi/work-with-products#tag/Creating-Product-Cards/paths/~1content~1v2~1cards~1upload~1add/post">creating product cards with merge</a></li>
<li><a href="/openapi/work-with-products#tag/Product-Cards/paths/~1content~1v2~1cards~1update/post">editing product cards</a></li>
<li><a href="/openapi/work-with-products#tag/Product-Cards/paths/~1content~1v2~1cards~1error~1list/post">getting failed product cards with errors</a></li>
<li><a href="/openapi/work-with-products#tag/Product-Cards/paths/~1content~1v2~1cards~1delete~1trash/post">transfering product card to trash</a></li>
<li><a href="/openapi/work-with-products#tag/Product-Cards/paths/~1content~1v2~1cards~1recover/post">recovering product card from trash</a></li>

</ul> </div>

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiContentV2ObjectAllGetRequest

func (*CategoriesSubjectsAndCharacteristicsAPIService) ContentV2ObjectAllGetExecute

Execute executes the request

@return ContentV2ObjectAllGet200Response

func (*CategoriesSubjectsAndCharacteristicsAPIService) ContentV2ObjectCharcsSubjectIdGet

ContentV2ObjectCharcsSubjectIdGet Subject Characteristics

Returns list of the subject characteristics by its ID

<div class="description_limit"> <a href="/openapi/api-information#tag/Introduction/Rate-Limits">Request limit</a> per one seller's account for all methods in the <strong>Content</strong> category:

| Period | Limit | Interval | Burst | | --- | --- | --- | --- | | 1 min | 100 requests | 600 ms | 5 requests |

Exceptions are the methods: <ul>

<li><a href="/openapi/work-with-products#tag/Creating-Product-Cards/paths/~1content~1v2~1cards~1upload/post">creating product cards</a></li>
<li><a href="/openapi/work-with-products#tag/Creating-Product-Cards/paths/~1content~1v2~1cards~1upload~1add/post">creating product cards with merge</a></li>
<li><a href="/openapi/work-with-products#tag/Product-Cards/paths/~1content~1v2~1cards~1update/post">editing product cards</a></li>
<li><a href="/openapi/work-with-products#tag/Product-Cards/paths/~1content~1v2~1cards~1error~1list/post">getting failed product cards with errors</a></li>
<li><a href="/openapi/work-with-products#tag/Product-Cards/paths/~1content~1v2~1cards~1delete~1trash/post">transfering product card to trash</a></li>
<li><a href="/openapi/work-with-products#tag/Product-Cards/paths/~1content~1v2~1cards~1recover/post">recovering product card from trash</a></li>

</ul> </div>

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param subjectId Subject ID
@return ApiContentV2ObjectCharcsSubjectIdGetRequest

func (*CategoriesSubjectsAndCharacteristicsAPIService) ContentV2ObjectCharcsSubjectIdGetExecute

Execute executes the request

@return ContentV2ObjectCharcsSubjectIdGet200Response

func (*CategoriesSubjectsAndCharacteristicsAPIService) ContentV2ObjectParentAllGet

ContentV2ObjectParentAllGet Products Parent Categories

Returns the list of all products parent categories

<div class="description_limit"> <a href="/openapi/api-information#tag/Introduction/Rate-Limits">Request limit</a> per one seller's account for all methods in the <strong>Content</strong> category:

| Period | Limit | Interval | Burst | | --- | --- | --- | --- | | 1 min | 100 requests | 600 ms | 5 requests |

Exceptions are the methods: <ul>

<li><a href="/openapi/work-with-products#tag/Creating-Product-Cards/paths/~1content~1v2~1cards~1upload/post">creating product cards</a></li>
<li><a href="/openapi/work-with-products#tag/Creating-Product-Cards/paths/~1content~1v2~1cards~1upload~1add/post">creating product cards with merge</a></li>
<li><a href="/openapi/work-with-products#tag/Product-Cards/paths/~1content~1v2~1cards~1update/post">editing product cards</a></li>
<li><a href="/openapi/work-with-products#tag/Product-Cards/paths/~1content~1v2~1cards~1error~1list/post">getting failed product cards with errors</a></li>
<li><a href="/openapi/work-with-products#tag/Product-Cards/paths/~1content~1v2~1cards~1delete~1trash/post">transfering product card to trash</a></li>
<li><a href="/openapi/work-with-products#tag/Product-Cards/paths/~1content~1v2~1cards~1recover/post">recovering product card from trash</a></li>

</ul> </div>

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiContentV2ObjectParentAllGetRequest

func (*CategoriesSubjectsAndCharacteristicsAPIService) ContentV2ObjectParentAllGetExecute

Execute executes the request

@return ContentV2ObjectParentAllGet200Response

type ClubDiscReq

type ClubDiscReq struct {
	// WB article
	NmID int32 `json:"nmID"`
	// WB Club discount, %
	ClubDiscount int32 `json:"clubDiscount"`
}

ClubDiscReq struct for ClubDiscReq

func NewClubDiscReq

func NewClubDiscReq(nmID int32, clubDiscount int32) *ClubDiscReq

NewClubDiscReq instantiates a new ClubDiscReq 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

func NewClubDiscReqWithDefaults

func NewClubDiscReqWithDefaults() *ClubDiscReq

NewClubDiscReqWithDefaults instantiates a new ClubDiscReq 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

func (*ClubDiscReq) GetClubDiscount

func (o *ClubDiscReq) GetClubDiscount() int32

GetClubDiscount returns the ClubDiscount field value

func (*ClubDiscReq) GetClubDiscountOk

func (o *ClubDiscReq) GetClubDiscountOk() (*int32, bool)

GetClubDiscountOk returns a tuple with the ClubDiscount field value and a boolean to check if the value has been set.

func (*ClubDiscReq) GetNmID

func (o *ClubDiscReq) GetNmID() int32

GetNmID returns the NmID field value

func (*ClubDiscReq) GetNmIDOk

func (o *ClubDiscReq) GetNmIDOk() (*int32, bool)

GetNmIDOk returns a tuple with the NmID field value and a boolean to check if the value has been set.

func (ClubDiscReq) MarshalJSON

func (o ClubDiscReq) MarshalJSON() ([]byte, error)

func (*ClubDiscReq) SetClubDiscount

func (o *ClubDiscReq) SetClubDiscount(v int32)

SetClubDiscount sets field value

func (*ClubDiscReq) SetNmID

func (o *ClubDiscReq) SetNmID(v int32)

SetNmID sets field value

func (ClubDiscReq) ToMap

func (o ClubDiscReq) ToMap() (map[string]interface{}, error)

func (*ClubDiscReq) UnmarshalJSON

func (o *ClubDiscReq) UnmarshalJSON(data []byte) (err error)

type Configuration

type Configuration struct {
	Host             string            `json:"host,omitempty"`
	Scheme           string            `json:"scheme,omitempty"`
	DefaultHeader    map[string]string `json:"defaultHeader,omitempty"`
	UserAgent        string            `json:"userAgent,omitempty"`
	Debug            bool              `json:"debug,omitempty"`
	Servers          ServerConfigurations
	OperationServers map[string]ServerConfigurations
	HTTPClient       *http.Client
}

Configuration stores the configuration of the API client

func NewConfiguration

func NewConfiguration() *Configuration

NewConfiguration returns a new Configuration object

func (*Configuration) AddDefaultHeader

func (c *Configuration) AddDefaultHeader(key string, value string)

AddDefaultHeader adds a new HTTP header to the default header in the request

func (*Configuration) ServerURL

func (c *Configuration) ServerURL(index int, variables map[string]string) (string, error)

ServerURL returns URL based on server settings

func (*Configuration) ServerURLWithContext

func (c *Configuration) ServerURLWithContext(ctx context.Context, endpoint string) (string, error)

ServerURLWithContext returns a new server URL given an endpoint

type ContentV2BarcodesPost200Response

type ContentV2BarcodesPost200Response struct {
	// An array of generated SKUs
	Data []string `json:"data,omitempty"`
	// Error flag
	Error *bool `json:"error,omitempty"`
	// Error description.
	ErrorText *string `json:"errorText,omitempty"`
	// Any additional errors
	AdditionalErrors NullableString `json:"additionalErrors,omitempty"`
}

ContentV2BarcodesPost200Response struct for ContentV2BarcodesPost200Response

func NewContentV2BarcodesPost200Response

func NewContentV2BarcodesPost200Response() *ContentV2BarcodesPost200Response

NewContentV2BarcodesPost200Response instantiates a new ContentV2BarcodesPost200Response 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

func NewContentV2BarcodesPost200ResponseWithDefaults

func NewContentV2BarcodesPost200ResponseWithDefaults() *ContentV2BarcodesPost200Response

NewContentV2BarcodesPost200ResponseWithDefaults instantiates a new ContentV2BarcodesPost200Response 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

func (*ContentV2BarcodesPost200Response) GetAdditionalErrors

func (o *ContentV2BarcodesPost200Response) GetAdditionalErrors() string

GetAdditionalErrors returns the AdditionalErrors field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ContentV2BarcodesPost200Response) GetAdditionalErrorsOk

func (o *ContentV2BarcodesPost200Response) GetAdditionalErrorsOk() (*string, bool)

GetAdditionalErrorsOk returns a tuple with the AdditionalErrors field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*ContentV2BarcodesPost200Response) GetData

GetData returns the Data field value if set, zero value otherwise.

func (*ContentV2BarcodesPost200Response) GetDataOk

func (o *ContentV2BarcodesPost200Response) GetDataOk() ([]string, bool)

GetDataOk returns a tuple with the Data field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ContentV2BarcodesPost200Response) GetError

func (o *ContentV2BarcodesPost200Response) GetError() bool

GetError returns the Error field value if set, zero value otherwise.

func (*ContentV2BarcodesPost200Response) GetErrorOk

func (o *ContentV2BarcodesPost200Response) GetErrorOk() (*bool, bool)

GetErrorOk returns a tuple with the Error field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ContentV2BarcodesPost200Response) GetErrorText

func (o *ContentV2BarcodesPost200Response) GetErrorText() string

GetErrorText returns the ErrorText field value if set, zero value otherwise.

func (*ContentV2BarcodesPost200Response) GetErrorTextOk

func (o *ContentV2BarcodesPost200Response) GetErrorTextOk() (*string, bool)

GetErrorTextOk returns a tuple with the ErrorText field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ContentV2BarcodesPost200Response) HasAdditionalErrors

func (o *ContentV2BarcodesPost200Response) HasAdditionalErrors() bool

HasAdditionalErrors returns a boolean if a field has been set.

func (*ContentV2BarcodesPost200Response) HasData

HasData returns a boolean if a field has been set.

func (*ContentV2BarcodesPost200Response) HasError

func (o *ContentV2BarcodesPost200Response) HasError() bool

HasError returns a boolean if a field has been set.

func (*ContentV2BarcodesPost200Response) HasErrorText

func (o *ContentV2BarcodesPost200Response) HasErrorText() bool

HasErrorText returns a boolean if a field has been set.

func (ContentV2BarcodesPost200Response) MarshalJSON

func (o ContentV2BarcodesPost200Response) MarshalJSON() ([]byte, error)

func (*ContentV2BarcodesPost200Response) SetAdditionalErrors

func (o *ContentV2BarcodesPost200Response) SetAdditionalErrors(v string)

SetAdditionalErrors gets a reference to the given NullableString and assigns it to the AdditionalErrors field.

func (*ContentV2BarcodesPost200Response) SetAdditionalErrorsNil

func (o *ContentV2BarcodesPost200Response) SetAdditionalErrorsNil()

SetAdditionalErrorsNil sets the value for AdditionalErrors to be an explicit nil

func (*ContentV2BarcodesPost200Response) SetData

func (o *ContentV2BarcodesPost200Response) SetData(v []string)

SetData gets a reference to the given []string and assigns it to the Data field.

func (*ContentV2BarcodesPost200Response) SetError

func (o *ContentV2BarcodesPost200Response) SetError(v bool)

SetError gets a reference to the given bool and assigns it to the Error field.

func (*ContentV2BarcodesPost200Response) SetErrorText

func (o *ContentV2BarcodesPost200Response) SetErrorText(v string)

SetErrorText gets a reference to the given string and assigns it to the ErrorText field.

func (ContentV2BarcodesPost200Response) ToMap

func (o ContentV2BarcodesPost200Response) ToMap() (map[string]interface{}, error)

func (*ContentV2BarcodesPost200Response) UnsetAdditionalErrors

func (o *ContentV2BarcodesPost200Response) UnsetAdditionalErrors()

UnsetAdditionalErrors ensures that no value is present for AdditionalErrors, not even an explicit nil

type ContentV2BarcodesPostRequest

type ContentV2BarcodesPostRequest struct {
	// Number of SKUs to be generated, maximum 5,000
	Count *int32 `json:"count,omitempty"`
}

ContentV2BarcodesPostRequest struct for ContentV2BarcodesPostRequest

func NewContentV2BarcodesPostRequest

func NewContentV2BarcodesPostRequest() *ContentV2BarcodesPostRequest

NewContentV2BarcodesPostRequest instantiates a new ContentV2BarcodesPostRequest 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

func NewContentV2BarcodesPostRequestWithDefaults

func NewContentV2BarcodesPostRequestWithDefaults() *ContentV2BarcodesPostRequest

NewContentV2BarcodesPostRequestWithDefaults instantiates a new ContentV2BarcodesPostRequest 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

func (*ContentV2BarcodesPostRequest) GetCount

func (o *ContentV2BarcodesPostRequest) GetCount() int32

GetCount returns the Count field value if set, zero value otherwise.

func (*ContentV2BarcodesPostRequest) GetCountOk

func (o *ContentV2BarcodesPostRequest) GetCountOk() (*int32, bool)

GetCountOk returns a tuple with the Count field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ContentV2BarcodesPostRequest) HasCount

func (o *ContentV2BarcodesPostRequest) HasCount() bool

HasCount returns a boolean if a field has been set.

func (ContentV2BarcodesPostRequest) MarshalJSON

func (o ContentV2BarcodesPostRequest) MarshalJSON() ([]byte, error)

func (*ContentV2BarcodesPostRequest) SetCount

func (o *ContentV2BarcodesPostRequest) SetCount(v int32)

SetCount gets a reference to the given int32 and assigns it to the Count field.

func (ContentV2BarcodesPostRequest) ToMap

func (o ContentV2BarcodesPostRequest) ToMap() (map[string]interface{}, error)

type ContentV2CardsDeleteTrashPost200Response

type ContentV2CardsDeleteTrashPost200Response struct {
	Data map[string]interface{} `json:"data,omitempty"`
	// Error flag
	Error *bool `json:"error,omitempty"`
	// Error description
	ErrorText *string `json:"errorText,omitempty"`
	// Any additional errors
	AdditionalErrors map[string]interface{} `json:"additionalErrors,omitempty"`
}

ContentV2CardsDeleteTrashPost200Response struct for ContentV2CardsDeleteTrashPost200Response

func NewContentV2CardsDeleteTrashPost200Response

func NewContentV2CardsDeleteTrashPost200Response() *ContentV2CardsDeleteTrashPost200Response

NewContentV2CardsDeleteTrashPost200Response instantiates a new ContentV2CardsDeleteTrashPost200Response 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

func NewContentV2CardsDeleteTrashPost200ResponseWithDefaults

func NewContentV2CardsDeleteTrashPost200ResponseWithDefaults() *ContentV2CardsDeleteTrashPost200Response

NewContentV2CardsDeleteTrashPost200ResponseWithDefaults instantiates a new ContentV2CardsDeleteTrashPost200Response 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

func (*ContentV2CardsDeleteTrashPost200Response) GetAdditionalErrors

func (o *ContentV2CardsDeleteTrashPost200Response) GetAdditionalErrors() map[string]interface{}

GetAdditionalErrors returns the AdditionalErrors field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ContentV2CardsDeleteTrashPost200Response) GetAdditionalErrorsOk

func (o *ContentV2CardsDeleteTrashPost200Response) GetAdditionalErrorsOk() (map[string]interface{}, bool)

GetAdditionalErrorsOk returns a tuple with the AdditionalErrors field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*ContentV2CardsDeleteTrashPost200Response) GetData

func (o *ContentV2CardsDeleteTrashPost200Response) GetData() map[string]interface{}

GetData returns the Data field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ContentV2CardsDeleteTrashPost200Response) GetDataOk

func (o *ContentV2CardsDeleteTrashPost200Response) GetDataOk() (map[string]interface{}, bool)

GetDataOk returns a tuple with the Data field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*ContentV2CardsDeleteTrashPost200Response) GetError

GetError returns the Error field value if set, zero value otherwise.

func (*ContentV2CardsDeleteTrashPost200Response) GetErrorOk

GetErrorOk returns a tuple with the Error field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ContentV2CardsDeleteTrashPost200Response) GetErrorText

GetErrorText returns the ErrorText field value if set, zero value otherwise.

func (*ContentV2CardsDeleteTrashPost200Response) GetErrorTextOk

func (o *ContentV2CardsDeleteTrashPost200Response) GetErrorTextOk() (*string, bool)

GetErrorTextOk returns a tuple with the ErrorText field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ContentV2CardsDeleteTrashPost200Response) HasAdditionalErrors

func (o *ContentV2CardsDeleteTrashPost200Response) HasAdditionalErrors() bool

HasAdditionalErrors returns a boolean if a field has been set.

func (*ContentV2CardsDeleteTrashPost200Response) HasData

HasData returns a boolean if a field has been set.

func (*ContentV2CardsDeleteTrashPost200Response) HasError

HasError returns a boolean if a field has been set.

func (*ContentV2CardsDeleteTrashPost200Response) HasErrorText

HasErrorText returns a boolean if a field has been set.

func (ContentV2CardsDeleteTrashPost200Response) MarshalJSON

func (*ContentV2CardsDeleteTrashPost200Response) SetAdditionalErrors

func (o *ContentV2CardsDeleteTrashPost200Response) SetAdditionalErrors(v map[string]interface{})

SetAdditionalErrors gets a reference to the given map[string]interface{} and assigns it to the AdditionalErrors field.

func (*ContentV2CardsDeleteTrashPost200Response) SetData

func (o *ContentV2CardsDeleteTrashPost200Response) SetData(v map[string]interface{})

SetData gets a reference to the given map[string]interface{} and assigns it to the Data field.

func (*ContentV2CardsDeleteTrashPost200Response) SetError

SetError gets a reference to the given bool and assigns it to the Error field.

func (*ContentV2CardsDeleteTrashPost200Response) SetErrorText

SetErrorText gets a reference to the given string and assigns it to the ErrorText field.

func (ContentV2CardsDeleteTrashPost200Response) ToMap

func (o ContentV2CardsDeleteTrashPost200Response) ToMap() (map[string]interface{}, error)

type ContentV2CardsDeleteTrashPostRequest

type ContentV2CardsDeleteTrashPostRequest struct {
	// Wildberries articles
	NmIDs []int32 `json:"nmIDs,omitempty"`
}

ContentV2CardsDeleteTrashPostRequest struct for ContentV2CardsDeleteTrashPostRequest

func NewContentV2CardsDeleteTrashPostRequest

func NewContentV2CardsDeleteTrashPostRequest() *ContentV2CardsDeleteTrashPostRequest

NewContentV2CardsDeleteTrashPostRequest instantiates a new ContentV2CardsDeleteTrashPostRequest 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

func NewContentV2CardsDeleteTrashPostRequestWithDefaults

func NewContentV2CardsDeleteTrashPostRequestWithDefaults() *ContentV2CardsDeleteTrashPostRequest

NewContentV2CardsDeleteTrashPostRequestWithDefaults instantiates a new ContentV2CardsDeleteTrashPostRequest 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

func (*ContentV2CardsDeleteTrashPostRequest) GetNmIDs

GetNmIDs returns the NmIDs field value if set, zero value otherwise.

func (*ContentV2CardsDeleteTrashPostRequest) GetNmIDsOk

func (o *ContentV2CardsDeleteTrashPostRequest) GetNmIDsOk() ([]int32, bool)

GetNmIDsOk returns a tuple with the NmIDs field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ContentV2CardsDeleteTrashPostRequest) HasNmIDs

HasNmIDs returns a boolean if a field has been set.

func (ContentV2CardsDeleteTrashPostRequest) MarshalJSON

func (o ContentV2CardsDeleteTrashPostRequest) MarshalJSON() ([]byte, error)

func (*ContentV2CardsDeleteTrashPostRequest) SetNmIDs

SetNmIDs gets a reference to the given []int32 and assigns it to the NmIDs field.

func (ContentV2CardsDeleteTrashPostRequest) ToMap

func (o ContentV2CardsDeleteTrashPostRequest) ToMap() (map[string]interface{}, error)

type ContentV2CardsLimitsGet200Response

type ContentV2CardsLimitsGet200Response struct {
	Data *ContentV2CardsLimitsGet200ResponseData `json:"data,omitempty"`
	// Error flag
	Error *bool `json:"error,omitempty"`
	// Error description
	ErrorText *string `json:"errorText,omitempty"`
	// Additional errors
	AdditionalErrors NullableString `json:"additionalErrors,omitempty"`
}

ContentV2CardsLimitsGet200Response struct for ContentV2CardsLimitsGet200Response

func NewContentV2CardsLimitsGet200Response

func NewContentV2CardsLimitsGet200Response() *ContentV2CardsLimitsGet200Response

NewContentV2CardsLimitsGet200Response instantiates a new ContentV2CardsLimitsGet200Response 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

func NewContentV2CardsLimitsGet200ResponseWithDefaults

func NewContentV2CardsLimitsGet200ResponseWithDefaults() *ContentV2CardsLimitsGet200Response

NewContentV2CardsLimitsGet200ResponseWithDefaults instantiates a new ContentV2CardsLimitsGet200Response 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

func (*ContentV2CardsLimitsGet200Response) GetAdditionalErrors

func (o *ContentV2CardsLimitsGet200Response) GetAdditionalErrors() string

GetAdditionalErrors returns the AdditionalErrors field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ContentV2CardsLimitsGet200Response) GetAdditionalErrorsOk

func (o *ContentV2CardsLimitsGet200Response) GetAdditionalErrorsOk() (*string, bool)

GetAdditionalErrorsOk returns a tuple with the AdditionalErrors field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*ContentV2CardsLimitsGet200Response) GetData

GetData returns the Data field value if set, zero value otherwise.

func (*ContentV2CardsLimitsGet200Response) GetDataOk

GetDataOk returns a tuple with the Data field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ContentV2CardsLimitsGet200Response) GetError

GetError returns the Error field value if set, zero value otherwise.

func (*ContentV2CardsLimitsGet200Response) GetErrorOk

func (o *ContentV2CardsLimitsGet200Response) GetErrorOk() (*bool, bool)

GetErrorOk returns a tuple with the Error field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ContentV2CardsLimitsGet200Response) GetErrorText

func (o *ContentV2CardsLimitsGet200Response) GetErrorText() string

GetErrorText returns the ErrorText field value if set, zero value otherwise.

func (*ContentV2CardsLimitsGet200Response) GetErrorTextOk

func (o *ContentV2CardsLimitsGet200Response) GetErrorTextOk() (*string, bool)

GetErrorTextOk returns a tuple with the ErrorText field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ContentV2CardsLimitsGet200Response) HasAdditionalErrors

func (o *ContentV2CardsLimitsGet200Response) HasAdditionalErrors() bool

HasAdditionalErrors returns a boolean if a field has been set.

func (*ContentV2CardsLimitsGet200Response) HasData

HasData returns a boolean if a field has been set.

func (*ContentV2CardsLimitsGet200Response) HasError

HasError returns a boolean if a field has been set.

func (*ContentV2CardsLimitsGet200Response) HasErrorText

func (o *ContentV2CardsLimitsGet200Response) HasErrorText() bool

HasErrorText returns a boolean if a field has been set.

func (ContentV2CardsLimitsGet200Response) MarshalJSON

func (o ContentV2CardsLimitsGet200Response) MarshalJSON() ([]byte, error)

func (*ContentV2CardsLimitsGet200Response) SetAdditionalErrors

func (o *ContentV2CardsLimitsGet200Response) SetAdditionalErrors(v string)

SetAdditionalErrors gets a reference to the given NullableString and assigns it to the AdditionalErrors field.

func (*ContentV2CardsLimitsGet200Response) SetAdditionalErrorsNil

func (o *ContentV2CardsLimitsGet200Response) SetAdditionalErrorsNil()

SetAdditionalErrorsNil sets the value for AdditionalErrors to be an explicit nil

func (*ContentV2CardsLimitsGet200Response) SetData

SetData gets a reference to the given ContentV2CardsLimitsGet200ResponseData and assigns it to the Data field.

func (*ContentV2CardsLimitsGet200Response) SetError

SetError gets a reference to the given bool and assigns it to the Error field.

func (*ContentV2CardsLimitsGet200Response) SetErrorText

func (o *ContentV2CardsLimitsGet200Response) SetErrorText(v string)

SetErrorText gets a reference to the given string and assigns it to the ErrorText field.

func (ContentV2CardsLimitsGet200Response) ToMap

func (o ContentV2CardsLimitsGet200Response) ToMap() (map[string]interface{}, error)

func (*ContentV2CardsLimitsGet200Response) UnsetAdditionalErrors

func (o *ContentV2CardsLimitsGet200Response) UnsetAdditionalErrors()

UnsetAdditionalErrors ensures that no value is present for AdditionalErrors, not even an explicit nil

type ContentV2CardsLimitsGet200ResponseData

type ContentV2CardsLimitsGet200ResponseData struct {
	// Amount of free limits
	FreeLimits *int32 `json:"freeLimits,omitempty"`
	// Amount of paid limits
	PaidLimits *int32 `json:"paidLimits,omitempty"`
}

ContentV2CardsLimitsGet200ResponseData struct for ContentV2CardsLimitsGet200ResponseData

func NewContentV2CardsLimitsGet200ResponseData

func NewContentV2CardsLimitsGet200ResponseData() *ContentV2CardsLimitsGet200ResponseData

NewContentV2CardsLimitsGet200ResponseData instantiates a new ContentV2CardsLimitsGet200ResponseData 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

func NewContentV2CardsLimitsGet200ResponseDataWithDefaults

func NewContentV2CardsLimitsGet200ResponseDataWithDefaults() *ContentV2CardsLimitsGet200ResponseData

NewContentV2CardsLimitsGet200ResponseDataWithDefaults instantiates a new ContentV2CardsLimitsGet200ResponseData 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

func (*ContentV2CardsLimitsGet200ResponseData) GetFreeLimits

func (o *ContentV2CardsLimitsGet200ResponseData) GetFreeLimits() int32

GetFreeLimits returns the FreeLimits field value if set, zero value otherwise.

func (*ContentV2CardsLimitsGet200ResponseData) GetFreeLimitsOk

func (o *ContentV2CardsLimitsGet200ResponseData) GetFreeLimitsOk() (*int32, bool)

GetFreeLimitsOk returns a tuple with the FreeLimits field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ContentV2CardsLimitsGet200ResponseData) GetPaidLimits

func (o *ContentV2CardsLimitsGet200ResponseData) GetPaidLimits() int32

GetPaidLimits returns the PaidLimits field value if set, zero value otherwise.

func (*ContentV2CardsLimitsGet200ResponseData) GetPaidLimitsOk

func (o *ContentV2CardsLimitsGet200ResponseData) GetPaidLimitsOk() (*int32, bool)

GetPaidLimitsOk returns a tuple with the PaidLimits field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ContentV2CardsLimitsGet200ResponseData) HasFreeLimits

func (o *ContentV2CardsLimitsGet200ResponseData) HasFreeLimits() bool

HasFreeLimits returns a boolean if a field has been set.

func (*ContentV2CardsLimitsGet200ResponseData) HasPaidLimits

func (o *ContentV2CardsLimitsGet200ResponseData) HasPaidLimits() bool

HasPaidLimits returns a boolean if a field has been set.

func (ContentV2CardsLimitsGet200ResponseData) MarshalJSON

func (o ContentV2CardsLimitsGet200ResponseData) MarshalJSON() ([]byte, error)

func (*ContentV2CardsLimitsGet200ResponseData) SetFreeLimits

func (o *ContentV2CardsLimitsGet200ResponseData) SetFreeLimits(v int32)

SetFreeLimits gets a reference to the given int32 and assigns it to the FreeLimits field.

func (*ContentV2CardsLimitsGet200ResponseData) SetPaidLimits

func (o *ContentV2CardsLimitsGet200ResponseData) SetPaidLimits(v int32)

SetPaidLimits gets a reference to the given int32 and assigns it to the PaidLimits field.

func (ContentV2CardsLimitsGet200ResponseData) ToMap

func (o ContentV2CardsLimitsGet200ResponseData) ToMap() (map[string]interface{}, error)

type ContentV2CardsMoveNmPost400Response

type ContentV2CardsMoveNmPost400Response struct {
	ResponseCardCreate    *ResponseCardCreate
	ResponseIncorrectDate *ResponseIncorrectDate
}

ContentV2CardsMoveNmPost400Response - struct for ContentV2CardsMoveNmPost400Response

func ResponseCardCreateAsContentV2CardsMoveNmPost400Response

func ResponseCardCreateAsContentV2CardsMoveNmPost400Response(v *ResponseCardCreate) ContentV2CardsMoveNmPost400Response

ResponseCardCreateAsContentV2CardsMoveNmPost400Response is a convenience function that returns ResponseCardCreate wrapped in ContentV2CardsMoveNmPost400Response

func ResponseIncorrectDateAsContentV2CardsMoveNmPost400Response

func ResponseIncorrectDateAsContentV2CardsMoveNmPost400Response(v *ResponseIncorrectDate) ContentV2CardsMoveNmPost400Response

ResponseIncorrectDateAsContentV2CardsMoveNmPost400Response is a convenience function that returns ResponseIncorrectDate wrapped in ContentV2CardsMoveNmPost400Response

func (*ContentV2CardsMoveNmPost400Response) GetActualInstance

func (obj *ContentV2CardsMoveNmPost400Response) GetActualInstance() interface{}

Get the actual instance

func (ContentV2CardsMoveNmPost400Response) GetActualInstanceValue

func (obj ContentV2CardsMoveNmPost400Response) GetActualInstanceValue() interface{}

Get the actual instance value

func (ContentV2CardsMoveNmPost400Response) MarshalJSON

func (src ContentV2CardsMoveNmPost400Response) MarshalJSON() ([]byte, error)

Marshal data from the first non-nil pointers in the struct to JSON

func (*ContentV2CardsMoveNmPost400Response) UnmarshalJSON

func (dst *ContentV2CardsMoveNmPost400Response) UnmarshalJSON(data []byte) error

Unmarshal JSON data into one of the pointers in the struct

type ContentV2CardsMoveNmPostRequest

type ContentV2CardsMoveNmPostRequest struct {
	RequestMoveNmsImtConn    *RequestMoveNmsImtConn
	RequestMoveNmsImtDisconn *RequestMoveNmsImtDisconn
}

ContentV2CardsMoveNmPostRequest - struct for ContentV2CardsMoveNmPostRequest

func RequestMoveNmsImtConnAsContentV2CardsMoveNmPostRequest

func RequestMoveNmsImtConnAsContentV2CardsMoveNmPostRequest(v *RequestMoveNmsImtConn) ContentV2CardsMoveNmPostRequest

RequestMoveNmsImtConnAsContentV2CardsMoveNmPostRequest is a convenience function that returns RequestMoveNmsImtConn wrapped in ContentV2CardsMoveNmPostRequest

func RequestMoveNmsImtDisconnAsContentV2CardsMoveNmPostRequest

func RequestMoveNmsImtDisconnAsContentV2CardsMoveNmPostRequest(v *RequestMoveNmsImtDisconn) ContentV2CardsMoveNmPostRequest

RequestMoveNmsImtDisconnAsContentV2CardsMoveNmPostRequest is a convenience function that returns RequestMoveNmsImtDisconn wrapped in ContentV2CardsMoveNmPostRequest

func (*ContentV2CardsMoveNmPostRequest) GetActualInstance

func (obj *ContentV2CardsMoveNmPostRequest) GetActualInstance() interface{}

Get the actual instance

func (ContentV2CardsMoveNmPostRequest) GetActualInstanceValue

func (obj ContentV2CardsMoveNmPostRequest) GetActualInstanceValue() interface{}

Get the actual instance value

func (ContentV2CardsMoveNmPostRequest) MarshalJSON

func (src ContentV2CardsMoveNmPostRequest) MarshalJSON() ([]byte, error)

Marshal data from the first non-nil pointers in the struct to JSON

func (*ContentV2CardsMoveNmPostRequest) UnmarshalJSON

func (dst *ContentV2CardsMoveNmPostRequest) UnmarshalJSON(data []byte) error

Unmarshal JSON data into one of the pointers in the struct

type ContentV2CardsRecoverPost200Response

type ContentV2CardsRecoverPost200Response struct {
	Data map[string]interface{} `json:"data,omitempty"`
	// Error flag
	Error *bool `json:"error,omitempty"`
	// Error text
	ErrorText *string `json:"errorText,omitempty"`
	// Additional errors
	AdditionalErrors map[string]interface{} `json:"additionalErrors,omitempty"`
}

ContentV2CardsRecoverPost200Response struct for ContentV2CardsRecoverPost200Response

func NewContentV2CardsRecoverPost200Response

func NewContentV2CardsRecoverPost200Response() *ContentV2CardsRecoverPost200Response

NewContentV2CardsRecoverPost200Response instantiates a new ContentV2CardsRecoverPost200Response 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

func NewContentV2CardsRecoverPost200ResponseWithDefaults

func NewContentV2CardsRecoverPost200ResponseWithDefaults() *ContentV2CardsRecoverPost200Response

NewContentV2CardsRecoverPost200ResponseWithDefaults instantiates a new ContentV2CardsRecoverPost200Response 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

func (*ContentV2CardsRecoverPost200Response) GetAdditionalErrors

func (o *ContentV2CardsRecoverPost200Response) GetAdditionalErrors() map[string]interface{}

GetAdditionalErrors returns the AdditionalErrors field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ContentV2CardsRecoverPost200Response) GetAdditionalErrorsOk

func (o *ContentV2CardsRecoverPost200Response) GetAdditionalErrorsOk() (map[string]interface{}, bool)

GetAdditionalErrorsOk returns a tuple with the AdditionalErrors field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*ContentV2CardsRecoverPost200Response) GetData

func (o *ContentV2CardsRecoverPost200Response) GetData() map[string]interface{}

GetData returns the Data field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ContentV2CardsRecoverPost200Response) GetDataOk

func (o *ContentV2CardsRecoverPost200Response) GetDataOk() (map[string]interface{}, bool)

GetDataOk returns a tuple with the Data field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*ContentV2CardsRecoverPost200Response) GetError

GetError returns the Error field value if set, zero value otherwise.

func (*ContentV2CardsRecoverPost200Response) GetErrorOk

func (o *ContentV2CardsRecoverPost200Response) GetErrorOk() (*bool, bool)

GetErrorOk returns a tuple with the Error field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ContentV2CardsRecoverPost200Response) GetErrorText

func (o *ContentV2CardsRecoverPost200Response) GetErrorText() string

GetErrorText returns the ErrorText field value if set, zero value otherwise.

func (*ContentV2CardsRecoverPost200Response) GetErrorTextOk

func (o *ContentV2CardsRecoverPost200Response) GetErrorTextOk() (*string, bool)

GetErrorTextOk returns a tuple with the ErrorText field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ContentV2CardsRecoverPost200Response) HasAdditionalErrors

func (o *ContentV2CardsRecoverPost200Response) HasAdditionalErrors() bool

HasAdditionalErrors returns a boolean if a field has been set.

func (*ContentV2CardsRecoverPost200Response) HasData

HasData returns a boolean if a field has been set.

func (*ContentV2CardsRecoverPost200Response) HasError

HasError returns a boolean if a field has been set.

func (*ContentV2CardsRecoverPost200Response) HasErrorText

func (o *ContentV2CardsRecoverPost200Response) HasErrorText() bool

HasErrorText returns a boolean if a field has been set.

func (ContentV2CardsRecoverPost200Response) MarshalJSON

func (o ContentV2CardsRecoverPost200Response) MarshalJSON() ([]byte, error)

func (*ContentV2CardsRecoverPost200Response) SetAdditionalErrors

func (o *ContentV2CardsRecoverPost200Response) SetAdditionalErrors(v map[string]interface{})

SetAdditionalErrors gets a reference to the given map[string]interface{} and assigns it to the AdditionalErrors field.

func (*ContentV2CardsRecoverPost200Response) SetData

func (o *ContentV2CardsRecoverPost200Response) SetData(v map[string]interface{})

SetData gets a reference to the given map[string]interface{} and assigns it to the Data field.

func (*ContentV2CardsRecoverPost200Response) SetError

SetError gets a reference to the given bool and assigns it to the Error field.

func (*ContentV2CardsRecoverPost200Response) SetErrorText

func (o *ContentV2CardsRecoverPost200Response) SetErrorText(v string)

SetErrorText gets a reference to the given string and assigns it to the ErrorText field.

func (ContentV2CardsRecoverPost200Response) ToMap

func (o ContentV2CardsRecoverPost200Response) ToMap() (map[string]interface{}, error)

type ContentV2CardsUpdatePost413Response

type ContentV2CardsUpdatePost413Response struct {
	// Error title
	Title *string `json:"title,omitempty"`
	// Error details
	Detail *string `json:"detail,omitempty"`
	// Internal error code
	Code *string `json:"code,omitempty"`
	// Unique request ID
	RequestId *string `json:"requestId,omitempty"`
	// WB internal service ID
	Origin *string `json:"origin,omitempty"`
	// HTTP status code
	Status *float32 `json:"status,omitempty"`
	// Text of the HTTP status code
	StatusText *string `json:"statusText,omitempty"`
}

ContentV2CardsUpdatePost413Response struct for ContentV2CardsUpdatePost413Response

func NewContentV2CardsUpdatePost413Response

func NewContentV2CardsUpdatePost413Response() *ContentV2CardsUpdatePost413Response

NewContentV2CardsUpdatePost413Response instantiates a new ContentV2CardsUpdatePost413Response 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

func NewContentV2CardsUpdatePost413ResponseWithDefaults

func NewContentV2CardsUpdatePost413ResponseWithDefaults() *ContentV2CardsUpdatePost413Response

NewContentV2CardsUpdatePost413ResponseWithDefaults instantiates a new ContentV2CardsUpdatePost413Response 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

func (*ContentV2CardsUpdatePost413Response) GetCode

GetCode returns the Code field value if set, zero value otherwise.

func (*ContentV2CardsUpdatePost413Response) GetCodeOk

func (o *ContentV2CardsUpdatePost413Response) GetCodeOk() (*string, bool)

GetCodeOk returns a tuple with the Code field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ContentV2CardsUpdatePost413Response) GetDetail

GetDetail returns the Detail field value if set, zero value otherwise.

func (*ContentV2CardsUpdatePost413Response) GetDetailOk

func (o *ContentV2CardsUpdatePost413Response) GetDetailOk() (*string, bool)

GetDetailOk returns a tuple with the Detail field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ContentV2CardsUpdatePost413Response) GetOrigin

GetOrigin returns the Origin field value if set, zero value otherwise.

func (*ContentV2CardsUpdatePost413Response) GetOriginOk

func (o *ContentV2CardsUpdatePost413Response) GetOriginOk() (*string, bool)

GetOriginOk returns a tuple with the Origin field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ContentV2CardsUpdatePost413Response) GetRequestId

func (o *ContentV2CardsUpdatePost413Response) GetRequestId() string

GetRequestId returns the RequestId field value if set, zero value otherwise.

func (*ContentV2CardsUpdatePost413Response) GetRequestIdOk

func (o *ContentV2CardsUpdatePost413Response) GetRequestIdOk() (*string, bool)

GetRequestIdOk returns a tuple with the RequestId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ContentV2CardsUpdatePost413Response) GetStatus

GetStatus returns the Status field value if set, zero value otherwise.

func (*ContentV2CardsUpdatePost413Response) GetStatusOk

func (o *ContentV2CardsUpdatePost413Response) GetStatusOk() (*float32, bool)

GetStatusOk returns a tuple with the Status field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ContentV2CardsUpdatePost413Response) GetStatusText

func (o *ContentV2CardsUpdatePost413Response) GetStatusText() string

GetStatusText returns the StatusText field value if set, zero value otherwise.

func (*ContentV2CardsUpdatePost413Response) GetStatusTextOk

func (o *ContentV2CardsUpdatePost413Response) GetStatusTextOk() (*string, bool)

GetStatusTextOk returns a tuple with the StatusText field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ContentV2CardsUpdatePost413Response) GetTitle

GetTitle returns the Title field value if set, zero value otherwise.

func (*ContentV2CardsUpdatePost413Response) GetTitleOk

func (o *ContentV2CardsUpdatePost413Response) GetTitleOk() (*string, bool)

GetTitleOk returns a tuple with the Title field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ContentV2CardsUpdatePost413Response) HasCode

HasCode returns a boolean if a field has been set.

func (*ContentV2CardsUpdatePost413Response) HasDetail

HasDetail returns a boolean if a field has been set.

func (*ContentV2CardsUpdatePost413Response) HasOrigin

HasOrigin returns a boolean if a field has been set.

func (*ContentV2CardsUpdatePost413Response) HasRequestId

func (o *ContentV2CardsUpdatePost413Response) HasRequestId() bool

HasRequestId returns a boolean if a field has been set.

func (*ContentV2CardsUpdatePost413Response) HasStatus

HasStatus returns a boolean if a field has been set.

func (*ContentV2CardsUpdatePost413Response) HasStatusText

func (o *ContentV2CardsUpdatePost413Response) HasStatusText() bool

HasStatusText returns a boolean if a field has been set.

func (*ContentV2CardsUpdatePost413Response) HasTitle

HasTitle returns a boolean if a field has been set.

func (ContentV2CardsUpdatePost413Response) MarshalJSON

func (o ContentV2CardsUpdatePost413Response) MarshalJSON() ([]byte, error)

func (*ContentV2CardsUpdatePost413Response) SetCode

SetCode gets a reference to the given string and assigns it to the Code field.

func (*ContentV2CardsUpdatePost413Response) SetDetail

SetDetail gets a reference to the given string and assigns it to the Detail field.

func (*ContentV2CardsUpdatePost413Response) SetOrigin

SetOrigin gets a reference to the given string and assigns it to the Origin field.

func (*ContentV2CardsUpdatePost413Response) SetRequestId

func (o *ContentV2CardsUpdatePost413Response) SetRequestId(v string)

SetRequestId gets a reference to the given string and assigns it to the RequestId field.

func (*ContentV2CardsUpdatePost413Response) SetStatus

SetStatus gets a reference to the given float32 and assigns it to the Status field.

func (*ContentV2CardsUpdatePost413Response) SetStatusText

func (o *ContentV2CardsUpdatePost413Response) SetStatusText(v string)

SetStatusText gets a reference to the given string and assigns it to the StatusText field.

func (*ContentV2CardsUpdatePost413Response) SetTitle

SetTitle gets a reference to the given string and assigns it to the Title field.

func (ContentV2CardsUpdatePost413Response) ToMap

func (o ContentV2CardsUpdatePost413Response) ToMap() (map[string]interface{}, error)

type ContentV2CardsUpdatePostRequestInner

type ContentV2CardsUpdatePostRequestInner struct {
	// WB article
	NmID int32 `json:"nmID"`
	// Seller's article
	VendorCode string `json:"vendorCode"`
	// Confirmation that required [labeling code](https://chestnyznak.ru/en) is specified:   - `true` — the seller confirms that required labeling code is applied to the product.   - `false` — the seller does not confirm that required labeling code is applied to the product. Pass `true` in the request to confirm that the product has required labeling code. The item will not pass moderation if there is no confirmation from the seller that required labeling code is applied to the product.  To check if labeling code is required, use the [Product Cards List](./work-with-products#tag/Product-Cards/paths/~1content~1v2~1get~1cards~1list/post) method, the response field `needKiz`
	KizMarked *bool `json:"kizMarked,omitempty"`
	// Brand
	Brand *string `json:"brand,omitempty"`
	// Product title
	Title *string `json:"title,omitempty"`
	// Product description<br> The maximum number of characters depends on the product category<br> Standard — 2000, minimum — 1000, maximum — 5000<br> More details about description rules in **Product card filling rules** in [Instructions](https://seller.wildberries.ru/help-center/article/A-113) category of sellers portal
	Description *string                                         `json:"description,omitempty"`
	Dimensions  *ContentV2CardsUpdatePostRequestInnerDimensions `json:"dimensions,omitempty"`
	// Product characteristics <br> Use the [Subject characteristics](./work-with-products#tag/Categories-Subjects-and-Characteristics/paths/~1content~1v2~1object~1charcs~1%7BsubjectId%7D/get) method to get characteristics of the product
	Characteristics []ContentV2CardsUpdatePostRequestInnerCharacteristicsInner `json:"characteristics,omitempty"`
	// Product sizes<br> If product has no sizes, send only SKUs
	Sizes []ContentV2CardsUpdatePostRequestInnerSizesInner `json:"sizes"`
}

ContentV2CardsUpdatePostRequestInner struct for ContentV2CardsUpdatePostRequestInner

func NewContentV2CardsUpdatePostRequestInner

func NewContentV2CardsUpdatePostRequestInner(nmID int32, vendorCode string, sizes []ContentV2CardsUpdatePostRequestInnerSizesInner) *ContentV2CardsUpdatePostRequestInner

NewContentV2CardsUpdatePostRequestInner instantiates a new ContentV2CardsUpdatePostRequestInner 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

func NewContentV2CardsUpdatePostRequestInnerWithDefaults

func NewContentV2CardsUpdatePostRequestInnerWithDefaults() *ContentV2CardsUpdatePostRequestInner

NewContentV2CardsUpdatePostRequestInnerWithDefaults instantiates a new ContentV2CardsUpdatePostRequestInner 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

func (*ContentV2CardsUpdatePostRequestInner) GetBrand

GetBrand returns the Brand field value if set, zero value otherwise.

func (*ContentV2CardsUpdatePostRequestInner) GetBrandOk

func (o *ContentV2CardsUpdatePostRequestInner) GetBrandOk() (*string, bool)

GetBrandOk returns a tuple with the Brand field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ContentV2CardsUpdatePostRequestInner) GetCharacteristics

GetCharacteristics returns the Characteristics field value if set, zero value otherwise.

func (*ContentV2CardsUpdatePostRequestInner) GetCharacteristicsOk

GetCharacteristicsOk returns a tuple with the Characteristics field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ContentV2CardsUpdatePostRequestInner) GetDescription

func (o *ContentV2CardsUpdatePostRequestInner) GetDescription() string

GetDescription returns the Description field value if set, zero value otherwise.

func (*ContentV2CardsUpdatePostRequestInner) GetDescriptionOk

func (o *ContentV2CardsUpdatePostRequestInner) GetDescriptionOk() (*string, bool)

GetDescriptionOk returns a tuple with the Description field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ContentV2CardsUpdatePostRequestInner) GetDimensions

GetDimensions returns the Dimensions field value if set, zero value otherwise.

func (*ContentV2CardsUpdatePostRequestInner) GetDimensionsOk

GetDimensionsOk returns a tuple with the Dimensions field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ContentV2CardsUpdatePostRequestInner) GetKizMarked

func (o *ContentV2CardsUpdatePostRequestInner) GetKizMarked() bool

GetKizMarked returns the KizMarked field value if set, zero value otherwise.

func (*ContentV2CardsUpdatePostRequestInner) GetKizMarkedOk

func (o *ContentV2CardsUpdatePostRequestInner) GetKizMarkedOk() (*bool, bool)

GetKizMarkedOk returns a tuple with the KizMarked field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ContentV2CardsUpdatePostRequestInner) GetNmID

GetNmID returns the NmID field value

func (*ContentV2CardsUpdatePostRequestInner) GetNmIDOk

func (o *ContentV2CardsUpdatePostRequestInner) GetNmIDOk() (*int32, bool)

GetNmIDOk returns a tuple with the NmID field value and a boolean to check if the value has been set.

func (*ContentV2CardsUpdatePostRequestInner) GetSizes

GetSizes returns the Sizes field value

func (*ContentV2CardsUpdatePostRequestInner) GetSizesOk

GetSizesOk returns a tuple with the Sizes field value and a boolean to check if the value has been set.

func (*ContentV2CardsUpdatePostRequestInner) GetTitle

GetTitle returns the Title field value if set, zero value otherwise.

func (*ContentV2CardsUpdatePostRequestInner) GetTitleOk

func (o *ContentV2CardsUpdatePostRequestInner) GetTitleOk() (*string, bool)

GetTitleOk returns a tuple with the Title field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ContentV2CardsUpdatePostRequestInner) GetVendorCode

func (o *ContentV2CardsUpdatePostRequestInner) GetVendorCode() string

GetVendorCode returns the VendorCode field value

func (*ContentV2CardsUpdatePostRequestInner) GetVendorCodeOk

func (o *ContentV2CardsUpdatePostRequestInner) GetVendorCodeOk() (*string, bool)

GetVendorCodeOk returns a tuple with the VendorCode field value and a boolean to check if the value has been set.

func (*ContentV2CardsUpdatePostRequestInner) HasBrand

HasBrand returns a boolean if a field has been set.

func (*ContentV2CardsUpdatePostRequestInner) HasCharacteristics

func (o *ContentV2CardsUpdatePostRequestInner) HasCharacteristics() bool

HasCharacteristics returns a boolean if a field has been set.

func (*ContentV2CardsUpdatePostRequestInner) HasDescription

func (o *ContentV2CardsUpdatePostRequestInner) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*ContentV2CardsUpdatePostRequestInner) HasDimensions

func (o *ContentV2CardsUpdatePostRequestInner) HasDimensions() bool

HasDimensions returns a boolean if a field has been set.

func (*ContentV2CardsUpdatePostRequestInner) HasKizMarked

func (o *ContentV2CardsUpdatePostRequestInner) HasKizMarked() bool

HasKizMarked returns a boolean if a field has been set.

func (*ContentV2CardsUpdatePostRequestInner) HasTitle

HasTitle returns a boolean if a field has been set.

func (ContentV2CardsUpdatePostRequestInner) MarshalJSON

func (o ContentV2CardsUpdatePostRequestInner) MarshalJSON() ([]byte, error)

func (*ContentV2CardsUpdatePostRequestInner) SetBrand

SetBrand gets a reference to the given string and assigns it to the Brand field.

func (*ContentV2CardsUpdatePostRequestInner) SetCharacteristics

SetCharacteristics gets a reference to the given []ContentV2CardsUpdatePostRequestInnerCharacteristicsInner and assigns it to the Characteristics field.

func (*ContentV2CardsUpdatePostRequestInner) SetDescription

func (o *ContentV2CardsUpdatePostRequestInner) SetDescription(v string)

SetDescription gets a reference to the given string and assigns it to the Description field.

func (*ContentV2CardsUpdatePostRequestInner) SetDimensions

SetDimensions gets a reference to the given ContentV2CardsUpdatePostRequestInnerDimensions and assigns it to the Dimensions field.

func (*ContentV2CardsUpdatePostRequestInner) SetKizMarked

func (o *ContentV2CardsUpdatePostRequestInner) SetKizMarked(v bool)

SetKizMarked gets a reference to the given bool and assigns it to the KizMarked field.

func (*ContentV2CardsUpdatePostRequestInner) SetNmID

SetNmID sets field value

func (*ContentV2CardsUpdatePostRequestInner) SetSizes

SetSizes sets field value

func (*ContentV2CardsUpdatePostRequestInner) SetTitle

SetTitle gets a reference to the given string and assigns it to the Title field.

func (*ContentV2CardsUpdatePostRequestInner) SetVendorCode

func (o *ContentV2CardsUpdatePostRequestInner) SetVendorCode(v string)

SetVendorCode sets field value

func (ContentV2CardsUpdatePostRequestInner) ToMap

func (o ContentV2CardsUpdatePostRequestInner) ToMap() (map[string]interface{}, error)

func (*ContentV2CardsUpdatePostRequestInner) UnmarshalJSON

func (o *ContentV2CardsUpdatePostRequestInner) UnmarshalJSON(data []byte) (err error)

type ContentV2CardsUpdatePostRequestInnerCharacteristicsInner

type ContentV2CardsUpdatePostRequestInnerCharacteristicsInner struct {
	// Characteristic ID
	Id int32 `json:"id"`
	// Characteristic values. <br> Data type — array of strings or number — depends on the characteristic data type. For more details see the description of the `charcType` field in the [Subject characteristics](./work-with-products#tag//paths/~1content~1v2~1object~1charcs~1%7BsubjectId%7D/get) method. <br> The allowed number of values is specified in the `maxCount` field of the [Subject characteristics](./work-with-products#tag//paths/~1content~1v2~1object~1charcs~1%7BsubjectId%7D/get) method
	Value interface{} `json:"value"`
}

ContentV2CardsUpdatePostRequestInnerCharacteristicsInner struct for ContentV2CardsUpdatePostRequestInnerCharacteristicsInner

func NewContentV2CardsUpdatePostRequestInnerCharacteristicsInner

func NewContentV2CardsUpdatePostRequestInnerCharacteristicsInner(id int32, value interface{}) *ContentV2CardsUpdatePostRequestInnerCharacteristicsInner

NewContentV2CardsUpdatePostRequestInnerCharacteristicsInner instantiates a new ContentV2CardsUpdatePostRequestInnerCharacteristicsInner 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

func NewContentV2CardsUpdatePostRequestInnerCharacteristicsInnerWithDefaults

func NewContentV2CardsUpdatePostRequestInnerCharacteristicsInnerWithDefaults() *ContentV2CardsUpdatePostRequestInnerCharacteristicsInner

NewContentV2CardsUpdatePostRequestInnerCharacteristicsInnerWithDefaults instantiates a new ContentV2CardsUpdatePostRequestInnerCharacteristicsInner 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

func (*ContentV2CardsUpdatePostRequestInnerCharacteristicsInner) GetId

GetId returns the Id field value

func (*ContentV2CardsUpdatePostRequestInnerCharacteristicsInner) GetIdOk

GetIdOk returns a tuple with the Id field value and a boolean to check if the value has been set.

func (*ContentV2CardsUpdatePostRequestInnerCharacteristicsInner) GetValue

GetValue returns the Value field value If the value is explicit nil, the zero value for interface{} will be returned

func (*ContentV2CardsUpdatePostRequestInnerCharacteristicsInner) GetValueOk

func (o *ContentV2CardsUpdatePostRequestInnerCharacteristicsInner) GetValueOk() (*interface{}, bool)

GetValueOk returns a tuple with the Value field value and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (ContentV2CardsUpdatePostRequestInnerCharacteristicsInner) MarshalJSON

func (*ContentV2CardsUpdatePostRequestInnerCharacteristicsInner) SetId

SetId sets field value

func (*ContentV2CardsUpdatePostRequestInnerCharacteristicsInner) SetValue

SetValue sets field value

func (ContentV2CardsUpdatePostRequestInnerCharacteristicsInner) ToMap

func (*ContentV2CardsUpdatePostRequestInnerCharacteristicsInner) UnmarshalJSON

type ContentV2CardsUpdatePostRequestInnerDimensions

type ContentV2CardsUpdatePostRequestInnerDimensions struct {
	// Length, cm
	Length *int32 `json:"length,omitempty"`
	// Width, cm
	Width *int32 `json:"width,omitempty"`
	// Height, cm
	Height *int32 `json:"height,omitempty"`
	// Weight, kg<br>Number of decimal places <=3
	WeightBrutto *float32 `json:"weightBrutto,omitempty"`
}

ContentV2CardsUpdatePostRequestInnerDimensions Dimensions and weight of the product `with packaging`. <br> Specify in `centimeters` and `kilograms` for any product. <br> The process of synchronizing new data with service may take up to 30 minutes

func NewContentV2CardsUpdatePostRequestInnerDimensions

func NewContentV2CardsUpdatePostRequestInnerDimensions() *ContentV2CardsUpdatePostRequestInnerDimensions

NewContentV2CardsUpdatePostRequestInnerDimensions instantiates a new ContentV2CardsUpdatePostRequestInnerDimensions 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

func NewContentV2CardsUpdatePostRequestInnerDimensionsWithDefaults

func NewContentV2CardsUpdatePostRequestInnerDimensionsWithDefaults() *ContentV2CardsUpdatePostRequestInnerDimensions

NewContentV2CardsUpdatePostRequestInnerDimensionsWithDefaults instantiates a new ContentV2CardsUpdatePostRequestInnerDimensions 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

func (*ContentV2CardsUpdatePostRequestInnerDimensions) GetHeight

GetHeight returns the Height field value if set, zero value otherwise.

func (*ContentV2CardsUpdatePostRequestInnerDimensions) GetHeightOk

GetHeightOk returns a tuple with the Height field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ContentV2CardsUpdatePostRequestInnerDimensions) GetLength

GetLength returns the Length field value if set, zero value otherwise.

func (*ContentV2CardsUpdatePostRequestInnerDimensions) GetLengthOk

GetLengthOk returns a tuple with the Length field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ContentV2CardsUpdatePostRequestInnerDimensions) GetWeightBrutto

GetWeightBrutto returns the WeightBrutto field value if set, zero value otherwise.

func (*ContentV2CardsUpdatePostRequestInnerDimensions) GetWeightBruttoOk

func (o *ContentV2CardsUpdatePostRequestInnerDimensions) GetWeightBruttoOk() (*float32, bool)

GetWeightBruttoOk returns a tuple with the WeightBrutto field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ContentV2CardsUpdatePostRequestInnerDimensions) GetWidth

GetWidth returns the Width field value if set, zero value otherwise.

func (*ContentV2CardsUpdatePostRequestInnerDimensions) GetWidthOk

GetWidthOk returns a tuple with the Width field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ContentV2CardsUpdatePostRequestInnerDimensions) HasHeight

HasHeight returns a boolean if a field has been set.

func (*ContentV2CardsUpdatePostRequestInnerDimensions) HasLength

HasLength returns a boolean if a field has been set.

func (*ContentV2CardsUpdatePostRequestInnerDimensions) HasWeightBrutto

HasWeightBrutto returns a boolean if a field has been set.

func (*ContentV2CardsUpdatePostRequestInnerDimensions) HasWidth

HasWidth returns a boolean if a field has been set.

func (ContentV2CardsUpdatePostRequestInnerDimensions) MarshalJSON

func (*ContentV2CardsUpdatePostRequestInnerDimensions) SetHeight

SetHeight gets a reference to the given int32 and assigns it to the Height field.

func (*ContentV2CardsUpdatePostRequestInnerDimensions) SetLength

SetLength gets a reference to the given int32 and assigns it to the Length field.

func (*ContentV2CardsUpdatePostRequestInnerDimensions) SetWeightBrutto

SetWeightBrutto gets a reference to the given float32 and assigns it to the WeightBrutto field.

func (*ContentV2CardsUpdatePostRequestInnerDimensions) SetWidth

SetWidth gets a reference to the given int32 and assigns it to the Width field.

func (ContentV2CardsUpdatePostRequestInnerDimensions) ToMap

func (o ContentV2CardsUpdatePostRequestInnerDimensions) ToMap() (map[string]interface{}, error)

type ContentV2CardsUpdatePostRequestInnerSizesInner

type ContentV2CardsUpdatePostRequestInnerSizesInner struct {
	// WB article of this size<br> Required for existing sizes<br> If you add new size, do not send this ID
	ChrtID *int32 `json:"chrtID,omitempty"`
	// Size (for example, XL, S, 45)
	TechSize *string `json:"techSize,omitempty"`
	// Russian size
	WbSize *string `json:"wbSize,omitempty"`
	// Price, ₽<br> Specified when adding the size
	Price *int32 `json:"price,omitempty"`
	// SKUs
	Skus []string `json:"skus,omitempty"`
}

ContentV2CardsUpdatePostRequestInnerSizesInner struct for ContentV2CardsUpdatePostRequestInnerSizesInner

func NewContentV2CardsUpdatePostRequestInnerSizesInner

func NewContentV2CardsUpdatePostRequestInnerSizesInner() *ContentV2CardsUpdatePostRequestInnerSizesInner

NewContentV2CardsUpdatePostRequestInnerSizesInner instantiates a new ContentV2CardsUpdatePostRequestInnerSizesInner 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

func NewContentV2CardsUpdatePostRequestInnerSizesInnerWithDefaults

func NewContentV2CardsUpdatePostRequestInnerSizesInnerWithDefaults() *ContentV2CardsUpdatePostRequestInnerSizesInner

NewContentV2CardsUpdatePostRequestInnerSizesInnerWithDefaults instantiates a new ContentV2CardsUpdatePostRequestInnerSizesInner 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

func (*ContentV2CardsUpdatePostRequestInnerSizesInner) GetChrtID

GetChrtID returns the ChrtID field value if set, zero value otherwise.

func (*ContentV2CardsUpdatePostRequestInnerSizesInner) GetChrtIDOk

GetChrtIDOk returns a tuple with the ChrtID field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ContentV2CardsUpdatePostRequestInnerSizesInner) GetPrice

GetPrice returns the Price field value if set, zero value otherwise.

func (*ContentV2CardsUpdatePostRequestInnerSizesInner) GetPriceOk

GetPriceOk returns a tuple with the Price field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ContentV2CardsUpdatePostRequestInnerSizesInner) GetSkus

GetSkus returns the Skus field value if set, zero value otherwise.

func (*ContentV2CardsUpdatePostRequestInnerSizesInner) GetSkusOk

GetSkusOk returns a tuple with the Skus field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ContentV2CardsUpdatePostRequestInnerSizesInner) GetTechSize

GetTechSize returns the TechSize field value if set, zero value otherwise.

func (*ContentV2CardsUpdatePostRequestInnerSizesInner) GetTechSizeOk

GetTechSizeOk returns a tuple with the TechSize field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ContentV2CardsUpdatePostRequestInnerSizesInner) GetWbSize

GetWbSize returns the WbSize field value if set, zero value otherwise.

func (*ContentV2CardsUpdatePostRequestInnerSizesInner) GetWbSizeOk

GetWbSizeOk returns a tuple with the WbSize field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ContentV2CardsUpdatePostRequestInnerSizesInner) HasChrtID

HasChrtID returns a boolean if a field has been set.

func (*ContentV2CardsUpdatePostRequestInnerSizesInner) HasPrice

HasPrice returns a boolean if a field has been set.

func (*ContentV2CardsUpdatePostRequestInnerSizesInner) HasSkus

HasSkus returns a boolean if a field has been set.

func (*ContentV2CardsUpdatePostRequestInnerSizesInner) HasTechSize

HasTechSize returns a boolean if a field has been set.

func (*ContentV2CardsUpdatePostRequestInnerSizesInner) HasWbSize

HasWbSize returns a boolean if a field has been set.

func (ContentV2CardsUpdatePostRequestInnerSizesInner) MarshalJSON

func (*ContentV2CardsUpdatePostRequestInnerSizesInner) SetChrtID

SetChrtID gets a reference to the given int32 and assigns it to the ChrtID field.

func (*ContentV2CardsUpdatePostRequestInnerSizesInner) SetPrice

SetPrice gets a reference to the given int32 and assigns it to the Price field.

func (*ContentV2CardsUpdatePostRequestInnerSizesInner) SetSkus

SetSkus gets a reference to the given []string and assigns it to the Skus field.

func (*ContentV2CardsUpdatePostRequestInnerSizesInner) SetTechSize

SetTechSize gets a reference to the given string and assigns it to the TechSize field.

func (*ContentV2CardsUpdatePostRequestInnerSizesInner) SetWbSize

SetWbSize gets a reference to the given string and assigns it to the WbSize field.

func (ContentV2CardsUpdatePostRequestInnerSizesInner) ToMap

func (o ContentV2CardsUpdatePostRequestInnerSizesInner) ToMap() (map[string]interface{}, error)

type ContentV2CardsUploadAddPostRequest

type ContentV2CardsUploadAddPostRequest struct {
	// `imtID` of an individual product card or group of merged product cards to which the created cards are added
	ImtID *int32 `json:"imtID,omitempty"`
	// Added product cards
	CardsToAdd []ContentV2CardsUploadAddPostRequestCardsToAddInner `json:"cardsToAdd,omitempty"`
}

ContentV2CardsUploadAddPostRequest struct for ContentV2CardsUploadAddPostRequest

func NewContentV2CardsUploadAddPostRequest

func NewContentV2CardsUploadAddPostRequest() *ContentV2CardsUploadAddPostRequest

NewContentV2CardsUploadAddPostRequest instantiates a new ContentV2CardsUploadAddPostRequest 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

func NewContentV2CardsUploadAddPostRequestWithDefaults

func NewContentV2CardsUploadAddPostRequestWithDefaults() *ContentV2CardsUploadAddPostRequest

NewContentV2CardsUploadAddPostRequestWithDefaults instantiates a new ContentV2CardsUploadAddPostRequest 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

func (*ContentV2CardsUploadAddPostRequest) GetCardsToAdd

GetCardsToAdd returns the CardsToAdd field value if set, zero value otherwise.

func (*ContentV2CardsUploadAddPostRequest) GetCardsToAddOk

GetCardsToAddOk returns a tuple with the CardsToAdd field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ContentV2CardsUploadAddPostRequest) GetImtID

GetImtID returns the ImtID field value if set, zero value otherwise.

func (*ContentV2CardsUploadAddPostRequest) GetImtIDOk

func (o *ContentV2CardsUploadAddPostRequest) GetImtIDOk() (*int32, bool)

GetImtIDOk returns a tuple with the ImtID field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ContentV2CardsUploadAddPostRequest) HasCardsToAdd

func (o *ContentV2CardsUploadAddPostRequest) HasCardsToAdd() bool

HasCardsToAdd returns a boolean if a field has been set.

func (*ContentV2CardsUploadAddPostRequest) HasImtID

HasImtID returns a boolean if a field has been set.

func (ContentV2CardsUploadAddPostRequest) MarshalJSON

func (o ContentV2CardsUploadAddPostRequest) MarshalJSON() ([]byte, error)

func (*ContentV2CardsUploadAddPostRequest) SetCardsToAdd

SetCardsToAdd gets a reference to the given []ContentV2CardsUploadAddPostRequestCardsToAddInner and assigns it to the CardsToAdd field.

func (*ContentV2CardsUploadAddPostRequest) SetImtID

SetImtID gets a reference to the given int32 and assigns it to the ImtID field.

func (ContentV2CardsUploadAddPostRequest) ToMap

func (o ContentV2CardsUploadAddPostRequest) ToMap() (map[string]interface{}, error)

type ContentV2CardsUploadAddPostRequestCardsToAddInner

type ContentV2CardsUploadAddPostRequestCardsToAddInner struct {
	// Brand
	Brand *string `json:"brand,omitempty"`
	// Supplier's article
	VendorCode string `json:"vendorCode"`
	// Confirmation that required [labeling code](https://chestnyznak.ru/en) is specified:   - `true` — the seller confirms that required labeling code is applied to the product.   - `false` — the seller does not confirm that required labeling code is applied to the product. Pass `true` in the request to confirm that the product has required labeling code. The item will not pass moderation if there is no confirmation from the seller that required labeling code is applied to the product.  To check if labeling code is required, use the [Product Cards List](./work-with-products#tag/Product-Cards/paths/~1content~1v2~1get~1cards~1list/post) method, the response field `needKiz`
	KizMarked *bool                                                    `json:"kizMarked,omitempty"`
	Wholesale *ContentV2GetCardsListPost200ResponseCardsInnerWholesale `json:"wholesale,omitempty"`
	// Product title
	Title *string `json:"title,omitempty"`
	// Product description.<br> The maximum number of characters depends on the product category<br> Standard - 2000, minimum - 1000, maximum - 5000<br> More details about description rules in **Product card filling rules** in [Instructions](https://seller.wildberries.ru/help-center/article/A-113) category of sellers portal
	Description *string                                                      `json:"description,omitempty"`
	Dimensions  *ContentV2CardsUploadAddPostRequestCardsToAddInnerDimensions `json:"dimensions,omitempty"`
	// Product sizes.<br> If the product has sizes but you send empty parameter, it is generated automatically with values: `techSize` = \"A\", `wbSize` = \"1\" and some random SKU
	Sizes []ContentV2CardsUploadAddPostRequestCardsToAddInnerSizesInner `json:"sizes,omitempty"`
	// Product characteristics. <br> Use the [Subject characteristics](./work-with-products#tag/Categories-Subjects-and-Characteristics/paths/~1content~1v2~1object~1charcs~1%7BsubjectId%7D/get) method to get characteristics of the product
	Characteristics []ContentV2CardsUpdatePostRequestInnerCharacteristicsInner `json:"characteristics,omitempty"`
}

ContentV2CardsUploadAddPostRequestCardsToAddInner struct for ContentV2CardsUploadAddPostRequestCardsToAddInner

func NewContentV2CardsUploadAddPostRequestCardsToAddInner

func NewContentV2CardsUploadAddPostRequestCardsToAddInner(vendorCode string) *ContentV2CardsUploadAddPostRequestCardsToAddInner

NewContentV2CardsUploadAddPostRequestCardsToAddInner instantiates a new ContentV2CardsUploadAddPostRequestCardsToAddInner 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

func NewContentV2CardsUploadAddPostRequestCardsToAddInnerWithDefaults

func NewContentV2CardsUploadAddPostRequestCardsToAddInnerWithDefaults() *ContentV2CardsUploadAddPostRequestCardsToAddInner

NewContentV2CardsUploadAddPostRequestCardsToAddInnerWithDefaults instantiates a new ContentV2CardsUploadAddPostRequestCardsToAddInner 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

func (*ContentV2CardsUploadAddPostRequestCardsToAddInner) GetBrand

GetBrand returns the Brand field value if set, zero value otherwise.

func (*ContentV2CardsUploadAddPostRequestCardsToAddInner) GetBrandOk

GetBrandOk returns a tuple with the Brand field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ContentV2CardsUploadAddPostRequestCardsToAddInner) GetCharacteristics

GetCharacteristics returns the Characteristics field value if set, zero value otherwise.

func (*ContentV2CardsUploadAddPostRequestCardsToAddInner) GetCharacteristicsOk

GetCharacteristicsOk returns a tuple with the Characteristics field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ContentV2CardsUploadAddPostRequestCardsToAddInner) GetDescription

GetDescription returns the Description field value if set, zero value otherwise.

func (*ContentV2CardsUploadAddPostRequestCardsToAddInner) GetDescriptionOk

GetDescriptionOk returns a tuple with the Description field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ContentV2CardsUploadAddPostRequestCardsToAddInner) GetDimensions

GetDimensions returns the Dimensions field value if set, zero value otherwise.

func (*ContentV2CardsUploadAddPostRequestCardsToAddInner) GetDimensionsOk

GetDimensionsOk returns a tuple with the Dimensions field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ContentV2CardsUploadAddPostRequestCardsToAddInner) GetKizMarked

GetKizMarked returns the KizMarked field value if set, zero value otherwise.

func (*ContentV2CardsUploadAddPostRequestCardsToAddInner) GetKizMarkedOk

GetKizMarkedOk returns a tuple with the KizMarked field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ContentV2CardsUploadAddPostRequestCardsToAddInner) GetSizes

GetSizes returns the Sizes field value if set, zero value otherwise.

func (*ContentV2CardsUploadAddPostRequestCardsToAddInner) GetSizesOk

GetSizesOk returns a tuple with the Sizes field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ContentV2CardsUploadAddPostRequestCardsToAddInner) GetTitle

GetTitle returns the Title field value if set, zero value otherwise.

func (*ContentV2CardsUploadAddPostRequestCardsToAddInner) GetTitleOk

GetTitleOk returns a tuple with the Title field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ContentV2CardsUploadAddPostRequestCardsToAddInner) GetVendorCode

GetVendorCode returns the VendorCode field value

func (*ContentV2CardsUploadAddPostRequestCardsToAddInner) GetVendorCodeOk

GetVendorCodeOk returns a tuple with the VendorCode field value and a boolean to check if the value has been set.

func (*ContentV2CardsUploadAddPostRequestCardsToAddInner) GetWholesale

GetWholesale returns the Wholesale field value if set, zero value otherwise.

func (*ContentV2CardsUploadAddPostRequestCardsToAddInner) GetWholesaleOk

GetWholesaleOk returns a tuple with the Wholesale field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ContentV2CardsUploadAddPostRequestCardsToAddInner) HasBrand

HasBrand returns a boolean if a field has been set.

func (*ContentV2CardsUploadAddPostRequestCardsToAddInner) HasCharacteristics

HasCharacteristics returns a boolean if a field has been set.

func (*ContentV2CardsUploadAddPostRequestCardsToAddInner) HasDescription

HasDescription returns a boolean if a field has been set.

func (*ContentV2CardsUploadAddPostRequestCardsToAddInner) HasDimensions

HasDimensions returns a boolean if a field has been set.

func (*ContentV2CardsUploadAddPostRequestCardsToAddInner) HasKizMarked

HasKizMarked returns a boolean if a field has been set.

func (*ContentV2CardsUploadAddPostRequestCardsToAddInner) HasSizes

HasSizes returns a boolean if a field has been set.

func (*ContentV2CardsUploadAddPostRequestCardsToAddInner) HasTitle

HasTitle returns a boolean if a field has been set.

func (*ContentV2CardsUploadAddPostRequestCardsToAddInner) HasWholesale

HasWholesale returns a boolean if a field has been set.

func (ContentV2CardsUploadAddPostRequestCardsToAddInner) MarshalJSON

func (*ContentV2CardsUploadAddPostRequestCardsToAddInner) SetBrand

SetBrand gets a reference to the given string and assigns it to the Brand field.

func (*ContentV2CardsUploadAddPostRequestCardsToAddInner) SetCharacteristics

SetCharacteristics gets a reference to the given []ContentV2CardsUpdatePostRequestInnerCharacteristicsInner and assigns it to the Characteristics field.

func (*ContentV2CardsUploadAddPostRequestCardsToAddInner) SetDescription

SetDescription gets a reference to the given string and assigns it to the Description field.

func (*ContentV2CardsUploadAddPostRequestCardsToAddInner) SetDimensions

SetDimensions gets a reference to the given ContentV2CardsUploadAddPostRequestCardsToAddInnerDimensions and assigns it to the Dimensions field.

func (*ContentV2CardsUploadAddPostRequestCardsToAddInner) SetKizMarked

SetKizMarked gets a reference to the given bool and assigns it to the KizMarked field.

func (*ContentV2CardsUploadAddPostRequestCardsToAddInner) SetSizes

SetSizes gets a reference to the given []ContentV2CardsUploadAddPostRequestCardsToAddInnerSizesInner and assigns it to the Sizes field.

func (*ContentV2CardsUploadAddPostRequestCardsToAddInner) SetTitle

SetTitle gets a reference to the given string and assigns it to the Title field.

func (*ContentV2CardsUploadAddPostRequestCardsToAddInner) SetVendorCode

SetVendorCode sets field value

func (*ContentV2CardsUploadAddPostRequestCardsToAddInner) SetWholesale

SetWholesale gets a reference to the given ContentV2GetCardsListPost200ResponseCardsInnerWholesale and assigns it to the Wholesale field.

func (ContentV2CardsUploadAddPostRequestCardsToAddInner) ToMap

func (o ContentV2CardsUploadAddPostRequestCardsToAddInner) ToMap() (map[string]interface{}, error)

func (*ContentV2CardsUploadAddPostRequestCardsToAddInner) UnmarshalJSON

func (o *ContentV2CardsUploadAddPostRequestCardsToAddInner) UnmarshalJSON(data []byte) (err error)

type ContentV2CardsUploadAddPostRequestCardsToAddInnerDimensions

type ContentV2CardsUploadAddPostRequestCardsToAddInnerDimensions struct {
	// Length, cm
	Length *int32 `json:"length,omitempty"`
	// Width, cm
	Width *int32 `json:"width,omitempty"`
	// Height, cm
	Height *int32 `json:"height,omitempty"`
	// Weight, kg<br>Number of decimal places <=3
	WeightBrutto *float32 `json:"weightBrutto,omitempty"`
}

ContentV2CardsUploadAddPostRequestCardsToAddInnerDimensions Dimensions and weight of the product `with packaging`. <br>Specify in `centimeters` and `kilograms` for any product. <br> If the data is not specified, zero values ​​for length, width, height and weight will be automatically generated. <br> The process of synchronizing new data with service may take up to 30 minutes

func NewContentV2CardsUploadAddPostRequestCardsToAddInnerDimensions

func NewContentV2CardsUploadAddPostRequestCardsToAddInnerDimensions() *ContentV2CardsUploadAddPostRequestCardsToAddInnerDimensions

NewContentV2CardsUploadAddPostRequestCardsToAddInnerDimensions instantiates a new ContentV2CardsUploadAddPostRequestCardsToAddInnerDimensions 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

func NewContentV2CardsUploadAddPostRequestCardsToAddInnerDimensionsWithDefaults

func NewContentV2CardsUploadAddPostRequestCardsToAddInnerDimensionsWithDefaults() *ContentV2CardsUploadAddPostRequestCardsToAddInnerDimensions

NewContentV2CardsUploadAddPostRequestCardsToAddInnerDimensionsWithDefaults instantiates a new ContentV2CardsUploadAddPostRequestCardsToAddInnerDimensions 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

func (*ContentV2CardsUploadAddPostRequestCardsToAddInnerDimensions) GetHeight

GetHeight returns the Height field value if set, zero value otherwise.

func (*ContentV2CardsUploadAddPostRequestCardsToAddInnerDimensions) GetHeightOk

GetHeightOk returns a tuple with the Height field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ContentV2CardsUploadAddPostRequestCardsToAddInnerDimensions) GetLength

GetLength returns the Length field value if set, zero value otherwise.

func (*ContentV2CardsUploadAddPostRequestCardsToAddInnerDimensions) GetLengthOk

GetLengthOk returns a tuple with the Length field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ContentV2CardsUploadAddPostRequestCardsToAddInnerDimensions) GetWeightBrutto

GetWeightBrutto returns the WeightBrutto field value if set, zero value otherwise.

func (*ContentV2CardsUploadAddPostRequestCardsToAddInnerDimensions) GetWeightBruttoOk

GetWeightBruttoOk returns a tuple with the WeightBrutto field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ContentV2CardsUploadAddPostRequestCardsToAddInnerDimensions) GetWidth

GetWidth returns the Width field value if set, zero value otherwise.

func (*ContentV2CardsUploadAddPostRequestCardsToAddInnerDimensions) GetWidthOk

GetWidthOk returns a tuple with the Width field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ContentV2CardsUploadAddPostRequestCardsToAddInnerDimensions) HasHeight

HasHeight returns a boolean if a field has been set.

func (*ContentV2CardsUploadAddPostRequestCardsToAddInnerDimensions) HasLength

HasLength returns a boolean if a field has been set.

func (*ContentV2CardsUploadAddPostRequestCardsToAddInnerDimensions) HasWeightBrutto

HasWeightBrutto returns a boolean if a field has been set.

func (*ContentV2CardsUploadAddPostRequestCardsToAddInnerDimensions) HasWidth

HasWidth returns a boolean if a field has been set.

func (ContentV2CardsUploadAddPostRequestCardsToAddInnerDimensions) MarshalJSON

func (*ContentV2CardsUploadAddPostRequestCardsToAddInnerDimensions) SetHeight

SetHeight gets a reference to the given int32 and assigns it to the Height field.

func (*ContentV2CardsUploadAddPostRequestCardsToAddInnerDimensions) SetLength

SetLength gets a reference to the given int32 and assigns it to the Length field.

func (*ContentV2CardsUploadAddPostRequestCardsToAddInnerDimensions) SetWeightBrutto

SetWeightBrutto gets a reference to the given float32 and assigns it to the WeightBrutto field.

func (*ContentV2CardsUploadAddPostRequestCardsToAddInnerDimensions) SetWidth

SetWidth gets a reference to the given int32 and assigns it to the Width field.

func (ContentV2CardsUploadAddPostRequestCardsToAddInnerDimensions) ToMap

type ContentV2CardsUploadAddPostRequestCardsToAddInnerSizesInner

type ContentV2CardsUploadAddPostRequestCardsToAddInnerSizesInner struct {
	// Product size (for example, L or 45)
	TechSize *string `json:"techSize,omitempty"`
	// Russian size
	WbSize *string `json:"wbSize,omitempty"`
	// Price, ₽
	Price *int32 `json:"price,omitempty"`
	// SKU. If not specified, the SKU is generated automatically
	Skus []string `json:"skus,omitempty"`
}

ContentV2CardsUploadAddPostRequestCardsToAddInnerSizesInner struct for ContentV2CardsUploadAddPostRequestCardsToAddInnerSizesInner

func NewContentV2CardsUploadAddPostRequestCardsToAddInnerSizesInner

func NewContentV2CardsUploadAddPostRequestCardsToAddInnerSizesInner() *ContentV2CardsUploadAddPostRequestCardsToAddInnerSizesInner

NewContentV2CardsUploadAddPostRequestCardsToAddInnerSizesInner instantiates a new ContentV2CardsUploadAddPostRequestCardsToAddInnerSizesInner 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

func NewContentV2CardsUploadAddPostRequestCardsToAddInnerSizesInnerWithDefaults

func NewContentV2CardsUploadAddPostRequestCardsToAddInnerSizesInnerWithDefaults() *ContentV2CardsUploadAddPostRequestCardsToAddInnerSizesInner

NewContentV2CardsUploadAddPostRequestCardsToAddInnerSizesInnerWithDefaults instantiates a new ContentV2CardsUploadAddPostRequestCardsToAddInnerSizesInner 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

func (*ContentV2CardsUploadAddPostRequestCardsToAddInnerSizesInner) GetPrice

GetPrice returns the Price field value if set, zero value otherwise.

func (*ContentV2CardsUploadAddPostRequestCardsToAddInnerSizesInner) GetPriceOk

GetPriceOk returns a tuple with the Price field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ContentV2CardsUploadAddPostRequestCardsToAddInnerSizesInner) GetSkus

GetSkus returns the Skus field value if set, zero value otherwise.

func (*ContentV2CardsUploadAddPostRequestCardsToAddInnerSizesInner) GetSkusOk

GetSkusOk returns a tuple with the Skus field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ContentV2CardsUploadAddPostRequestCardsToAddInnerSizesInner) GetTechSize

GetTechSize returns the TechSize field value if set, zero value otherwise.

func (*ContentV2CardsUploadAddPostRequestCardsToAddInnerSizesInner) GetTechSizeOk

GetTechSizeOk returns a tuple with the TechSize field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ContentV2CardsUploadAddPostRequestCardsToAddInnerSizesInner) GetWbSize

GetWbSize returns the WbSize field value if set, zero value otherwise.

func (*ContentV2CardsUploadAddPostRequestCardsToAddInnerSizesInner) GetWbSizeOk

GetWbSizeOk returns a tuple with the WbSize field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ContentV2CardsUploadAddPostRequestCardsToAddInnerSizesInner) HasPrice

HasPrice returns a boolean if a field has been set.

func (*ContentV2CardsUploadAddPostRequestCardsToAddInnerSizesInner) HasSkus

HasSkus returns a boolean if a field has been set.

func (*ContentV2CardsUploadAddPostRequestCardsToAddInnerSizesInner) HasTechSize

HasTechSize returns a boolean if a field has been set.

func (*ContentV2CardsUploadAddPostRequestCardsToAddInnerSizesInner) HasWbSize

HasWbSize returns a boolean if a field has been set.

func (ContentV2CardsUploadAddPostRequestCardsToAddInnerSizesInner) MarshalJSON

func (*ContentV2CardsUploadAddPostRequestCardsToAddInnerSizesInner) SetPrice

SetPrice gets a reference to the given int32 and assigns it to the Price field.

func (*ContentV2CardsUploadAddPostRequestCardsToAddInnerSizesInner) SetSkus

SetSkus gets a reference to the given []string and assigns it to the Skus field.

func (*ContentV2CardsUploadAddPostRequestCardsToAddInnerSizesInner) SetTechSize

SetTechSize gets a reference to the given string and assigns it to the TechSize field.

func (*ContentV2CardsUploadAddPostRequestCardsToAddInnerSizesInner) SetWbSize

SetWbSize gets a reference to the given string and assigns it to the WbSize field.

func (ContentV2CardsUploadAddPostRequestCardsToAddInnerSizesInner) ToMap

type ContentV2CardsUploadPostRequestInner

type ContentV2CardsUploadPostRequestInner struct {
	// Subject ID
	SubjectID int32 `json:"subjectID"`
	// Merged product cards.<br>To create individual card, pass only one object.
	Variants []ContentV2CardsUploadPostRequestInnerVariantsInner `json:"variants"`
}

ContentV2CardsUploadPostRequestInner struct for ContentV2CardsUploadPostRequestInner

func NewContentV2CardsUploadPostRequestInner

func NewContentV2CardsUploadPostRequestInner(subjectID int32, variants []ContentV2CardsUploadPostRequestInnerVariantsInner) *ContentV2CardsUploadPostRequestInner

NewContentV2CardsUploadPostRequestInner instantiates a new ContentV2CardsUploadPostRequestInner 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

func NewContentV2CardsUploadPostRequestInnerWithDefaults

func NewContentV2CardsUploadPostRequestInnerWithDefaults() *ContentV2CardsUploadPostRequestInner

NewContentV2CardsUploadPostRequestInnerWithDefaults instantiates a new ContentV2CardsUploadPostRequestInner 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

func (*ContentV2CardsUploadPostRequestInner) GetSubjectID

func (o *ContentV2CardsUploadPostRequestInner) GetSubjectID() int32

GetSubjectID returns the SubjectID field value

func (*ContentV2CardsUploadPostRequestInner) GetSubjectIDOk

func (o *ContentV2CardsUploadPostRequestInner) GetSubjectIDOk() (*int32, bool)

GetSubjectIDOk returns a tuple with the SubjectID field value and a boolean to check if the value has been set.

func (*ContentV2CardsUploadPostRequestInner) GetVariants

GetVariants returns the Variants field value

func (*ContentV2CardsUploadPostRequestInner) GetVariantsOk

GetVariantsOk returns a tuple with the Variants field value and a boolean to check if the value has been set.

func (ContentV2CardsUploadPostRequestInner) MarshalJSON

func (o ContentV2CardsUploadPostRequestInner) MarshalJSON() ([]byte, error)

func (*ContentV2CardsUploadPostRequestInner) SetSubjectID

func (o *ContentV2CardsUploadPostRequestInner) SetSubjectID(v int32)

SetSubjectID sets field value

func (*ContentV2CardsUploadPostRequestInner) SetVariants

SetVariants sets field value

func (ContentV2CardsUploadPostRequestInner) ToMap

func (o ContentV2CardsUploadPostRequestInner) ToMap() (map[string]interface{}, error)

func (*ContentV2CardsUploadPostRequestInner) UnmarshalJSON

func (o *ContentV2CardsUploadPostRequestInner) UnmarshalJSON(data []byte) (err error)

type ContentV2CardsUploadPostRequestInnerVariantsInner

type ContentV2CardsUploadPostRequestInnerVariantsInner struct {
	// Brand
	Brand *string `json:"brand,omitempty"`
	// Product title
	Title *string `json:"title,omitempty"`
	// Product description.<br> The maximum number of characters depends on the product category<br> Standard - 2000, minimum - 1000, maximum - 5000<br> More details about description rules in **Product card filling rules** in [Instructions](https://seller.wildberries.ru/help-center/article/A-113) category of sellers portal
	Description *string `json:"description,omitempty"`
	// Seller's article
	VendorCode string `json:"vendorCode"`
	// Confirmation that required [labeling code](https://chestnyznak.ru/en) is specified:   - `true` — the seller confirms that required labeling code is applied to the product.   - `false` — the seller does not confirm that required labeling code is applied to the product. Pass `true` in the request to confirm that the product has required labeling code. The item will not pass moderation if there is no confirmation from the seller that required labeling code is applied to the product.  To check if labeling code is required, use the [Product Cards List](./work-with-products#tag/Product-Cards/paths/~1content~1v2~1get~1cards~1list/post) method, the response field `needKiz`
	KizMarked  *bool                                                        `json:"kizMarked,omitempty"`
	Wholesale  *ContentV2GetCardsListPost200ResponseCardsInnerWholesale     `json:"wholesale,omitempty"`
	Dimensions *ContentV2CardsUploadPostRequestInnerVariantsInnerDimensions `json:"dimensions,omitempty"`
	// Product sizes.<br> If the product has sizes but you send empty parameter, it is generated automatically with values: `techSize` = \"A\", `wbSize` = \"1\" and some random SKU
	Sizes []ContentV2CardsUploadPostRequestInnerVariantsInnerSizesInner `json:"sizes,omitempty"`
	// Product characteristics. <br> Use the [Subject characteristics](./work-with-products#tag/Categories-Subjects-and-Characteristics/paths/~1content~1v2~1object~1charcs~1%7BsubjectId%7D/get) method to get characteristics of the product
	Characteristics []ContentV2CardsUpdatePostRequestInnerCharacteristicsInner `json:"characteristics,omitempty"`
}

ContentV2CardsUploadPostRequestInnerVariantsInner struct for ContentV2CardsUploadPostRequestInnerVariantsInner

func NewContentV2CardsUploadPostRequestInnerVariantsInner

func NewContentV2CardsUploadPostRequestInnerVariantsInner(vendorCode string) *ContentV2CardsUploadPostRequestInnerVariantsInner

NewContentV2CardsUploadPostRequestInnerVariantsInner instantiates a new ContentV2CardsUploadPostRequestInnerVariantsInner 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

func NewContentV2CardsUploadPostRequestInnerVariantsInnerWithDefaults

func NewContentV2CardsUploadPostRequestInnerVariantsInnerWithDefaults() *ContentV2CardsUploadPostRequestInnerVariantsInner

NewContentV2CardsUploadPostRequestInnerVariantsInnerWithDefaults instantiates a new ContentV2CardsUploadPostRequestInnerVariantsInner 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

func (*ContentV2CardsUploadPostRequestInnerVariantsInner) GetBrand

GetBrand returns the Brand field value if set, zero value otherwise.

func (*ContentV2CardsUploadPostRequestInnerVariantsInner) GetBrandOk

GetBrandOk returns a tuple with the Brand field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ContentV2CardsUploadPostRequestInnerVariantsInner) GetCharacteristics

GetCharacteristics returns the Characteristics field value if set, zero value otherwise.

func (*ContentV2CardsUploadPostRequestInnerVariantsInner) GetCharacteristicsOk

GetCharacteristicsOk returns a tuple with the Characteristics field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ContentV2CardsUploadPostRequestInnerVariantsInner) GetDescription

GetDescription returns the Description field value if set, zero value otherwise.

func (*ContentV2CardsUploadPostRequestInnerVariantsInner) GetDescriptionOk

GetDescriptionOk returns a tuple with the Description field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ContentV2CardsUploadPostRequestInnerVariantsInner) GetDimensions

GetDimensions returns the Dimensions field value if set, zero value otherwise.

func (*ContentV2CardsUploadPostRequestInnerVariantsInner) GetDimensionsOk

GetDimensionsOk returns a tuple with the Dimensions field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ContentV2CardsUploadPostRequestInnerVariantsInner) GetKizMarked

GetKizMarked returns the KizMarked field value if set, zero value otherwise.

func (*ContentV2CardsUploadPostRequestInnerVariantsInner) GetKizMarkedOk

GetKizMarkedOk returns a tuple with the KizMarked field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ContentV2CardsUploadPostRequestInnerVariantsInner) GetSizes

GetSizes returns the Sizes field value if set, zero value otherwise.

func (*ContentV2CardsUploadPostRequestInnerVariantsInner) GetSizesOk

GetSizesOk returns a tuple with the Sizes field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ContentV2CardsUploadPostRequestInnerVariantsInner) GetTitle

GetTitle returns the Title field value if set, zero value otherwise.

func (*ContentV2CardsUploadPostRequestInnerVariantsInner) GetTitleOk

GetTitleOk returns a tuple with the Title field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ContentV2CardsUploadPostRequestInnerVariantsInner) GetVendorCode

GetVendorCode returns the VendorCode field value

func (*ContentV2CardsUploadPostRequestInnerVariantsInner) GetVendorCodeOk

GetVendorCodeOk returns a tuple with the VendorCode field value and a boolean to check if the value has been set.

func (*ContentV2CardsUploadPostRequestInnerVariantsInner) GetWholesale

GetWholesale returns the Wholesale field value if set, zero value otherwise.

func (*ContentV2CardsUploadPostRequestInnerVariantsInner) GetWholesaleOk

GetWholesaleOk returns a tuple with the Wholesale field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ContentV2CardsUploadPostRequestInnerVariantsInner) HasBrand

HasBrand returns a boolean if a field has been set.

func (*ContentV2CardsUploadPostRequestInnerVariantsInner) HasCharacteristics

HasCharacteristics returns a boolean if a field has been set.

func (*ContentV2CardsUploadPostRequestInnerVariantsInner) HasDescription

HasDescription returns a boolean if a field has been set.

func (*ContentV2CardsUploadPostRequestInnerVariantsInner) HasDimensions

HasDimensions returns a boolean if a field has been set.

func (*ContentV2CardsUploadPostRequestInnerVariantsInner) HasKizMarked

HasKizMarked returns a boolean if a field has been set.

func (*ContentV2CardsUploadPostRequestInnerVariantsInner) HasSizes

HasSizes returns a boolean if a field has been set.

func (*ContentV2CardsUploadPostRequestInnerVariantsInner) HasTitle

HasTitle returns a boolean if a field has been set.

func (*ContentV2CardsUploadPostRequestInnerVariantsInner) HasWholesale

HasWholesale returns a boolean if a field has been set.

func (ContentV2CardsUploadPostRequestInnerVariantsInner) MarshalJSON

func (*ContentV2CardsUploadPostRequestInnerVariantsInner) SetBrand

SetBrand gets a reference to the given string and assigns it to the Brand field.

func (*ContentV2CardsUploadPostRequestInnerVariantsInner) SetCharacteristics

SetCharacteristics gets a reference to the given []ContentV2CardsUpdatePostRequestInnerCharacteristicsInner and assigns it to the Characteristics field.

func (*ContentV2CardsUploadPostRequestInnerVariantsInner) SetDescription

SetDescription gets a reference to the given string and assigns it to the Description field.

func (*ContentV2CardsUploadPostRequestInnerVariantsInner) SetDimensions

SetDimensions gets a reference to the given ContentV2CardsUploadPostRequestInnerVariantsInnerDimensions and assigns it to the Dimensions field.

func (*ContentV2CardsUploadPostRequestInnerVariantsInner) SetKizMarked

SetKizMarked gets a reference to the given bool and assigns it to the KizMarked field.

func (*ContentV2CardsUploadPostRequestInnerVariantsInner) SetSizes

SetSizes gets a reference to the given []ContentV2CardsUploadPostRequestInnerVariantsInnerSizesInner and assigns it to the Sizes field.

func (*ContentV2CardsUploadPostRequestInnerVariantsInner) SetTitle

SetTitle gets a reference to the given string and assigns it to the Title field.

func (*ContentV2CardsUploadPostRequestInnerVariantsInner) SetVendorCode

SetVendorCode sets field value

func (*ContentV2CardsUploadPostRequestInnerVariantsInner) SetWholesale

SetWholesale gets a reference to the given ContentV2GetCardsListPost200ResponseCardsInnerWholesale and assigns it to the Wholesale field.

func (ContentV2CardsUploadPostRequestInnerVariantsInner) ToMap

func (o ContentV2CardsUploadPostRequestInnerVariantsInner) ToMap() (map[string]interface{}, error)

func (*ContentV2CardsUploadPostRequestInnerVariantsInner) UnmarshalJSON

func (o *ContentV2CardsUploadPostRequestInnerVariantsInner) UnmarshalJSON(data []byte) (err error)

type ContentV2CardsUploadPostRequestInnerVariantsInnerDimensions

type ContentV2CardsUploadPostRequestInnerVariantsInnerDimensions struct {
	// Length, cm
	Length *int32 `json:"length,omitempty"`
	// Width, cm
	Width *int32 `json:"width,omitempty"`
	// Height, cm
	Height *int32 `json:"height,omitempty"`
	// Weight, kg<br>Number of decimal places <=3
	WeightBrutto *float32 `json:"weightBrutto,omitempty"`
}

ContentV2CardsUploadPostRequestInnerVariantsInnerDimensions Dimensions and weight of the product `with packaging`. <br>Specify in `centimeters` and `kilograms` for any product.<br> If the data is not specified, zero values ​​for length, width, height and weight will be automatically generated. <br> The process of synchronizing new data with service may take up to 30 minutes

func NewContentV2CardsUploadPostRequestInnerVariantsInnerDimensions

func NewContentV2CardsUploadPostRequestInnerVariantsInnerDimensions() *ContentV2CardsUploadPostRequestInnerVariantsInnerDimensions

NewContentV2CardsUploadPostRequestInnerVariantsInnerDimensions instantiates a new ContentV2CardsUploadPostRequestInnerVariantsInnerDimensions 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

func NewContentV2CardsUploadPostRequestInnerVariantsInnerDimensionsWithDefaults

func NewContentV2CardsUploadPostRequestInnerVariantsInnerDimensionsWithDefaults() *ContentV2CardsUploadPostRequestInnerVariantsInnerDimensions

NewContentV2CardsUploadPostRequestInnerVariantsInnerDimensionsWithDefaults instantiates a new ContentV2CardsUploadPostRequestInnerVariantsInnerDimensions 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

func (*ContentV2CardsUploadPostRequestInnerVariantsInnerDimensions) GetHeight

GetHeight returns the Height field value if set, zero value otherwise.

func (*ContentV2CardsUploadPostRequestInnerVariantsInnerDimensions) GetHeightOk

GetHeightOk returns a tuple with the Height field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ContentV2CardsUploadPostRequestInnerVariantsInnerDimensions) GetLength

GetLength returns the Length field value if set, zero value otherwise.

func (*ContentV2CardsUploadPostRequestInnerVariantsInnerDimensions) GetLengthOk

GetLengthOk returns a tuple with the Length field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ContentV2CardsUploadPostRequestInnerVariantsInnerDimensions) GetWeightBrutto

GetWeightBrutto returns the WeightBrutto field value if set, zero value otherwise.

func (*ContentV2CardsUploadPostRequestInnerVariantsInnerDimensions) GetWeightBruttoOk

GetWeightBruttoOk returns a tuple with the WeightBrutto field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ContentV2CardsUploadPostRequestInnerVariantsInnerDimensions) GetWidth

GetWidth returns the Width field value if set, zero value otherwise.

func (*ContentV2CardsUploadPostRequestInnerVariantsInnerDimensions) GetWidthOk

GetWidthOk returns a tuple with the Width field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ContentV2CardsUploadPostRequestInnerVariantsInnerDimensions) HasHeight

HasHeight returns a boolean if a field has been set.

func (*ContentV2CardsUploadPostRequestInnerVariantsInnerDimensions) HasLength

HasLength returns a boolean if a field has been set.

func (*ContentV2CardsUploadPostRequestInnerVariantsInnerDimensions) HasWeightBrutto

HasWeightBrutto returns a boolean if a field has been set.

func (*ContentV2CardsUploadPostRequestInnerVariantsInnerDimensions) HasWidth

HasWidth returns a boolean if a field has been set.

func (ContentV2CardsUploadPostRequestInnerVariantsInnerDimensions) MarshalJSON

func (*ContentV2CardsUploadPostRequestInnerVariantsInnerDimensions) SetHeight

SetHeight gets a reference to the given int32 and assigns it to the Height field.

func (*ContentV2CardsUploadPostRequestInnerVariantsInnerDimensions) SetLength

SetLength gets a reference to the given int32 and assigns it to the Length field.

func (*ContentV2CardsUploadPostRequestInnerVariantsInnerDimensions) SetWeightBrutto

SetWeightBrutto gets a reference to the given float32 and assigns it to the WeightBrutto field.

func (*ContentV2CardsUploadPostRequestInnerVariantsInnerDimensions) SetWidth

SetWidth gets a reference to the given int32 and assigns it to the Width field.

func (ContentV2CardsUploadPostRequestInnerVariantsInnerDimensions) ToMap

type ContentV2CardsUploadPostRequestInnerVariantsInnerSizesInner

type ContentV2CardsUploadPostRequestInnerVariantsInnerSizesInner struct {
	// Product size (for example, L or 45)
	TechSize *string `json:"techSize,omitempty"`
	// Russian size
	WbSize *string `json:"wbSize,omitempty"`
	// Price, ₽
	Price *int32 `json:"price,omitempty"`
	// Array of SKUs for the size. <br> If not specified, SKU is generated automatically. <br> Allows linking multiple SKUs to one size, for example, for different batches of the product
	Skus []string `json:"skus,omitempty"`
}

ContentV2CardsUploadPostRequestInnerVariantsInnerSizesInner struct for ContentV2CardsUploadPostRequestInnerVariantsInnerSizesInner

func NewContentV2CardsUploadPostRequestInnerVariantsInnerSizesInner

func NewContentV2CardsUploadPostRequestInnerVariantsInnerSizesInner() *ContentV2CardsUploadPostRequestInnerVariantsInnerSizesInner

NewContentV2CardsUploadPostRequestInnerVariantsInnerSizesInner instantiates a new ContentV2CardsUploadPostRequestInnerVariantsInnerSizesInner 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

func NewContentV2CardsUploadPostRequestInnerVariantsInnerSizesInnerWithDefaults

func NewContentV2CardsUploadPostRequestInnerVariantsInnerSizesInnerWithDefaults() *ContentV2CardsUploadPostRequestInnerVariantsInnerSizesInner

NewContentV2CardsUploadPostRequestInnerVariantsInnerSizesInnerWithDefaults instantiates a new ContentV2CardsUploadPostRequestInnerVariantsInnerSizesInner 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

func (*ContentV2CardsUploadPostRequestInnerVariantsInnerSizesInner) GetPrice

GetPrice returns the Price field value if set, zero value otherwise.

func (*ContentV2CardsUploadPostRequestInnerVariantsInnerSizesInner) GetPriceOk

GetPriceOk returns a tuple with the Price field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ContentV2CardsUploadPostRequestInnerVariantsInnerSizesInner) GetSkus

GetSkus returns the Skus field value if set, zero value otherwise.

func (*ContentV2CardsUploadPostRequestInnerVariantsInnerSizesInner) GetSkusOk

GetSkusOk returns a tuple with the Skus field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ContentV2CardsUploadPostRequestInnerVariantsInnerSizesInner) GetTechSize

GetTechSize returns the TechSize field value if set, zero value otherwise.

func (*ContentV2CardsUploadPostRequestInnerVariantsInnerSizesInner) GetTechSizeOk

GetTechSizeOk returns a tuple with the TechSize field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ContentV2CardsUploadPostRequestInnerVariantsInnerSizesInner) GetWbSize

GetWbSize returns the WbSize field value if set, zero value otherwise.

func (*ContentV2CardsUploadPostRequestInnerVariantsInnerSizesInner) GetWbSizeOk

GetWbSizeOk returns a tuple with the WbSize field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ContentV2CardsUploadPostRequestInnerVariantsInnerSizesInner) HasPrice

HasPrice returns a boolean if a field has been set.

func (*ContentV2CardsUploadPostRequestInnerVariantsInnerSizesInner) HasSkus

HasSkus returns a boolean if a field has been set.

func (*ContentV2CardsUploadPostRequestInnerVariantsInnerSizesInner) HasTechSize

HasTechSize returns a boolean if a field has been set.

func (*ContentV2CardsUploadPostRequestInnerVariantsInnerSizesInner) HasWbSize

HasWbSize returns a boolean if a field has been set.

func (ContentV2CardsUploadPostRequestInnerVariantsInnerSizesInner) MarshalJSON

func (*ContentV2CardsUploadPostRequestInnerVariantsInnerSizesInner) SetPrice

SetPrice gets a reference to the given int32 and assigns it to the Price field.

func (*ContentV2CardsUploadPostRequestInnerVariantsInnerSizesInner) SetSkus

SetSkus gets a reference to the given []string and assigns it to the Skus field.

func (*ContentV2CardsUploadPostRequestInnerVariantsInnerSizesInner) SetTechSize

SetTechSize gets a reference to the given string and assigns it to the TechSize field.

func (*ContentV2CardsUploadPostRequestInnerVariantsInnerSizesInner) SetWbSize

SetWbSize gets a reference to the given string and assigns it to the WbSize field.

func (ContentV2CardsUploadPostRequestInnerVariantsInnerSizesInner) ToMap

type ContentV2DirectoryColorsGet200Response

type ContentV2DirectoryColorsGet200Response struct {
	Data []ContentV2DirectoryColorsGet200ResponseDataInner `json:"data,omitempty"`
	// Error flag
	Error *bool `json:"error,omitempty"`
	// Error description
	ErrorText *string `json:"errorText,omitempty"`
	// Additional errors
	AdditionalErrors NullableString `json:"additionalErrors,omitempty"`
}

ContentV2DirectoryColorsGet200Response struct for ContentV2DirectoryColorsGet200Response

func NewContentV2DirectoryColorsGet200Response

func NewContentV2DirectoryColorsGet200Response() *ContentV2DirectoryColorsGet200Response

NewContentV2DirectoryColorsGet200Response instantiates a new ContentV2DirectoryColorsGet200Response 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

func NewContentV2DirectoryColorsGet200ResponseWithDefaults

func NewContentV2DirectoryColorsGet200ResponseWithDefaults() *ContentV2DirectoryColorsGet200Response

NewContentV2DirectoryColorsGet200ResponseWithDefaults instantiates a new ContentV2DirectoryColorsGet200Response 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

func (*ContentV2DirectoryColorsGet200Response) GetAdditionalErrors

func (o *ContentV2DirectoryColorsGet200Response) GetAdditionalErrors() string

GetAdditionalErrors returns the AdditionalErrors field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ContentV2DirectoryColorsGet200Response) GetAdditionalErrorsOk

func (o *ContentV2DirectoryColorsGet200Response) GetAdditionalErrorsOk() (*string, bool)

GetAdditionalErrorsOk returns a tuple with the AdditionalErrors field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*ContentV2DirectoryColorsGet200Response) GetData

GetData returns the Data field value if set, zero value otherwise.

func (*ContentV2DirectoryColorsGet200Response) GetDataOk

GetDataOk returns a tuple with the Data field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ContentV2DirectoryColorsGet200Response) GetError

GetError returns the Error field value if set, zero value otherwise.

func (*ContentV2DirectoryColorsGet200Response) GetErrorOk

func (o *ContentV2DirectoryColorsGet200Response) GetErrorOk() (*bool, bool)

GetErrorOk returns a tuple with the Error field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ContentV2DirectoryColorsGet200Response) GetErrorText

GetErrorText returns the ErrorText field value if set, zero value otherwise.

func (*ContentV2DirectoryColorsGet200Response) GetErrorTextOk

func (o *ContentV2DirectoryColorsGet200Response) GetErrorTextOk() (*string, bool)

GetErrorTextOk returns a tuple with the ErrorText field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ContentV2DirectoryColorsGet200Response) HasAdditionalErrors

func (o *ContentV2DirectoryColorsGet200Response) HasAdditionalErrors() bool

HasAdditionalErrors returns a boolean if a field has been set.

func (*ContentV2DirectoryColorsGet200Response) HasData

HasData returns a boolean if a field has been set.

func (*ContentV2DirectoryColorsGet200Response) HasError

HasError returns a boolean if a field has been set.

func (*ContentV2DirectoryColorsGet200Response) HasErrorText

func (o *ContentV2DirectoryColorsGet200Response) HasErrorText() bool

HasErrorText returns a boolean if a field has been set.

func (ContentV2DirectoryColorsGet200Response) MarshalJSON

func (o ContentV2DirectoryColorsGet200Response) MarshalJSON() ([]byte, error)

func (*ContentV2DirectoryColorsGet200Response) SetAdditionalErrors

func (o *ContentV2DirectoryColorsGet200Response) SetAdditionalErrors(v string)

SetAdditionalErrors gets a reference to the given NullableString and assigns it to the AdditionalErrors field.

func (*ContentV2DirectoryColorsGet200Response) SetAdditionalErrorsNil

func (o *ContentV2DirectoryColorsGet200Response) SetAdditionalErrorsNil()

SetAdditionalErrorsNil sets the value for AdditionalErrors to be an explicit nil

func (*ContentV2DirectoryColorsGet200Response) SetData

SetData gets a reference to the given []ContentV2DirectoryColorsGet200ResponseDataInner and assigns it to the Data field.

func (*ContentV2DirectoryColorsGet200Response) SetError

SetError gets a reference to the given bool and assigns it to the Error field.

func (*ContentV2DirectoryColorsGet200Response) SetErrorText

SetErrorText gets a reference to the given string and assigns it to the ErrorText field.

func (ContentV2DirectoryColorsGet200Response) ToMap

func (o ContentV2DirectoryColorsGet200Response) ToMap() (map[string]interface{}, error)

func (*ContentV2DirectoryColorsGet200Response) UnsetAdditionalErrors

func (o *ContentV2DirectoryColorsGet200Response) UnsetAdditionalErrors()

UnsetAdditionalErrors ensures that no value is present for AdditionalErrors, not even an explicit nil

type ContentV2DirectoryColorsGet200ResponseDataInner

type ContentV2DirectoryColorsGet200ResponseDataInner struct {
	// Color name
	Name *string `json:"name,omitempty"`
	// Parent color name
	ParentName *string `json:"parentName,omitempty"`
}

ContentV2DirectoryColorsGet200ResponseDataInner struct for ContentV2DirectoryColorsGet200ResponseDataInner

func NewContentV2DirectoryColorsGet200ResponseDataInner

func NewContentV2DirectoryColorsGet200ResponseDataInner() *ContentV2DirectoryColorsGet200ResponseDataInner

NewContentV2DirectoryColorsGet200ResponseDataInner instantiates a new ContentV2DirectoryColorsGet200ResponseDataInner 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

func NewContentV2DirectoryColorsGet200ResponseDataInnerWithDefaults

func NewContentV2DirectoryColorsGet200ResponseDataInnerWithDefaults() *ContentV2DirectoryColorsGet200ResponseDataInner

NewContentV2DirectoryColorsGet200ResponseDataInnerWithDefaults instantiates a new ContentV2DirectoryColorsGet200ResponseDataInner 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

func (*ContentV2DirectoryColorsGet200ResponseDataInner) GetName

GetName returns the Name field value if set, zero value otherwise.

func (*ContentV2DirectoryColorsGet200ResponseDataInner) GetNameOk

GetNameOk returns a tuple with the Name field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ContentV2DirectoryColorsGet200ResponseDataInner) GetParentName

GetParentName returns the ParentName field value if set, zero value otherwise.

func (*ContentV2DirectoryColorsGet200ResponseDataInner) GetParentNameOk

GetParentNameOk returns a tuple with the ParentName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ContentV2DirectoryColorsGet200ResponseDataInner) HasName

HasName returns a boolean if a field has been set.

func (*ContentV2DirectoryColorsGet200ResponseDataInner) HasParentName

HasParentName returns a boolean if a field has been set.

func (ContentV2DirectoryColorsGet200ResponseDataInner) MarshalJSON

func (*ContentV2DirectoryColorsGet200ResponseDataInner) SetName

SetName gets a reference to the given string and assigns it to the Name field.

func (*ContentV2DirectoryColorsGet200ResponseDataInner) SetParentName

SetParentName gets a reference to the given string and assigns it to the ParentName field.

func (ContentV2DirectoryColorsGet200ResponseDataInner) ToMap

func (o ContentV2DirectoryColorsGet200ResponseDataInner) ToMap() (map[string]interface{}, error)

type ContentV2DirectoryCountriesGet200Response

type ContentV2DirectoryCountriesGet200Response struct {
	Data []ContentV2DirectoryCountriesGet200ResponseDataInner `json:"data,omitempty"`
	// Error flag
	Error *bool `json:"error,omitempty"`
	// Error description
	ErrorText *string `json:"errorText,omitempty"`
	// Additional errors
	AdditionalErrors NullableString `json:"additionalErrors,omitempty"`
}

ContentV2DirectoryCountriesGet200Response struct for ContentV2DirectoryCountriesGet200Response

func NewContentV2DirectoryCountriesGet200Response

func NewContentV2DirectoryCountriesGet200Response() *ContentV2DirectoryCountriesGet200Response

NewContentV2DirectoryCountriesGet200Response instantiates a new ContentV2DirectoryCountriesGet200Response 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

func NewContentV2DirectoryCountriesGet200ResponseWithDefaults

func NewContentV2DirectoryCountriesGet200ResponseWithDefaults() *ContentV2DirectoryCountriesGet200Response

NewContentV2DirectoryCountriesGet200ResponseWithDefaults instantiates a new ContentV2DirectoryCountriesGet200Response 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

func (*ContentV2DirectoryCountriesGet200Response) GetAdditionalErrors

func (o *ContentV2DirectoryCountriesGet200Response) GetAdditionalErrors() string

GetAdditionalErrors returns the AdditionalErrors field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ContentV2DirectoryCountriesGet200Response) GetAdditionalErrorsOk

func (o *ContentV2DirectoryCountriesGet200Response) GetAdditionalErrorsOk() (*string, bool)

GetAdditionalErrorsOk returns a tuple with the AdditionalErrors field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*ContentV2DirectoryCountriesGet200Response) GetData

GetData returns the Data field value if set, zero value otherwise.

func (*ContentV2DirectoryCountriesGet200Response) GetDataOk

GetDataOk returns a tuple with the Data field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ContentV2DirectoryCountriesGet200Response) GetError

GetError returns the Error field value if set, zero value otherwise.

func (*ContentV2DirectoryCountriesGet200Response) GetErrorOk

GetErrorOk returns a tuple with the Error field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ContentV2DirectoryCountriesGet200Response) GetErrorText

GetErrorText returns the ErrorText field value if set, zero value otherwise.

func (*ContentV2DirectoryCountriesGet200Response) GetErrorTextOk

func (o *ContentV2DirectoryCountriesGet200Response) GetErrorTextOk() (*string, bool)

GetErrorTextOk returns a tuple with the ErrorText field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ContentV2DirectoryCountriesGet200Response) HasAdditionalErrors

func (o *ContentV2DirectoryCountriesGet200Response) HasAdditionalErrors() bool

HasAdditionalErrors returns a boolean if a field has been set.

func (*ContentV2DirectoryCountriesGet200Response) HasData

HasData returns a boolean if a field has been set.

func (*ContentV2DirectoryCountriesGet200Response) HasError

HasError returns a boolean if a field has been set.

func (*ContentV2DirectoryCountriesGet200Response) HasErrorText

HasErrorText returns a boolean if a field has been set.

func (ContentV2DirectoryCountriesGet200Response) MarshalJSON

func (*ContentV2DirectoryCountriesGet200Response) SetAdditionalErrors

func (o *ContentV2DirectoryCountriesGet200Response) SetAdditionalErrors(v string)

SetAdditionalErrors gets a reference to the given NullableString and assigns it to the AdditionalErrors field.

func (*ContentV2DirectoryCountriesGet200Response) SetAdditionalErrorsNil

func (o *ContentV2DirectoryCountriesGet200Response) SetAdditionalErrorsNil()

SetAdditionalErrorsNil sets the value for AdditionalErrors to be an explicit nil

func (*ContentV2DirectoryCountriesGet200Response) SetData

SetData gets a reference to the given []ContentV2DirectoryCountriesGet200ResponseDataInner and assigns it to the Data field.

func (*ContentV2DirectoryCountriesGet200Response) SetError

SetError gets a reference to the given bool and assigns it to the Error field.

func (*ContentV2DirectoryCountriesGet200Response) SetErrorText

SetErrorText gets a reference to the given string and assigns it to the ErrorText field.

func (ContentV2DirectoryCountriesGet200Response) ToMap

func (o ContentV2DirectoryCountriesGet200Response) ToMap() (map[string]interface{}, error)

func (*ContentV2DirectoryCountriesGet200Response) UnsetAdditionalErrors

func (o *ContentV2DirectoryCountriesGet200Response) UnsetAdditionalErrors()

UnsetAdditionalErrors ensures that no value is present for AdditionalErrors, not even an explicit nil

type ContentV2DirectoryCountriesGet200ResponseDataInner

type ContentV2DirectoryCountriesGet200ResponseDataInner struct {
	// Country ID
	Id *int32 `json:"id,omitempty"`
	// Value of characteristic country of origin
	Name *string `json:"name,omitempty"`
	// Full country name
	FullName *string `json:"fullName,omitempty"`
}

ContentV2DirectoryCountriesGet200ResponseDataInner struct for ContentV2DirectoryCountriesGet200ResponseDataInner

func NewContentV2DirectoryCountriesGet200ResponseDataInner

func NewContentV2DirectoryCountriesGet200ResponseDataInner() *ContentV2DirectoryCountriesGet200ResponseDataInner

NewContentV2DirectoryCountriesGet200ResponseDataInner instantiates a new ContentV2DirectoryCountriesGet200ResponseDataInner 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

func NewContentV2DirectoryCountriesGet200ResponseDataInnerWithDefaults

func NewContentV2DirectoryCountriesGet200ResponseDataInnerWithDefaults() *ContentV2DirectoryCountriesGet200ResponseDataInner

NewContentV2DirectoryCountriesGet200ResponseDataInnerWithDefaults instantiates a new ContentV2DirectoryCountriesGet200ResponseDataInner 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

func (*ContentV2DirectoryCountriesGet200ResponseDataInner) GetFullName

GetFullName returns the FullName field value if set, zero value otherwise.

func (*ContentV2DirectoryCountriesGet200ResponseDataInner) GetFullNameOk

GetFullNameOk returns a tuple with the FullName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ContentV2DirectoryCountriesGet200ResponseDataInner) GetId

GetId returns the Id field value if set, zero value otherwise.

func (*ContentV2DirectoryCountriesGet200ResponseDataInner) GetIdOk

GetIdOk returns a tuple with the Id field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ContentV2DirectoryCountriesGet200ResponseDataInner) GetName

GetName returns the Name field value if set, zero value otherwise.

func (*ContentV2DirectoryCountriesGet200ResponseDataInner) GetNameOk

GetNameOk returns a tuple with the Name field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ContentV2DirectoryCountriesGet200ResponseDataInner) HasFullName

HasFullName returns a boolean if a field has been set.

func (*ContentV2DirectoryCountriesGet200ResponseDataInner) HasId

HasId returns a boolean if a field has been set.

func (*ContentV2DirectoryCountriesGet200ResponseDataInner) HasName

HasName returns a boolean if a field has been set.

func (ContentV2DirectoryCountriesGet200ResponseDataInner) MarshalJSON

func (*ContentV2DirectoryCountriesGet200ResponseDataInner) SetFullName

SetFullName gets a reference to the given string and assigns it to the FullName field.

func (*ContentV2DirectoryCountriesGet200ResponseDataInner) SetId

SetId gets a reference to the given int32 and assigns it to the Id field.

func (*ContentV2DirectoryCountriesGet200ResponseDataInner) SetName

SetName gets a reference to the given string and assigns it to the Name field.

func (ContentV2DirectoryCountriesGet200ResponseDataInner) ToMap

type ContentV2DirectoryKindsGet200Response

type ContentV2DirectoryKindsGet200Response struct {
	// List of values for sex characteristic.
	Data []string `json:"data,omitempty"`
	// Error flag
	Error *bool `json:"error,omitempty"`
	// Error description
	ErrorText *string `json:"errorText,omitempty"`
	// Additional errors
	AdditionalErrors NullableString `json:"additionalErrors,omitempty"`
}

ContentV2DirectoryKindsGet200Response struct for ContentV2DirectoryKindsGet200Response

func NewContentV2DirectoryKindsGet200Response

func NewContentV2DirectoryKindsGet200Response() *ContentV2DirectoryKindsGet200Response

NewContentV2DirectoryKindsGet200Response instantiates a new ContentV2DirectoryKindsGet200Response 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

func NewContentV2DirectoryKindsGet200ResponseWithDefaults

func NewContentV2DirectoryKindsGet200ResponseWithDefaults() *ContentV2DirectoryKindsGet200Response

NewContentV2DirectoryKindsGet200ResponseWithDefaults instantiates a new ContentV2DirectoryKindsGet200Response 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

func (*ContentV2DirectoryKindsGet200Response) GetAdditionalErrors

func (o *ContentV2DirectoryKindsGet200Response) GetAdditionalErrors() string

GetAdditionalErrors returns the AdditionalErrors field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ContentV2DirectoryKindsGet200Response) GetAdditionalErrorsOk

func (o *ContentV2DirectoryKindsGet200Response) GetAdditionalErrorsOk() (*string, bool)

GetAdditionalErrorsOk returns a tuple with the AdditionalErrors field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*ContentV2DirectoryKindsGet200Response) GetData

GetData returns the Data field value if set, zero value otherwise.

func (*ContentV2DirectoryKindsGet200Response) GetDataOk

GetDataOk returns a tuple with the Data field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ContentV2DirectoryKindsGet200Response) GetError

GetError returns the Error field value if set, zero value otherwise.

func (*ContentV2DirectoryKindsGet200Response) GetErrorOk

func (o *ContentV2DirectoryKindsGet200Response) GetErrorOk() (*bool, bool)

GetErrorOk returns a tuple with the Error field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ContentV2DirectoryKindsGet200Response) GetErrorText

GetErrorText returns the ErrorText field value if set, zero value otherwise.

func (*ContentV2DirectoryKindsGet200Response) GetErrorTextOk

func (o *ContentV2DirectoryKindsGet200Response) GetErrorTextOk() (*string, bool)

GetErrorTextOk returns a tuple with the ErrorText field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ContentV2DirectoryKindsGet200Response) HasAdditionalErrors

func (o *ContentV2DirectoryKindsGet200Response) HasAdditionalErrors() bool

HasAdditionalErrors returns a boolean if a field has been set.

func (*ContentV2DirectoryKindsGet200Response) HasData

HasData returns a boolean if a field has been set.

func (*ContentV2DirectoryKindsGet200Response) HasError

HasError returns a boolean if a field has been set.

func (*ContentV2DirectoryKindsGet200Response) HasErrorText

func (o *ContentV2DirectoryKindsGet200Response) HasErrorText() bool

HasErrorText returns a boolean if a field has been set.

func (ContentV2DirectoryKindsGet200Response) MarshalJSON

func (o ContentV2DirectoryKindsGet200Response) MarshalJSON() ([]byte, error)

func (*ContentV2DirectoryKindsGet200Response) SetAdditionalErrors

func (o *ContentV2DirectoryKindsGet200Response) SetAdditionalErrors(v string)

SetAdditionalErrors gets a reference to the given NullableString and assigns it to the AdditionalErrors field.

func (*ContentV2DirectoryKindsGet200Response) SetAdditionalErrorsNil

func (o *ContentV2DirectoryKindsGet200Response) SetAdditionalErrorsNil()

SetAdditionalErrorsNil sets the value for AdditionalErrors to be an explicit nil

func (*ContentV2DirectoryKindsGet200Response) SetData

SetData gets a reference to the given []string and assigns it to the Data field.

func (*ContentV2DirectoryKindsGet200Response) SetError

SetError gets a reference to the given bool and assigns it to the Error field.

func (*ContentV2DirectoryKindsGet200Response) SetErrorText

func (o *ContentV2DirectoryKindsGet200Response) SetErrorText(v string)

SetErrorText gets a reference to the given string and assigns it to the ErrorText field.

func (ContentV2DirectoryKindsGet200Response) ToMap

func (o ContentV2DirectoryKindsGet200Response) ToMap() (map[string]interface{}, error)

func (*ContentV2DirectoryKindsGet200Response) UnsetAdditionalErrors

func (o *ContentV2DirectoryKindsGet200Response) UnsetAdditionalErrors()

UnsetAdditionalErrors ensures that no value is present for AdditionalErrors, not even an explicit nil

type ContentV2DirectorySeasonsGet200Response

type ContentV2DirectorySeasonsGet200Response struct {
	// Array of values for season characteristic
	Data []string `json:"data,omitempty"`
	// Error flag
	Error *bool `json:"error,omitempty"`
	// Error description
	ErrorText *string `json:"errorText,omitempty"`
	// Additional errors
	AdditionalErrors NullableString `json:"additionalErrors,omitempty"`
}

ContentV2DirectorySeasonsGet200Response struct for ContentV2DirectorySeasonsGet200Response

func NewContentV2DirectorySeasonsGet200Response

func NewContentV2DirectorySeasonsGet200Response() *ContentV2DirectorySeasonsGet200Response

NewContentV2DirectorySeasonsGet200Response instantiates a new ContentV2DirectorySeasonsGet200Response 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

func NewContentV2DirectorySeasonsGet200ResponseWithDefaults

func NewContentV2DirectorySeasonsGet200ResponseWithDefaults() *ContentV2DirectorySeasonsGet200Response

NewContentV2DirectorySeasonsGet200ResponseWithDefaults instantiates a new ContentV2DirectorySeasonsGet200Response 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

func (*ContentV2DirectorySeasonsGet200Response) GetAdditionalErrors

func (o *ContentV2DirectorySeasonsGet200Response) GetAdditionalErrors() string

GetAdditionalErrors returns the AdditionalErrors field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ContentV2DirectorySeasonsGet200Response) GetAdditionalErrorsOk

func (o *ContentV2DirectorySeasonsGet200Response) GetAdditionalErrorsOk() (*string, bool)

GetAdditionalErrorsOk returns a tuple with the AdditionalErrors field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*ContentV2DirectorySeasonsGet200Response) GetData

GetData returns the Data field value if set, zero value otherwise.

func (*ContentV2DirectorySeasonsGet200Response) GetDataOk

GetDataOk returns a tuple with the Data field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ContentV2DirectorySeasonsGet200Response) GetError

GetError returns the Error field value if set, zero value otherwise.

func (*ContentV2DirectorySeasonsGet200Response) GetErrorOk

GetErrorOk returns a tuple with the Error field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ContentV2DirectorySeasonsGet200Response) GetErrorText

GetErrorText returns the ErrorText field value if set, zero value otherwise.

func (*ContentV2DirectorySeasonsGet200Response) GetErrorTextOk

func (o *ContentV2DirectorySeasonsGet200Response) GetErrorTextOk() (*string, bool)

GetErrorTextOk returns a tuple with the ErrorText field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ContentV2DirectorySeasonsGet200Response) HasAdditionalErrors

func (o *ContentV2DirectorySeasonsGet200Response) HasAdditionalErrors() bool

HasAdditionalErrors returns a boolean if a field has been set.

func (*ContentV2DirectorySeasonsGet200Response) HasData

HasData returns a boolean if a field has been set.

func (*ContentV2DirectorySeasonsGet200Response) HasError

HasError returns a boolean if a field has been set.

func (*ContentV2DirectorySeasonsGet200Response) HasErrorText

HasErrorText returns a boolean if a field has been set.

func (ContentV2DirectorySeasonsGet200Response) MarshalJSON

func (o ContentV2DirectorySeasonsGet200Response) MarshalJSON() ([]byte, error)

func (*ContentV2DirectorySeasonsGet200Response) SetAdditionalErrors

func (o *ContentV2DirectorySeasonsGet200Response) SetAdditionalErrors(v string)

SetAdditionalErrors gets a reference to the given NullableString and assigns it to the AdditionalErrors field.

func (*ContentV2DirectorySeasonsGet200Response) SetAdditionalErrorsNil

func (o *ContentV2DirectorySeasonsGet200Response) SetAdditionalErrorsNil()

SetAdditionalErrorsNil sets the value for AdditionalErrors to be an explicit nil

func (*ContentV2DirectorySeasonsGet200Response) SetData

SetData gets a reference to the given []string and assigns it to the Data field.

func (*ContentV2DirectorySeasonsGet200Response) SetError

SetError gets a reference to the given bool and assigns it to the Error field.

func (*ContentV2DirectorySeasonsGet200Response) SetErrorText

SetErrorText gets a reference to the given string and assigns it to the ErrorText field.

func (ContentV2DirectorySeasonsGet200Response) ToMap

func (o ContentV2DirectorySeasonsGet200Response) ToMap() (map[string]interface{}, error)

func (*ContentV2DirectorySeasonsGet200Response) UnsetAdditionalErrors

func (o *ContentV2DirectorySeasonsGet200Response) UnsetAdditionalErrors()

UnsetAdditionalErrors ensures that no value is present for AdditionalErrors, not even an explicit nil

type ContentV2DirectoryTnvedGet200Response

type ContentV2DirectoryTnvedGet200Response struct {
	// Data
	Data []ContentV2DirectoryTnvedGet200ResponseDataInner `json:"data,omitempty"`
	// Error flag
	Error *bool `json:"error,omitempty"`
	// Error description
	ErrorText *string `json:"errorText,omitempty"`
	// Additional errors
	AdditionalErrors NullableString `json:"additionalErrors,omitempty"`
}

ContentV2DirectoryTnvedGet200Response struct for ContentV2DirectoryTnvedGet200Response

func NewContentV2DirectoryTnvedGet200Response

func NewContentV2DirectoryTnvedGet200Response() *ContentV2DirectoryTnvedGet200Response

NewContentV2DirectoryTnvedGet200Response instantiates a new ContentV2DirectoryTnvedGet200Response 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

func NewContentV2DirectoryTnvedGet200ResponseWithDefaults

func NewContentV2DirectoryTnvedGet200ResponseWithDefaults() *ContentV2DirectoryTnvedGet200Response

NewContentV2DirectoryTnvedGet200ResponseWithDefaults instantiates a new ContentV2DirectoryTnvedGet200Response 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

func (*ContentV2DirectoryTnvedGet200Response) GetAdditionalErrors

func (o *ContentV2DirectoryTnvedGet200Response) GetAdditionalErrors() string

GetAdditionalErrors returns the AdditionalErrors field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ContentV2DirectoryTnvedGet200Response) GetAdditionalErrorsOk

func (o *ContentV2DirectoryTnvedGet200Response) GetAdditionalErrorsOk() (*string, bool)

GetAdditionalErrorsOk returns a tuple with the AdditionalErrors field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*ContentV2DirectoryTnvedGet200Response) GetData

GetData returns the Data field value if set, zero value otherwise.

func (*ContentV2DirectoryTnvedGet200Response) GetDataOk

GetDataOk returns a tuple with the Data field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ContentV2DirectoryTnvedGet200Response) GetError

GetError returns the Error field value if set, zero value otherwise.

func (*ContentV2DirectoryTnvedGet200Response) GetErrorOk

func (o *ContentV2DirectoryTnvedGet200Response) GetErrorOk() (*bool, bool)

GetErrorOk returns a tuple with the Error field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ContentV2DirectoryTnvedGet200Response) GetErrorText

GetErrorText returns the ErrorText field value if set, zero value otherwise.

func (*ContentV2DirectoryTnvedGet200Response) GetErrorTextOk

func (o *ContentV2DirectoryTnvedGet200Response) GetErrorTextOk() (*string, bool)

GetErrorTextOk returns a tuple with the ErrorText field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ContentV2DirectoryTnvedGet200Response) HasAdditionalErrors

func (o *ContentV2DirectoryTnvedGet200Response) HasAdditionalErrors() bool

HasAdditionalErrors returns a boolean if a field has been set.

func (*ContentV2DirectoryTnvedGet200Response) HasData

HasData returns a boolean if a field has been set.

func (*ContentV2DirectoryTnvedGet200Response) HasError

HasError returns a boolean if a field has been set.

func (*ContentV2DirectoryTnvedGet200Response) HasErrorText

func (o *ContentV2DirectoryTnvedGet200Response) HasErrorText() bool

HasErrorText returns a boolean if a field has been set.

func (ContentV2DirectoryTnvedGet200Response) MarshalJSON

func (o ContentV2DirectoryTnvedGet200Response) MarshalJSON() ([]byte, error)

func (*ContentV2DirectoryTnvedGet200Response) SetAdditionalErrors

func (o *ContentV2DirectoryTnvedGet200Response) SetAdditionalErrors(v string)

SetAdditionalErrors gets a reference to the given NullableString and assigns it to the AdditionalErrors field.

func (*ContentV2DirectoryTnvedGet200Response) SetAdditionalErrorsNil

func (o *ContentV2DirectoryTnvedGet200Response) SetAdditionalErrorsNil()

SetAdditionalErrorsNil sets the value for AdditionalErrors to be an explicit nil

func (*ContentV2DirectoryTnvedGet200Response) SetData

SetData gets a reference to the given []ContentV2DirectoryTnvedGet200ResponseDataInner and assigns it to the Data field.

func (*ContentV2DirectoryTnvedGet200Response) SetError

SetError gets a reference to the given bool and assigns it to the Error field.

func (*ContentV2DirectoryTnvedGet200Response) SetErrorText

func (o *ContentV2DirectoryTnvedGet200Response) SetErrorText(v string)

SetErrorText gets a reference to the given string and assigns it to the ErrorText field.

func (ContentV2DirectoryTnvedGet200Response) ToMap

func (o ContentV2DirectoryTnvedGet200Response) ToMap() (map[string]interface{}, error)

func (*ContentV2DirectoryTnvedGet200Response) UnsetAdditionalErrors

func (o *ContentV2DirectoryTnvedGet200Response) UnsetAdditionalErrors()

UnsetAdditionalErrors ensures that no value is present for AdditionalErrors, not even an explicit nil

type ContentV2DirectoryTnvedGet200ResponseDataInner

type ContentV2DirectoryTnvedGet200ResponseDataInner struct {
	// HS-code
	Tnved *string `json:"tnved,omitempty"`
	// - `true` - labeling code is required - `false` - labeling code is not required
	IsKiz *bool `json:"isKiz,omitempty"`
}

ContentV2DirectoryTnvedGet200ResponseDataInner struct for ContentV2DirectoryTnvedGet200ResponseDataInner

func NewContentV2DirectoryTnvedGet200ResponseDataInner

func NewContentV2DirectoryTnvedGet200ResponseDataInner() *ContentV2DirectoryTnvedGet200ResponseDataInner

NewContentV2DirectoryTnvedGet200ResponseDataInner instantiates a new ContentV2DirectoryTnvedGet200ResponseDataInner 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

func NewContentV2DirectoryTnvedGet200ResponseDataInnerWithDefaults

func NewContentV2DirectoryTnvedGet200ResponseDataInnerWithDefaults() *ContentV2DirectoryTnvedGet200ResponseDataInner

NewContentV2DirectoryTnvedGet200ResponseDataInnerWithDefaults instantiates a new ContentV2DirectoryTnvedGet200ResponseDataInner 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

func (*ContentV2DirectoryTnvedGet200ResponseDataInner) GetIsKiz

GetIsKiz returns the IsKiz field value if set, zero value otherwise.

func (*ContentV2DirectoryTnvedGet200ResponseDataInner) GetIsKizOk

GetIsKizOk returns a tuple with the IsKiz field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ContentV2DirectoryTnvedGet200ResponseDataInner) GetTnved

GetTnved returns the Tnved field value if set, zero value otherwise.

func (*ContentV2DirectoryTnvedGet200ResponseDataInner) GetTnvedOk

GetTnvedOk returns a tuple with the Tnved field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ContentV2DirectoryTnvedGet200ResponseDataInner) HasIsKiz

HasIsKiz returns a boolean if a field has been set.

func (*ContentV2DirectoryTnvedGet200ResponseDataInner) HasTnved

HasTnved returns a boolean if a field has been set.

func (ContentV2DirectoryTnvedGet200ResponseDataInner) MarshalJSON

func (*ContentV2DirectoryTnvedGet200ResponseDataInner) SetIsKiz

SetIsKiz gets a reference to the given bool and assigns it to the IsKiz field.

func (*ContentV2DirectoryTnvedGet200ResponseDataInner) SetTnved

SetTnved gets a reference to the given string and assigns it to the Tnved field.

func (ContentV2DirectoryTnvedGet200ResponseDataInner) ToMap

func (o ContentV2DirectoryTnvedGet200ResponseDataInner) ToMap() (map[string]interface{}, error)

type ContentV2DirectoryVatGet200Response

type ContentV2DirectoryVatGet200Response struct {
	Data []string `json:"data,omitempty"`
	// Error flag
	Error *bool `json:"error,omitempty"`
	// Error text
	ErrorText *string `json:"errorText,omitempty"`
	// Additional errors
	AdditionalErrors NullableString `json:"additionalErrors,omitempty"`
}

ContentV2DirectoryVatGet200Response struct for ContentV2DirectoryVatGet200Response

func NewContentV2DirectoryVatGet200Response

func NewContentV2DirectoryVatGet200Response() *ContentV2DirectoryVatGet200Response

NewContentV2DirectoryVatGet200Response instantiates a new ContentV2DirectoryVatGet200Response 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

func NewContentV2DirectoryVatGet200ResponseWithDefaults

func NewContentV2DirectoryVatGet200ResponseWithDefaults() *ContentV2DirectoryVatGet200Response

NewContentV2DirectoryVatGet200ResponseWithDefaults instantiates a new ContentV2DirectoryVatGet200Response 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

func (*ContentV2DirectoryVatGet200Response) GetAdditionalErrors

func (o *ContentV2DirectoryVatGet200Response) GetAdditionalErrors() string

GetAdditionalErrors returns the AdditionalErrors field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ContentV2DirectoryVatGet200Response) GetAdditionalErrorsOk

func (o *ContentV2DirectoryVatGet200Response) GetAdditionalErrorsOk() (*string, bool)

GetAdditionalErrorsOk returns a tuple with the AdditionalErrors field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*ContentV2DirectoryVatGet200Response) GetData

GetData returns the Data field value if set, zero value otherwise.

func (*ContentV2DirectoryVatGet200Response) GetDataOk

func (o *ContentV2DirectoryVatGet200Response) GetDataOk() ([]string, bool)

GetDataOk returns a tuple with the Data field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ContentV2DirectoryVatGet200Response) GetError

GetError returns the Error field value if set, zero value otherwise.

func (*ContentV2DirectoryVatGet200Response) GetErrorOk

func (o *ContentV2DirectoryVatGet200Response) GetErrorOk() (*bool, bool)

GetErrorOk returns a tuple with the Error field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ContentV2DirectoryVatGet200Response) GetErrorText

func (o *ContentV2DirectoryVatGet200Response) GetErrorText() string

GetErrorText returns the ErrorText field value if set, zero value otherwise.

func (*ContentV2DirectoryVatGet200Response) GetErrorTextOk

func (o *ContentV2DirectoryVatGet200Response) GetErrorTextOk() (*string, bool)

GetErrorTextOk returns a tuple with the ErrorText field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ContentV2DirectoryVatGet200Response) HasAdditionalErrors

func (o *ContentV2DirectoryVatGet200Response) HasAdditionalErrors() bool

HasAdditionalErrors returns a boolean if a field has been set.

func (*ContentV2DirectoryVatGet200Response) HasData

HasData returns a boolean if a field has been set.

func (*ContentV2DirectoryVatGet200Response) HasError

HasError returns a boolean if a field has been set.

func (*ContentV2DirectoryVatGet200Response) HasErrorText

func (o *ContentV2DirectoryVatGet200Response) HasErrorText() bool

HasErrorText returns a boolean if a field has been set.

func (ContentV2DirectoryVatGet200Response) MarshalJSON

func (o ContentV2DirectoryVatGet200Response) MarshalJSON() ([]byte, error)

func (*ContentV2DirectoryVatGet200Response) SetAdditionalErrors

func (o *ContentV2DirectoryVatGet200Response) SetAdditionalErrors(v string)

SetAdditionalErrors gets a reference to the given NullableString and assigns it to the AdditionalErrors field.

func (*ContentV2DirectoryVatGet200Response) SetAdditionalErrorsNil

func (o *ContentV2DirectoryVatGet200Response) SetAdditionalErrorsNil()

SetAdditionalErrorsNil sets the value for AdditionalErrors to be an explicit nil

func (*ContentV2DirectoryVatGet200Response) SetData

SetData gets a reference to the given []string and assigns it to the Data field.

func (*ContentV2DirectoryVatGet200Response) SetError

SetError gets a reference to the given bool and assigns it to the Error field.

func (*ContentV2DirectoryVatGet200Response) SetErrorText

func (o *ContentV2DirectoryVatGet200Response) SetErrorText(v string)

SetErrorText gets a reference to the given string and assigns it to the ErrorText field.

func (ContentV2DirectoryVatGet200Response) ToMap

func (o ContentV2DirectoryVatGet200Response) ToMap() (map[string]interface{}, error)

func (*ContentV2DirectoryVatGet200Response) UnsetAdditionalErrors

func (o *ContentV2DirectoryVatGet200Response) UnsetAdditionalErrors()

UnsetAdditionalErrors ensures that no value is present for AdditionalErrors, not even an explicit nil

type ContentV2GetCardsListPost200Response

type ContentV2GetCardsListPost200Response struct {
	// Product cards
	Cards  []ContentV2GetCardsListPost200ResponseCardsInner `json:"cards,omitempty"`
	Cursor *ContentV2GetCardsListPost200ResponseCursor      `json:"cursor,omitempty"`
}

ContentV2GetCardsListPost200Response struct for ContentV2GetCardsListPost200Response

func NewContentV2GetCardsListPost200Response

func NewContentV2GetCardsListPost200Response() *ContentV2GetCardsListPost200Response

NewContentV2GetCardsListPost200Response instantiates a new ContentV2GetCardsListPost200Response 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

func NewContentV2GetCardsListPost200ResponseWithDefaults

func NewContentV2GetCardsListPost200ResponseWithDefaults() *ContentV2GetCardsListPost200Response

NewContentV2GetCardsListPost200ResponseWithDefaults instantiates a new ContentV2GetCardsListPost200Response 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

func (*ContentV2GetCardsListPost200Response) GetCards

GetCards returns the Cards field value if set, zero value otherwise.

func (*ContentV2GetCardsListPost200Response) GetCardsOk

GetCardsOk returns a tuple with the Cards field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ContentV2GetCardsListPost200Response) GetCursor

GetCursor returns the Cursor field value if set, zero value otherwise.

func (*ContentV2GetCardsListPost200Response) GetCursorOk

GetCursorOk returns a tuple with the Cursor field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ContentV2GetCardsListPost200Response) HasCards

HasCards returns a boolean if a field has been set.

func (*ContentV2GetCardsListPost200Response) HasCursor

HasCursor returns a boolean if a field has been set.

func (ContentV2GetCardsListPost200Response) MarshalJSON

func (o ContentV2GetCardsListPost200Response) MarshalJSON() ([]byte, error)

func (*ContentV2GetCardsListPost200Response) SetCards

SetCards gets a reference to the given []ContentV2GetCardsListPost200ResponseCardsInner and assigns it to the Cards field.

func (*ContentV2GetCardsListPost200Response) SetCursor

SetCursor gets a reference to the given ContentV2GetCardsListPost200ResponseCursor and assigns it to the Cursor field.

func (ContentV2GetCardsListPost200Response) ToMap

func (o ContentV2GetCardsListPost200Response) ToMap() (map[string]interface{}, error)

type ContentV2GetCardsListPost200ResponseCardsInner

type ContentV2GetCardsListPost200ResponseCardsInner struct {
	// WB article
	NmID *int32 `json:"nmID,omitempty"`
	// Merged product cards ID.<br> The same for all WB article of group of merged product cards.<br> Every product card has `imtID`, even if is not merged with any other card
	ImtID *int32 `json:"imtID,omitempty"`
	// Internal system ID of the product card
	NmUUID *string `json:"nmUUID,omitempty"`
	// Subject ID
	SubjectID *int32 `json:"subjectID,omitempty"`
	// Subject name
	SubjectName *string `json:"subjectName,omitempty"`
	// Seller's article
	VendorCode *string `json:"vendorCode,omitempty"`
	// Brand
	Brand *string `json:"brand,omitempty"`
	// Product title
	Title *string `json:"title,omitempty"`
	// Product description
	Description *string `json:"description,omitempty"`
	// Is [labeling code](https://chestnyznak.ru/en) required for the product: <br>   - `false` — labeling code is not required <br>   -`true` — labeling code is required
	NeedKiz *bool `json:"needKiz,omitempty"`
	// Is there the confirmation from the seller that required [labeling code](https://chestnyznak.ru/en) is applied to the product:   - `true` — yes   - `false` — no  Whether labeling code is required is specified in the `needKiz` field
	KizMarked *bool `json:"kizMarked,omitempty"`
	// Photo array
	Photos []ContentV2GetCardsListPost200ResponseCardsInnerPhotosInner `json:"photos,omitempty"`
	// Video URL
	Video      *string                                                   `json:"video,omitempty"`
	Wholesale  *ContentV2GetCardsListPost200ResponseCardsInnerWholesale  `json:"wholesale,omitempty"`
	Dimensions *ContentV2GetCardsListPost200ResponseCardsInnerDimensions `json:"dimensions,omitempty"`
	// Characteristics
	Characteristics []ContentV2GetCardsListPost200ResponseCardsInnerCharacteristicsInner `json:"characteristics,omitempty"`
	// Product sizes
	Sizes []ContentV2GetCardsListPost200ResponseCardsInnerSizesInner `json:"sizes,omitempty"`
	// Tags
	Tags []ContentV2GetCardsListPost200ResponseCardsInnerTagsInner `json:"tags,omitempty"`
	// Creation date and time
	CreatedAt *string `json:"createdAt,omitempty"`
	// Update date and time
	UpdatedAt *string `json:"updatedAt,omitempty"`
}

ContentV2GetCardsListPost200ResponseCardsInner struct for ContentV2GetCardsListPost200ResponseCardsInner

func NewContentV2GetCardsListPost200ResponseCardsInner

func NewContentV2GetCardsListPost200ResponseCardsInner() *ContentV2GetCardsListPost200ResponseCardsInner

NewContentV2GetCardsListPost200ResponseCardsInner instantiates a new ContentV2GetCardsListPost200ResponseCardsInner 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

func NewContentV2GetCardsListPost200ResponseCardsInnerWithDefaults

func NewContentV2GetCardsListPost200ResponseCardsInnerWithDefaults() *ContentV2GetCardsListPost200ResponseCardsInner

NewContentV2GetCardsListPost200ResponseCardsInnerWithDefaults instantiates a new ContentV2GetCardsListPost200ResponseCardsInner 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

func (*ContentV2GetCardsListPost200ResponseCardsInner) GetBrand

GetBrand returns the Brand field value if set, zero value otherwise.

func (*ContentV2GetCardsListPost200ResponseCardsInner) GetBrandOk

GetBrandOk returns a tuple with the Brand field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ContentV2GetCardsListPost200ResponseCardsInner) GetCharacteristics

GetCharacteristics returns the Characteristics field value if set, zero value otherwise.

func (*ContentV2GetCardsListPost200ResponseCardsInner) GetCharacteristicsOk

GetCharacteristicsOk returns a tuple with the Characteristics field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ContentV2GetCardsListPost200ResponseCardsInner) GetCreatedAt

GetCreatedAt returns the CreatedAt field value if set, zero value otherwise.

func (*ContentV2GetCardsListPost200ResponseCardsInner) GetCreatedAtOk

GetCreatedAtOk returns a tuple with the CreatedAt field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ContentV2GetCardsListPost200ResponseCardsInner) GetDescription

GetDescription returns the Description field value if set, zero value otherwise.

func (*ContentV2GetCardsListPost200ResponseCardsInner) GetDescriptionOk

GetDescriptionOk returns a tuple with the Description field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ContentV2GetCardsListPost200ResponseCardsInner) GetDimensions

GetDimensions returns the Dimensions field value if set, zero value otherwise.

func (*ContentV2GetCardsListPost200ResponseCardsInner) GetDimensionsOk

GetDimensionsOk returns a tuple with the Dimensions field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ContentV2GetCardsListPost200ResponseCardsInner) GetImtID

GetImtID returns the ImtID field value if set, zero value otherwise.

func (*ContentV2GetCardsListPost200ResponseCardsInner) GetImtIDOk

GetImtIDOk returns a tuple with the ImtID field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ContentV2GetCardsListPost200ResponseCardsInner) GetKizMarked

GetKizMarked returns the KizMarked field value if set, zero value otherwise.

func (*ContentV2GetCardsListPost200ResponseCardsInner) GetKizMarkedOk

GetKizMarkedOk returns a tuple with the KizMarked field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ContentV2GetCardsListPost200ResponseCardsInner) GetNeedKiz

GetNeedKiz returns the NeedKiz field value if set, zero value otherwise.

func (*ContentV2GetCardsListPost200ResponseCardsInner) GetNeedKizOk

GetNeedKizOk returns a tuple with the NeedKiz field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ContentV2GetCardsListPost200ResponseCardsInner) GetNmID

GetNmID returns the NmID field value if set, zero value otherwise.

func (*ContentV2GetCardsListPost200ResponseCardsInner) GetNmIDOk

GetNmIDOk returns a tuple with the NmID field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ContentV2GetCardsListPost200ResponseCardsInner) GetNmUUID

GetNmUUID returns the NmUUID field value if set, zero value otherwise.

func (*ContentV2GetCardsListPost200ResponseCardsInner) GetNmUUIDOk

GetNmUUIDOk returns a tuple with the NmUUID field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ContentV2GetCardsListPost200ResponseCardsInner) GetPhotos

GetPhotos returns the Photos field value if set, zero value otherwise.

func (*ContentV2GetCardsListPost200ResponseCardsInner) GetPhotosOk

GetPhotosOk returns a tuple with the Photos field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ContentV2GetCardsListPost200ResponseCardsInner) GetSizes

GetSizes returns the Sizes field value if set, zero value otherwise.

func (*ContentV2GetCardsListPost200ResponseCardsInner) GetSizesOk

GetSizesOk returns a tuple with the Sizes field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ContentV2GetCardsListPost200ResponseCardsInner) GetSubjectID

GetSubjectID returns the SubjectID field value if set, zero value otherwise.

func (*ContentV2GetCardsListPost200ResponseCardsInner) GetSubjectIDOk

GetSubjectIDOk returns a tuple with the SubjectID field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ContentV2GetCardsListPost200ResponseCardsInner) GetSubjectName

GetSubjectName returns the SubjectName field value if set, zero value otherwise.

func (*ContentV2GetCardsListPost200ResponseCardsInner) GetSubjectNameOk

GetSubjectNameOk returns a tuple with the SubjectName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ContentV2GetCardsListPost200ResponseCardsInner) GetTags

GetTags returns the Tags field value if set, zero value otherwise.

func (*ContentV2GetCardsListPost200ResponseCardsInner) GetTagsOk

GetTagsOk returns a tuple with the Tags field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ContentV2GetCardsListPost200ResponseCardsInner) GetTitle

GetTitle returns the Title field value if set, zero value otherwise.

func (*ContentV2GetCardsListPost200ResponseCardsInner) GetTitleOk

GetTitleOk returns a tuple with the Title field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ContentV2GetCardsListPost200ResponseCardsInner) GetUpdatedAt

GetUpdatedAt returns the UpdatedAt field value if set, zero value otherwise.

func (*ContentV2GetCardsListPost200ResponseCardsInner) GetUpdatedAtOk

GetUpdatedAtOk returns a tuple with the UpdatedAt field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ContentV2GetCardsListPost200ResponseCardsInner) GetVendorCode

GetVendorCode returns the VendorCode field value if set, zero value otherwise.

func (*ContentV2GetCardsListPost200ResponseCardsInner) GetVendorCodeOk

GetVendorCodeOk returns a tuple with the VendorCode field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ContentV2GetCardsListPost200ResponseCardsInner) GetVideo

GetVideo returns the Video field value if set, zero value otherwise.

func (*ContentV2GetCardsListPost200ResponseCardsInner) GetVideoOk

GetVideoOk returns a tuple with the Video field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ContentV2GetCardsListPost200ResponseCardsInner) GetWholesale

GetWholesale returns the Wholesale field value if set, zero value otherwise.

func (*ContentV2GetCardsListPost200ResponseCardsInner) GetWholesaleOk

GetWholesaleOk returns a tuple with the Wholesale field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ContentV2GetCardsListPost200ResponseCardsInner) HasBrand

HasBrand returns a boolean if a field has been set.

func (*ContentV2GetCardsListPost200ResponseCardsInner) HasCharacteristics

func (o *ContentV2GetCardsListPost200ResponseCardsInner) HasCharacteristics() bool

HasCharacteristics returns a boolean if a field has been set.

func (*ContentV2GetCardsListPost200ResponseCardsInner) HasCreatedAt

HasCreatedAt returns a boolean if a field has been set.

func (*ContentV2GetCardsListPost200ResponseCardsInner) HasDescription

HasDescription returns a boolean if a field has been set.

func (*ContentV2GetCardsListPost200ResponseCardsInner) HasDimensions

HasDimensions returns a boolean if a field has been set.

func (*ContentV2GetCardsListPost200ResponseCardsInner) HasImtID

HasImtID returns a boolean if a field has been set.

func (*ContentV2GetCardsListPost200ResponseCardsInner) HasKizMarked

HasKizMarked returns a boolean if a field has been set.

func (*ContentV2GetCardsListPost200ResponseCardsInner) HasNeedKiz

HasNeedKiz returns a boolean if a field has been set.

func (*ContentV2GetCardsListPost200ResponseCardsInner) HasNmID

HasNmID returns a boolean if a field has been set.

func (*ContentV2GetCardsListPost200ResponseCardsInner) HasNmUUID

HasNmUUID returns a boolean if a field has been set.

func (*ContentV2GetCardsListPost200ResponseCardsInner) HasPhotos

HasPhotos returns a boolean if a field has been set.

func (*ContentV2GetCardsListPost200ResponseCardsInner) HasSizes

HasSizes returns a boolean if a field has been set.

func (*ContentV2GetCardsListPost200ResponseCardsInner) HasSubjectID

HasSubjectID returns a boolean if a field has been set.

func (*ContentV2GetCardsListPost200ResponseCardsInner) HasSubjectName

HasSubjectName returns a boolean if a field has been set.

func (*ContentV2GetCardsListPost200ResponseCardsInner) HasTags

HasTags returns a boolean if a field has been set.

func (*ContentV2GetCardsListPost200ResponseCardsInner) HasTitle

HasTitle returns a boolean if a field has been set.

func (*ContentV2GetCardsListPost200ResponseCardsInner) HasUpdatedAt

HasUpdatedAt returns a boolean if a field has been set.

func (*ContentV2GetCardsListPost200ResponseCardsInner) HasVendorCode

HasVendorCode returns a boolean if a field has been set.

func (*ContentV2GetCardsListPost200ResponseCardsInner) HasVideo

HasVideo returns a boolean if a field has been set.

func (*ContentV2GetCardsListPost200ResponseCardsInner) HasWholesale

HasWholesale returns a boolean if a field has been set.

func (ContentV2GetCardsListPost200ResponseCardsInner) MarshalJSON

func (*ContentV2GetCardsListPost200ResponseCardsInner) SetBrand

SetBrand gets a reference to the given string and assigns it to the Brand field.

func (*ContentV2GetCardsListPost200ResponseCardsInner) SetCharacteristics

SetCharacteristics gets a reference to the given []ContentV2GetCardsListPost200ResponseCardsInnerCharacteristicsInner and assigns it to the Characteristics field.

func (*ContentV2GetCardsListPost200ResponseCardsInner) SetCreatedAt

SetCreatedAt gets a reference to the given string and assigns it to the CreatedAt field.

func (*ContentV2GetCardsListPost200ResponseCardsInner) SetDescription

SetDescription gets a reference to the given string and assigns it to the Description field.

func (*ContentV2GetCardsListPost200ResponseCardsInner) SetDimensions

SetDimensions gets a reference to the given ContentV2GetCardsListPost200ResponseCardsInnerDimensions and assigns it to the Dimensions field.

func (*ContentV2GetCardsListPost200ResponseCardsInner) SetImtID

SetImtID gets a reference to the given int32 and assigns it to the ImtID field.

func (*ContentV2GetCardsListPost200ResponseCardsInner) SetKizMarked

SetKizMarked gets a reference to the given bool and assigns it to the KizMarked field.

func (*ContentV2GetCardsListPost200ResponseCardsInner) SetNeedKiz

SetNeedKiz gets a reference to the given bool and assigns it to the NeedKiz field.

func (*ContentV2GetCardsListPost200ResponseCardsInner) SetNmID

SetNmID gets a reference to the given int32 and assigns it to the NmID field.

func (*ContentV2GetCardsListPost200ResponseCardsInner) SetNmUUID

SetNmUUID gets a reference to the given string and assigns it to the NmUUID field.

func (*ContentV2GetCardsListPost200ResponseCardsInner) SetPhotos

SetPhotos gets a reference to the given []ContentV2GetCardsListPost200ResponseCardsInnerPhotosInner and assigns it to the Photos field.

func (*ContentV2GetCardsListPost200ResponseCardsInner) SetSizes

SetSizes gets a reference to the given []ContentV2GetCardsListPost200ResponseCardsInnerSizesInner and assigns it to the Sizes field.

func (*ContentV2GetCardsListPost200ResponseCardsInner) SetSubjectID

SetSubjectID gets a reference to the given int32 and assigns it to the SubjectID field.

func (*ContentV2GetCardsListPost200ResponseCardsInner) SetSubjectName

SetSubjectName gets a reference to the given string and assigns it to the SubjectName field.

func (*ContentV2GetCardsListPost200ResponseCardsInner) SetTags

SetTags gets a reference to the given []ContentV2GetCardsListPost200ResponseCardsInnerTagsInner and assigns it to the Tags field.

func (*ContentV2GetCardsListPost200ResponseCardsInner) SetTitle

SetTitle gets a reference to the given string and assigns it to the Title field.

func (*ContentV2GetCardsListPost200ResponseCardsInner) SetUpdatedAt

SetUpdatedAt gets a reference to the given string and assigns it to the UpdatedAt field.

func (*ContentV2GetCardsListPost200ResponseCardsInner) SetVendorCode

SetVendorCode gets a reference to the given string and assigns it to the VendorCode field.

func (*ContentV2GetCardsListPost200ResponseCardsInner) SetVideo

SetVideo gets a reference to the given string and assigns it to the Video field.

func (*ContentV2GetCardsListPost200ResponseCardsInner) SetWholesale

SetWholesale gets a reference to the given ContentV2GetCardsListPost200ResponseCardsInnerWholesale and assigns it to the Wholesale field.

func (ContentV2GetCardsListPost200ResponseCardsInner) ToMap

func (o ContentV2GetCardsListPost200ResponseCardsInner) ToMap() (map[string]interface{}, error)

type ContentV2GetCardsListPost200ResponseCardsInnerCharacteristicsInner

type ContentV2GetCardsListPost200ResponseCardsInnerCharacteristicsInner struct {
	// Characteristic ID
	Id *int32 `json:"id,omitempty"`
	// Characteristic name
	Name *string `json:"name,omitempty"`
	// Characteristic value
	Value interface{} `json:"value,omitempty"`
}

ContentV2GetCardsListPost200ResponseCardsInnerCharacteristicsInner struct for ContentV2GetCardsListPost200ResponseCardsInnerCharacteristicsInner

func NewContentV2GetCardsListPost200ResponseCardsInnerCharacteristicsInner

func NewContentV2GetCardsListPost200ResponseCardsInnerCharacteristicsInner() *ContentV2GetCardsListPost200ResponseCardsInnerCharacteristicsInner

NewContentV2GetCardsListPost200ResponseCardsInnerCharacteristicsInner instantiates a new ContentV2GetCardsListPost200ResponseCardsInnerCharacteristicsInner 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

func NewContentV2GetCardsListPost200ResponseCardsInnerCharacteristicsInnerWithDefaults

func NewContentV2GetCardsListPost200ResponseCardsInnerCharacteristicsInnerWithDefaults() *ContentV2GetCardsListPost200ResponseCardsInnerCharacteristicsInner

NewContentV2GetCardsListPost200ResponseCardsInnerCharacteristicsInnerWithDefaults instantiates a new ContentV2GetCardsListPost200ResponseCardsInnerCharacteristicsInner 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

func (*ContentV2GetCardsListPost200ResponseCardsInnerCharacteristicsInner) GetId

GetId returns the Id field value if set, zero value otherwise.

func (*ContentV2GetCardsListPost200ResponseCardsInnerCharacteristicsInner) GetIdOk

GetIdOk returns a tuple with the Id field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ContentV2GetCardsListPost200ResponseCardsInnerCharacteristicsInner) GetName

GetName returns the Name field value if set, zero value otherwise.

func (*ContentV2GetCardsListPost200ResponseCardsInnerCharacteristicsInner) GetNameOk

GetNameOk returns a tuple with the Name field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ContentV2GetCardsListPost200ResponseCardsInnerCharacteristicsInner) GetValue

GetValue returns the Value field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ContentV2GetCardsListPost200ResponseCardsInnerCharacteristicsInner) GetValueOk

GetValueOk returns a tuple with the Value field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*ContentV2GetCardsListPost200ResponseCardsInnerCharacteristicsInner) HasId

HasId returns a boolean if a field has been set.

func (*ContentV2GetCardsListPost200ResponseCardsInnerCharacteristicsInner) HasName

HasName returns a boolean if a field has been set.

func (*ContentV2GetCardsListPost200ResponseCardsInnerCharacteristicsInner) HasValue

HasValue returns a boolean if a field has been set.

func (ContentV2GetCardsListPost200ResponseCardsInnerCharacteristicsInner) MarshalJSON

func (*ContentV2GetCardsListPost200ResponseCardsInnerCharacteristicsInner) SetId

SetId gets a reference to the given int32 and assigns it to the Id field.

func (*ContentV2GetCardsListPost200ResponseCardsInnerCharacteristicsInner) SetName

SetName gets a reference to the given string and assigns it to the Name field.

func (*ContentV2GetCardsListPost200ResponseCardsInnerCharacteristicsInner) SetValue

SetValue gets a reference to the given interface{} and assigns it to the Value field.

func (ContentV2GetCardsListPost200ResponseCardsInnerCharacteristicsInner) ToMap

type ContentV2GetCardsListPost200ResponseCardsInnerDimensions

type ContentV2GetCardsListPost200ResponseCardsInnerDimensions struct {
	// Length, cm
	Length *int32 `json:"length,omitempty"`
	// Width, cm
	Width *int32 `json:"width,omitempty"`
	// Height, cm
	Height *int32 `json:"height,omitempty"`
	// Weight, kg<br>Number of decimal places <=3
	WeightBrutto *float32 `json:"weightBrutto,omitempty"`
	// Potential inaccuracy of product dimensions:  - `true` — not detected. `\"isValid\": true` does not guarantee that the dimensions are correct. In some cases (for example, when creating a new product category), `\"isValid\": true` will be returned for any values except zero.  - `false` — the specified dimensions significantly differ from the average for the category (subject). it is recommended to double-check whether the product dimensions in the packaging are correctly specified in `centimeters`. The functionality of the product card, including the calculation of logistics and storage, will not be limited. Logistics and storage will continue to be calculated based on the current dimensions. Also, `\"isValid\": false` is returned when there are missing values or any dimension is zero.
	IsValid *bool `json:"isValid,omitempty"`
}

ContentV2GetCardsListPost200ResponseCardsInnerDimensions Dimensions and weight of packed product in cm and kg

func NewContentV2GetCardsListPost200ResponseCardsInnerDimensions

func NewContentV2GetCardsListPost200ResponseCardsInnerDimensions() *ContentV2GetCardsListPost200ResponseCardsInnerDimensions

NewContentV2GetCardsListPost200ResponseCardsInnerDimensions instantiates a new ContentV2GetCardsListPost200ResponseCardsInnerDimensions 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

func NewContentV2GetCardsListPost200ResponseCardsInnerDimensionsWithDefaults

func NewContentV2GetCardsListPost200ResponseCardsInnerDimensionsWithDefaults() *ContentV2GetCardsListPost200ResponseCardsInnerDimensions

NewContentV2GetCardsListPost200ResponseCardsInnerDimensionsWithDefaults instantiates a new ContentV2GetCardsListPost200ResponseCardsInnerDimensions 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

func (*ContentV2GetCardsListPost200ResponseCardsInnerDimensions) GetHeight

GetHeight returns the Height field value if set, zero value otherwise.

func (*ContentV2GetCardsListPost200ResponseCardsInnerDimensions) GetHeightOk

GetHeightOk returns a tuple with the Height field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ContentV2GetCardsListPost200ResponseCardsInnerDimensions) GetIsValid

GetIsValid returns the IsValid field value if set, zero value otherwise.

func (*ContentV2GetCardsListPost200ResponseCardsInnerDimensions) GetIsValidOk

GetIsValidOk returns a tuple with the IsValid field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ContentV2GetCardsListPost200ResponseCardsInnerDimensions) GetLength

GetLength returns the Length field value if set, zero value otherwise.

func (*ContentV2GetCardsListPost200ResponseCardsInnerDimensions) GetLengthOk

GetLengthOk returns a tuple with the Length field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ContentV2GetCardsListPost200ResponseCardsInnerDimensions) GetWeightBrutto

GetWeightBrutto returns the WeightBrutto field value if set, zero value otherwise.

func (*ContentV2GetCardsListPost200ResponseCardsInnerDimensions) GetWeightBruttoOk

GetWeightBruttoOk returns a tuple with the WeightBrutto field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ContentV2GetCardsListPost200ResponseCardsInnerDimensions) GetWidth

GetWidth returns the Width field value if set, zero value otherwise.

func (*ContentV2GetCardsListPost200ResponseCardsInnerDimensions) GetWidthOk

GetWidthOk returns a tuple with the Width field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ContentV2GetCardsListPost200ResponseCardsInnerDimensions) HasHeight

HasHeight returns a boolean if a field has been set.

func (*ContentV2GetCardsListPost200ResponseCardsInnerDimensions) HasIsValid

HasIsValid returns a boolean if a field has been set.

func (*ContentV2GetCardsListPost200ResponseCardsInnerDimensions) HasLength

HasLength returns a boolean if a field has been set.

func (*ContentV2GetCardsListPost200ResponseCardsInnerDimensions) HasWeightBrutto

HasWeightBrutto returns a boolean if a field has been set.

func (*ContentV2GetCardsListPost200ResponseCardsInnerDimensions) HasWidth

HasWidth returns a boolean if a field has been set.

func (ContentV2GetCardsListPost200ResponseCardsInnerDimensions) MarshalJSON

func (*ContentV2GetCardsListPost200ResponseCardsInnerDimensions) SetHeight

SetHeight gets a reference to the given int32 and assigns it to the Height field.

func (*ContentV2GetCardsListPost200ResponseCardsInnerDimensions) SetIsValid

SetIsValid gets a reference to the given bool and assigns it to the IsValid field.

func (*ContentV2GetCardsListPost200ResponseCardsInnerDimensions) SetLength

SetLength gets a reference to the given int32 and assigns it to the Length field.

func (*ContentV2GetCardsListPost200ResponseCardsInnerDimensions) SetWeightBrutto

SetWeightBrutto gets a reference to the given float32 and assigns it to the WeightBrutto field.

func (*ContentV2GetCardsListPost200ResponseCardsInnerDimensions) SetWidth

SetWidth gets a reference to the given int32 and assigns it to the Width field.

func (ContentV2GetCardsListPost200ResponseCardsInnerDimensions) ToMap

type ContentV2GetCardsListPost200ResponseCardsInnerPhotosInner

type ContentV2GetCardsListPost200ResponseCardsInnerPhotosInner struct {
	// URL of `900x1200` photo
	Big *string `json:"big,omitempty"`
	// URL of `248x328` photo
	C246x328 *string `json:"c246x328,omitempty"`
	// URL of `516x688` photo
	C516x688 *string `json:"c516x688,omitempty"`
	// URL of `600x600` photo
	Square *string `json:"square,omitempty"`
	// URL of `75x100` photo
	Tm *string `json:"tm,omitempty"`
}

ContentV2GetCardsListPost200ResponseCardsInnerPhotosInner struct for ContentV2GetCardsListPost200ResponseCardsInnerPhotosInner

func NewContentV2GetCardsListPost200ResponseCardsInnerPhotosInner

func NewContentV2GetCardsListPost200ResponseCardsInnerPhotosInner() *ContentV2GetCardsListPost200ResponseCardsInnerPhotosInner

NewContentV2GetCardsListPost200ResponseCardsInnerPhotosInner instantiates a new ContentV2GetCardsListPost200ResponseCardsInnerPhotosInner 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

func NewContentV2GetCardsListPost200ResponseCardsInnerPhotosInnerWithDefaults

func NewContentV2GetCardsListPost200ResponseCardsInnerPhotosInnerWithDefaults() *ContentV2GetCardsListPost200ResponseCardsInnerPhotosInner

NewContentV2GetCardsListPost200ResponseCardsInnerPhotosInnerWithDefaults instantiates a new ContentV2GetCardsListPost200ResponseCardsInnerPhotosInner 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

func (*ContentV2GetCardsListPost200ResponseCardsInnerPhotosInner) GetBig

GetBig returns the Big field value if set, zero value otherwise.

func (*ContentV2GetCardsListPost200ResponseCardsInnerPhotosInner) GetBigOk

GetBigOk returns a tuple with the Big field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ContentV2GetCardsListPost200ResponseCardsInnerPhotosInner) GetC246x328

GetC246x328 returns the C246x328 field value if set, zero value otherwise.

func (*ContentV2GetCardsListPost200ResponseCardsInnerPhotosInner) GetC246x328Ok

GetC246x328Ok returns a tuple with the C246x328 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ContentV2GetCardsListPost200ResponseCardsInnerPhotosInner) GetC516x688

GetC516x688 returns the C516x688 field value if set, zero value otherwise.

func (*ContentV2GetCardsListPost200ResponseCardsInnerPhotosInner) GetC516x688Ok

GetC516x688Ok returns a tuple with the C516x688 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ContentV2GetCardsListPost200ResponseCardsInnerPhotosInner) GetSquare

GetSquare returns the Square field value if set, zero value otherwise.

func (*ContentV2GetCardsListPost200ResponseCardsInnerPhotosInner) GetSquareOk

GetSquareOk returns a tuple with the Square field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ContentV2GetCardsListPost200ResponseCardsInnerPhotosInner) GetTm

GetTm returns the Tm field value if set, zero value otherwise.

func (*ContentV2GetCardsListPost200ResponseCardsInnerPhotosInner) GetTmOk

GetTmOk returns a tuple with the Tm field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ContentV2GetCardsListPost200ResponseCardsInnerPhotosInner) HasBig

HasBig returns a boolean if a field has been set.

func (*ContentV2GetCardsListPost200ResponseCardsInnerPhotosInner) HasC246x328

HasC246x328 returns a boolean if a field has been set.

func (*ContentV2GetCardsListPost200ResponseCardsInnerPhotosInner) HasC516x688

HasC516x688 returns a boolean if a field has been set.

func (*ContentV2GetCardsListPost200ResponseCardsInnerPhotosInner) HasSquare

HasSquare returns a boolean if a field has been set.

func (*ContentV2GetCardsListPost200ResponseCardsInnerPhotosInner) HasTm

HasTm returns a boolean if a field has been set.

func (ContentV2GetCardsListPost200ResponseCardsInnerPhotosInner) MarshalJSON

func (*ContentV2GetCardsListPost200ResponseCardsInnerPhotosInner) SetBig

SetBig gets a reference to the given string and assigns it to the Big field.

func (*ContentV2GetCardsListPost200ResponseCardsInnerPhotosInner) SetC246x328

SetC246x328 gets a reference to the given string and assigns it to the C246x328 field.

func (*ContentV2GetCardsListPost200ResponseCardsInnerPhotosInner) SetC516x688

SetC516x688 gets a reference to the given string and assigns it to the C516x688 field.

func (*ContentV2GetCardsListPost200ResponseCardsInnerPhotosInner) SetSquare

SetSquare gets a reference to the given string and assigns it to the Square field.

func (*ContentV2GetCardsListPost200ResponseCardsInnerPhotosInner) SetTm

SetTm gets a reference to the given string and assigns it to the Tm field.

func (ContentV2GetCardsListPost200ResponseCardsInnerPhotosInner) ToMap

type ContentV2GetCardsListPost200ResponseCardsInnerSizesInner

type ContentV2GetCardsListPost200ResponseCardsInnerSizesInner struct {
	// Size ID
	ChrtID *int32 `json:"chrtID,omitempty"`
	// Size (for example, S or 42)
	TechSize *string `json:"techSize,omitempty"`
	// Russian size
	WbSize *string `json:"wbSize,omitempty"`
	// SKU
	Skus []string `json:"skus,omitempty"`
}

ContentV2GetCardsListPost200ResponseCardsInnerSizesInner struct for ContentV2GetCardsListPost200ResponseCardsInnerSizesInner

func NewContentV2GetCardsListPost200ResponseCardsInnerSizesInner

func NewContentV2GetCardsListPost200ResponseCardsInnerSizesInner() *ContentV2GetCardsListPost200ResponseCardsInnerSizesInner

NewContentV2GetCardsListPost200ResponseCardsInnerSizesInner instantiates a new ContentV2GetCardsListPost200ResponseCardsInnerSizesInner 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

func NewContentV2GetCardsListPost200ResponseCardsInnerSizesInnerWithDefaults

func NewContentV2GetCardsListPost200ResponseCardsInnerSizesInnerWithDefaults() *ContentV2GetCardsListPost200ResponseCardsInnerSizesInner

NewContentV2GetCardsListPost200ResponseCardsInnerSizesInnerWithDefaults instantiates a new ContentV2GetCardsListPost200ResponseCardsInnerSizesInner 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

func (*ContentV2GetCardsListPost200ResponseCardsInnerSizesInner) GetChrtID

GetChrtID returns the ChrtID field value if set, zero value otherwise.

func (*ContentV2GetCardsListPost200ResponseCardsInnerSizesInner) GetChrtIDOk

GetChrtIDOk returns a tuple with the ChrtID field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ContentV2GetCardsListPost200ResponseCardsInnerSizesInner) GetSkus

GetSkus returns the Skus field value if set, zero value otherwise.

func (*ContentV2GetCardsListPost200ResponseCardsInnerSizesInner) GetSkusOk

GetSkusOk returns a tuple with the Skus field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ContentV2GetCardsListPost200ResponseCardsInnerSizesInner) GetTechSize

GetTechSize returns the TechSize field value if set, zero value otherwise.

func (*ContentV2GetCardsListPost200ResponseCardsInnerSizesInner) GetTechSizeOk

GetTechSizeOk returns a tuple with the TechSize field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ContentV2GetCardsListPost200ResponseCardsInnerSizesInner) GetWbSize

GetWbSize returns the WbSize field value if set, zero value otherwise.

func (*ContentV2GetCardsListPost200ResponseCardsInnerSizesInner) GetWbSizeOk

GetWbSizeOk returns a tuple with the WbSize field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ContentV2GetCardsListPost200ResponseCardsInnerSizesInner) HasChrtID

HasChrtID returns a boolean if a field has been set.

func (*ContentV2GetCardsListPost200ResponseCardsInnerSizesInner) HasSkus

HasSkus returns a boolean if a field has been set.

func (*ContentV2GetCardsListPost200ResponseCardsInnerSizesInner) HasTechSize

HasTechSize returns a boolean if a field has been set.

func (*ContentV2GetCardsListPost200ResponseCardsInnerSizesInner) HasWbSize

HasWbSize returns a boolean if a field has been set.

func (ContentV2GetCardsListPost200ResponseCardsInnerSizesInner) MarshalJSON

func (*ContentV2GetCardsListPost200ResponseCardsInnerSizesInner) SetChrtID

SetChrtID gets a reference to the given int32 and assigns it to the ChrtID field.

func (*ContentV2GetCardsListPost200ResponseCardsInnerSizesInner) SetSkus

SetSkus gets a reference to the given []string and assigns it to the Skus field.

func (*ContentV2GetCardsListPost200ResponseCardsInnerSizesInner) SetTechSize

SetTechSize gets a reference to the given string and assigns it to the TechSize field.

func (*ContentV2GetCardsListPost200ResponseCardsInnerSizesInner) SetWbSize

SetWbSize gets a reference to the given string and assigns it to the WbSize field.

func (ContentV2GetCardsListPost200ResponseCardsInnerSizesInner) ToMap

type ContentV2GetCardsListPost200ResponseCardsInnerTagsInner

type ContentV2GetCardsListPost200ResponseCardsInnerTagsInner struct {
	// Tag ID
	Id *int32 `json:"id,omitempty"`
	// Tag name
	Name *string `json:"name,omitempty"`
	// Tag color:   - `D1CFD7` — grey   - `FEE0E0` — red   - `ECDAFF` — purple   - `E4EAFF` — blue   - `DEF1DD` — green   - `FFECC7` — yellow
	Color *string `json:"color,omitempty"`
}

ContentV2GetCardsListPost200ResponseCardsInnerTagsInner struct for ContentV2GetCardsListPost200ResponseCardsInnerTagsInner

func NewContentV2GetCardsListPost200ResponseCardsInnerTagsInner

func NewContentV2GetCardsListPost200ResponseCardsInnerTagsInner() *ContentV2GetCardsListPost200ResponseCardsInnerTagsInner

NewContentV2GetCardsListPost200ResponseCardsInnerTagsInner instantiates a new ContentV2GetCardsListPost200ResponseCardsInnerTagsInner 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

func NewContentV2GetCardsListPost200ResponseCardsInnerTagsInnerWithDefaults

func NewContentV2GetCardsListPost200ResponseCardsInnerTagsInnerWithDefaults() *ContentV2GetCardsListPost200ResponseCardsInnerTagsInner

NewContentV2GetCardsListPost200ResponseCardsInnerTagsInnerWithDefaults instantiates a new ContentV2GetCardsListPost200ResponseCardsInnerTagsInner 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

func (*ContentV2GetCardsListPost200ResponseCardsInnerTagsInner) GetColor

GetColor returns the Color field value if set, zero value otherwise.

func (*ContentV2GetCardsListPost200ResponseCardsInnerTagsInner) GetColorOk

GetColorOk returns a tuple with the Color field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ContentV2GetCardsListPost200ResponseCardsInnerTagsInner) GetId

GetId returns the Id field value if set, zero value otherwise.

func (*ContentV2GetCardsListPost200ResponseCardsInnerTagsInner) GetIdOk

GetIdOk returns a tuple with the Id field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ContentV2GetCardsListPost200ResponseCardsInnerTagsInner) GetName

GetName returns the Name field value if set, zero value otherwise.

func (*ContentV2GetCardsListPost200ResponseCardsInnerTagsInner) GetNameOk

GetNameOk returns a tuple with the Name field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ContentV2GetCardsListPost200ResponseCardsInnerTagsInner) HasColor

HasColor returns a boolean if a field has been set.

func (*ContentV2GetCardsListPost200ResponseCardsInnerTagsInner) HasId

HasId returns a boolean if a field has been set.

func (*ContentV2GetCardsListPost200ResponseCardsInnerTagsInner) HasName

HasName returns a boolean if a field has been set.

func (ContentV2GetCardsListPost200ResponseCardsInnerTagsInner) MarshalJSON

func (*ContentV2GetCardsListPost200ResponseCardsInnerTagsInner) SetColor

SetColor gets a reference to the given string and assigns it to the Color field.

func (*ContentV2GetCardsListPost200ResponseCardsInnerTagsInner) SetId

SetId gets a reference to the given int32 and assigns it to the Id field.

func (*ContentV2GetCardsListPost200ResponseCardsInnerTagsInner) SetName

SetName gets a reference to the given string and assigns it to the Name field.

func (ContentV2GetCardsListPost200ResponseCardsInnerTagsInner) ToMap

type ContentV2GetCardsListPost200ResponseCardsInnerWholesale

type ContentV2GetCardsListPost200ResponseCardsInnerWholesale struct {
	// Is the product card intended for wholesale
	Enabled *bool `json:"enabled,omitempty"`
	// Number of product units per package
	Quantum *float32 `json:"quantum,omitempty"`
}

ContentV2GetCardsListPost200ResponseCardsInnerWholesale Wholesale

func NewContentV2GetCardsListPost200ResponseCardsInnerWholesale

func NewContentV2GetCardsListPost200ResponseCardsInnerWholesale() *ContentV2GetCardsListPost200ResponseCardsInnerWholesale

NewContentV2GetCardsListPost200ResponseCardsInnerWholesale instantiates a new ContentV2GetCardsListPost200ResponseCardsInnerWholesale 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

func NewContentV2GetCardsListPost200ResponseCardsInnerWholesaleWithDefaults

func NewContentV2GetCardsListPost200ResponseCardsInnerWholesaleWithDefaults() *ContentV2GetCardsListPost200ResponseCardsInnerWholesale

NewContentV2GetCardsListPost200ResponseCardsInnerWholesaleWithDefaults instantiates a new ContentV2GetCardsListPost200ResponseCardsInnerWholesale 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

func (*ContentV2GetCardsListPost200ResponseCardsInnerWholesale) GetEnabled

GetEnabled returns the Enabled field value if set, zero value otherwise.

func (*ContentV2GetCardsListPost200ResponseCardsInnerWholesale) GetEnabledOk

GetEnabledOk returns a tuple with the Enabled field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ContentV2GetCardsListPost200ResponseCardsInnerWholesale) GetQuantum

GetQuantum returns the Quantum field value if set, zero value otherwise.

func (*ContentV2GetCardsListPost200ResponseCardsInnerWholesale) GetQuantumOk

GetQuantumOk returns a tuple with the Quantum field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ContentV2GetCardsListPost200ResponseCardsInnerWholesale) HasEnabled

HasEnabled returns a boolean if a field has been set.

func (*ContentV2GetCardsListPost200ResponseCardsInnerWholesale) HasQuantum

HasQuantum returns a boolean if a field has been set.

func (ContentV2GetCardsListPost200ResponseCardsInnerWholesale) MarshalJSON

func (*ContentV2GetCardsListPost200ResponseCardsInnerWholesale) SetEnabled

SetEnabled gets a reference to the given bool and assigns it to the Enabled field.

func (*ContentV2GetCardsListPost200ResponseCardsInnerWholesale) SetQuantum

SetQuantum gets a reference to the given float32 and assigns it to the Quantum field.

func (ContentV2GetCardsListPost200ResponseCardsInnerWholesale) ToMap

type ContentV2GetCardsListPost200ResponseCursor

type ContentV2GetCardsListPost200ResponseCursor struct {
	// Date and time for next card page
	UpdatedAt *string `json:"updatedAt,omitempty"`
	// WB article for next card page
	NmID *int32 `json:"nmID,omitempty"`
	// Number of cards
	Total *int32 `json:"total,omitempty"`
}

ContentV2GetCardsListPost200ResponseCursor Paginator

func NewContentV2GetCardsListPost200ResponseCursor

func NewContentV2GetCardsListPost200ResponseCursor() *ContentV2GetCardsListPost200ResponseCursor

NewContentV2GetCardsListPost200ResponseCursor instantiates a new ContentV2GetCardsListPost200ResponseCursor 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

func NewContentV2GetCardsListPost200ResponseCursorWithDefaults

func NewContentV2GetCardsListPost200ResponseCursorWithDefaults() *ContentV2GetCardsListPost200ResponseCursor

NewContentV2GetCardsListPost200ResponseCursorWithDefaults instantiates a new ContentV2GetCardsListPost200ResponseCursor 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

func (*ContentV2GetCardsListPost200ResponseCursor) GetNmID

GetNmID returns the NmID field value if set, zero value otherwise.

func (*ContentV2GetCardsListPost200ResponseCursor) GetNmIDOk

GetNmIDOk returns a tuple with the NmID field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ContentV2GetCardsListPost200ResponseCursor) GetTotal

GetTotal returns the Total field value if set, zero value otherwise.

func (*ContentV2GetCardsListPost200ResponseCursor) GetTotalOk

GetTotalOk returns a tuple with the Total field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ContentV2GetCardsListPost200ResponseCursor) GetUpdatedAt

GetUpdatedAt returns the UpdatedAt field value if set, zero value otherwise.

func (*ContentV2GetCardsListPost200ResponseCursor) GetUpdatedAtOk

func (o *ContentV2GetCardsListPost200ResponseCursor) GetUpdatedAtOk() (*string, bool)

GetUpdatedAtOk returns a tuple with the UpdatedAt field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ContentV2GetCardsListPost200ResponseCursor) HasNmID

HasNmID returns a boolean if a field has been set.

func (*ContentV2GetCardsListPost200ResponseCursor) HasTotal

HasTotal returns a boolean if a field has been set.

func (*ContentV2GetCardsListPost200ResponseCursor) HasUpdatedAt

HasUpdatedAt returns a boolean if a field has been set.

func (ContentV2GetCardsListPost200ResponseCursor) MarshalJSON

func (*ContentV2GetCardsListPost200ResponseCursor) SetNmID

SetNmID gets a reference to the given int32 and assigns it to the NmID field.

func (*ContentV2GetCardsListPost200ResponseCursor) SetTotal

SetTotal gets a reference to the given int32 and assigns it to the Total field.

func (*ContentV2GetCardsListPost200ResponseCursor) SetUpdatedAt

SetUpdatedAt gets a reference to the given string and assigns it to the UpdatedAt field.

func (ContentV2GetCardsListPost200ResponseCursor) ToMap

func (o ContentV2GetCardsListPost200ResponseCursor) ToMap() (map[string]interface{}, error)

type ContentV2GetCardsListPostRequest

type ContentV2GetCardsListPostRequest struct {
	Settings *ContentV2GetCardsListPostRequestSettings `json:"settings,omitempty"`
}

ContentV2GetCardsListPostRequest struct for ContentV2GetCardsListPostRequest

func NewContentV2GetCardsListPostRequest

func NewContentV2GetCardsListPostRequest() *ContentV2GetCardsListPostRequest

NewContentV2GetCardsListPostRequest instantiates a new ContentV2GetCardsListPostRequest 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

func NewContentV2GetCardsListPostRequestWithDefaults

func NewContentV2GetCardsListPostRequestWithDefaults() *ContentV2GetCardsListPostRequest

NewContentV2GetCardsListPostRequestWithDefaults instantiates a new ContentV2GetCardsListPostRequest 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

func (*ContentV2GetCardsListPostRequest) GetSettings

GetSettings returns the Settings field value if set, zero value otherwise.

func (*ContentV2GetCardsListPostRequest) GetSettingsOk

GetSettingsOk returns a tuple with the Settings field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ContentV2GetCardsListPostRequest) HasSettings

func (o *ContentV2GetCardsListPostRequest) HasSettings() bool

HasSettings returns a boolean if a field has been set.

func (ContentV2GetCardsListPostRequest) MarshalJSON

func (o ContentV2GetCardsListPostRequest) MarshalJSON() ([]byte, error)

func (*ContentV2GetCardsListPostRequest) SetSettings

SetSettings gets a reference to the given ContentV2GetCardsListPostRequestSettings and assigns it to the Settings field.

func (ContentV2GetCardsListPostRequest) ToMap

func (o ContentV2GetCardsListPostRequest) ToMap() (map[string]interface{}, error)

type ContentV2GetCardsListPostRequestSettings

type ContentV2GetCardsListPostRequestSettings struct {
	Sort   *ContentV2GetCardsListPostRequestSettingsSort   `json:"sort,omitempty"`
	Filter *ContentV2GetCardsListPostRequestSettingsFilter `json:"filter,omitempty"`
	Cursor *ContentV2GetCardsListPostRequestSettingsCursor `json:"cursor,omitempty"`
}

ContentV2GetCardsListPostRequestSettings Settings

func NewContentV2GetCardsListPostRequestSettings

func NewContentV2GetCardsListPostRequestSettings() *ContentV2GetCardsListPostRequestSettings

NewContentV2GetCardsListPostRequestSettings instantiates a new ContentV2GetCardsListPostRequestSettings 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

func NewContentV2GetCardsListPostRequestSettingsWithDefaults

func NewContentV2GetCardsListPostRequestSettingsWithDefaults() *ContentV2GetCardsListPostRequestSettings

NewContentV2GetCardsListPostRequestSettingsWithDefaults instantiates a new ContentV2GetCardsListPostRequestSettings 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

func (*ContentV2GetCardsListPostRequestSettings) GetCursor

GetCursor returns the Cursor field value if set, zero value otherwise.

func (*ContentV2GetCardsListPostRequestSettings) GetCursorOk

GetCursorOk returns a tuple with the Cursor field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ContentV2GetCardsListPostRequestSettings) GetFilter

GetFilter returns the Filter field value if set, zero value otherwise.

func (*ContentV2GetCardsListPostRequestSettings) GetFilterOk

GetFilterOk returns a tuple with the Filter field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ContentV2GetCardsListPostRequestSettings) GetSort

GetSort returns the Sort field value if set, zero value otherwise.

func (*ContentV2GetCardsListPostRequestSettings) GetSortOk

GetSortOk returns a tuple with the Sort field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ContentV2GetCardsListPostRequestSettings) HasCursor

HasCursor returns a boolean if a field has been set.

func (*ContentV2GetCardsListPostRequestSettings) HasFilter

HasFilter returns a boolean if a field has been set.

func (*ContentV2GetCardsListPostRequestSettings) HasSort

HasSort returns a boolean if a field has been set.

func (ContentV2GetCardsListPostRequestSettings) MarshalJSON

func (*ContentV2GetCardsListPostRequestSettings) SetCursor

SetCursor gets a reference to the given ContentV2GetCardsListPostRequestSettingsCursor and assigns it to the Cursor field.

func (*ContentV2GetCardsListPostRequestSettings) SetFilter

SetFilter gets a reference to the given ContentV2GetCardsListPostRequestSettingsFilter and assigns it to the Filter field.

func (*ContentV2GetCardsListPostRequestSettings) SetSort

SetSort gets a reference to the given ContentV2GetCardsListPostRequestSettingsSort and assigns it to the Sort field.

func (ContentV2GetCardsListPostRequestSettings) ToMap

func (o ContentV2GetCardsListPostRequestSettings) ToMap() (map[string]interface{}, error)

type ContentV2GetCardsListPostRequestSettingsCursor

type ContentV2GetCardsListPostRequestSettingsCursor struct {
	// Number of cards in response
	Limit *int32 `json:"limit,omitempty"`
	// Update date and time
	UpdatedAt NullableString `json:"updatedAt,omitempty"`
	// WB article for next card page
	NmID *int32 `json:"nmID,omitempty"`
}

ContentV2GetCardsListPostRequestSettingsCursor Cursor

func NewContentV2GetCardsListPostRequestSettingsCursor

func NewContentV2GetCardsListPostRequestSettingsCursor() *ContentV2GetCardsListPostRequestSettingsCursor

NewContentV2GetCardsListPostRequestSettingsCursor instantiates a new ContentV2GetCardsListPostRequestSettingsCursor 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

func NewContentV2GetCardsListPostRequestSettingsCursorWithDefaults

func NewContentV2GetCardsListPostRequestSettingsCursorWithDefaults() *ContentV2GetCardsListPostRequestSettingsCursor

NewContentV2GetCardsListPostRequestSettingsCursorWithDefaults instantiates a new ContentV2GetCardsListPostRequestSettingsCursor 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

func (*ContentV2GetCardsListPostRequestSettingsCursor) GetLimit

GetLimit returns the Limit field value if set, zero value otherwise.

func (*ContentV2GetCardsListPostRequestSettingsCursor) GetLimitOk

GetLimitOk returns a tuple with the Limit field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ContentV2GetCardsListPostRequestSettingsCursor) GetNmID

GetNmID returns the NmID field value if set, zero value otherwise.

func (*ContentV2GetCardsListPostRequestSettingsCursor) GetNmIDOk

GetNmIDOk returns a tuple with the NmID field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ContentV2GetCardsListPostRequestSettingsCursor) GetUpdatedAt

GetUpdatedAt returns the UpdatedAt field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ContentV2GetCardsListPostRequestSettingsCursor) GetUpdatedAtOk

GetUpdatedAtOk returns a tuple with the UpdatedAt field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*ContentV2GetCardsListPostRequestSettingsCursor) HasLimit

HasLimit returns a boolean if a field has been set.

func (*ContentV2GetCardsListPostRequestSettingsCursor) HasNmID

HasNmID returns a boolean if a field has been set.

func (*ContentV2GetCardsListPostRequestSettingsCursor) HasUpdatedAt

HasUpdatedAt returns a boolean if a field has been set.

func (ContentV2GetCardsListPostRequestSettingsCursor) MarshalJSON

func (*ContentV2GetCardsListPostRequestSettingsCursor) SetLimit

SetLimit gets a reference to the given int32 and assigns it to the Limit field.

func (*ContentV2GetCardsListPostRequestSettingsCursor) SetNmID

SetNmID gets a reference to the given int32 and assigns it to the NmID field.

func (*ContentV2GetCardsListPostRequestSettingsCursor) SetUpdatedAt

SetUpdatedAt gets a reference to the given NullableString and assigns it to the UpdatedAt field.

func (*ContentV2GetCardsListPostRequestSettingsCursor) SetUpdatedAtNil

SetUpdatedAtNil sets the value for UpdatedAt to be an explicit nil

func (ContentV2GetCardsListPostRequestSettingsCursor) ToMap

func (o ContentV2GetCardsListPostRequestSettingsCursor) ToMap() (map[string]interface{}, error)

func (*ContentV2GetCardsListPostRequestSettingsCursor) UnsetUpdatedAt

UnsetUpdatedAt ensures that no value is present for UpdatedAt, not even an explicit nil

type ContentV2GetCardsListPostRequestSettingsFilter

type ContentV2GetCardsListPostRequestSettingsFilter struct {
	// Photo:   * `0` — only cards without photos   * `1` — only cards with photos   * `-1` — all cards
	WithPhoto *int32 `json:"withPhoto,omitempty"`
	// Seller's article, Wildberries article or SKU search
	TextSearch *string `json:"textSearch,omitempty"`
	// Tags ID search
	TagIDs []int32 `json:"tagIDs,omitempty"`
	// Category: true — permitted, false — forbidden
	AllowedCategoriesOnly *bool `json:"allowedCategoriesOnly,omitempty"`
	// Subject ID search
	ObjectIDs []int32 `json:"objectIDs,omitempty"`
	// Brand search
	Brands []string `json:"brands,omitempty"`
	// Merged product cards ID search
	ImtID *int32 `json:"imtID,omitempty"`
}

ContentV2GetCardsListPostRequestSettingsFilter Filters

func NewContentV2GetCardsListPostRequestSettingsFilter

func NewContentV2GetCardsListPostRequestSettingsFilter() *ContentV2GetCardsListPostRequestSettingsFilter

NewContentV2GetCardsListPostRequestSettingsFilter instantiates a new ContentV2GetCardsListPostRequestSettingsFilter 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

func NewContentV2GetCardsListPostRequestSettingsFilterWithDefaults

func NewContentV2GetCardsListPostRequestSettingsFilterWithDefaults() *ContentV2GetCardsListPostRequestSettingsFilter

NewContentV2GetCardsListPostRequestSettingsFilterWithDefaults instantiates a new ContentV2GetCardsListPostRequestSettingsFilter 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

func (*ContentV2GetCardsListPostRequestSettingsFilter) GetAllowedCategoriesOnly

func (o *ContentV2GetCardsListPostRequestSettingsFilter) GetAllowedCategoriesOnly() bool

GetAllowedCategoriesOnly returns the AllowedCategoriesOnly field value if set, zero value otherwise.

func (*ContentV2GetCardsListPostRequestSettingsFilter) GetAllowedCategoriesOnlyOk

func (o *ContentV2GetCardsListPostRequestSettingsFilter) GetAllowedCategoriesOnlyOk() (*bool, bool)

GetAllowedCategoriesOnlyOk returns a tuple with the AllowedCategoriesOnly field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ContentV2GetCardsListPostRequestSettingsFilter) GetBrands

GetBrands returns the Brands field value if set, zero value otherwise.

func (*ContentV2GetCardsListPostRequestSettingsFilter) GetBrandsOk

GetBrandsOk returns a tuple with the Brands field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ContentV2GetCardsListPostRequestSettingsFilter) GetImtID

GetImtID returns the ImtID field value if set, zero value otherwise.

func (*ContentV2GetCardsListPostRequestSettingsFilter) GetImtIDOk

GetImtIDOk returns a tuple with the ImtID field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ContentV2GetCardsListPostRequestSettingsFilter) GetObjectIDs

GetObjectIDs returns the ObjectIDs field value if set, zero value otherwise.

func (*ContentV2GetCardsListPostRequestSettingsFilter) GetObjectIDsOk

GetObjectIDsOk returns a tuple with the ObjectIDs field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ContentV2GetCardsListPostRequestSettingsFilter) GetTagIDs

GetTagIDs returns the TagIDs field value if set, zero value otherwise.

func (*ContentV2GetCardsListPostRequestSettingsFilter) GetTagIDsOk

GetTagIDsOk returns a tuple with the TagIDs field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ContentV2GetCardsListPostRequestSettingsFilter) GetTextSearch

GetTextSearch returns the TextSearch field value if set, zero value otherwise.

func (*ContentV2GetCardsListPostRequestSettingsFilter) GetTextSearchOk

GetTextSearchOk returns a tuple with the TextSearch field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ContentV2GetCardsListPostRequestSettingsFilter) GetWithPhoto

GetWithPhoto returns the WithPhoto field value if set, zero value otherwise.

func (*ContentV2GetCardsListPostRequestSettingsFilter) GetWithPhotoOk

GetWithPhotoOk returns a tuple with the WithPhoto field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ContentV2GetCardsListPostRequestSettingsFilter) HasAllowedCategoriesOnly

func (o *ContentV2GetCardsListPostRequestSettingsFilter) HasAllowedCategoriesOnly() bool

HasAllowedCategoriesOnly returns a boolean if a field has been set.

func (*ContentV2GetCardsListPostRequestSettingsFilter) HasBrands

HasBrands returns a boolean if a field has been set.

func (*ContentV2GetCardsListPostRequestSettingsFilter) HasImtID

HasImtID returns a boolean if a field has been set.

func (*ContentV2GetCardsListPostRequestSettingsFilter) HasObjectIDs

HasObjectIDs returns a boolean if a field has been set.

func (*ContentV2GetCardsListPostRequestSettingsFilter) HasTagIDs

HasTagIDs returns a boolean if a field has been set.

func (*ContentV2GetCardsListPostRequestSettingsFilter) HasTextSearch

HasTextSearch returns a boolean if a field has been set.

func (*ContentV2GetCardsListPostRequestSettingsFilter) HasWithPhoto

HasWithPhoto returns a boolean if a field has been set.

func (ContentV2GetCardsListPostRequestSettingsFilter) MarshalJSON

func (*ContentV2GetCardsListPostRequestSettingsFilter) SetAllowedCategoriesOnly

func (o *ContentV2GetCardsListPostRequestSettingsFilter) SetAllowedCategoriesOnly(v bool)

SetAllowedCategoriesOnly gets a reference to the given bool and assigns it to the AllowedCategoriesOnly field.

func (*ContentV2GetCardsListPostRequestSettingsFilter) SetBrands

SetBrands gets a reference to the given []string and assigns it to the Brands field.

func (*ContentV2GetCardsListPostRequestSettingsFilter) SetImtID

SetImtID gets a reference to the given int32 and assigns it to the ImtID field.

func (*ContentV2GetCardsListPostRequestSettingsFilter) SetObjectIDs

SetObjectIDs gets a reference to the given []int32 and assigns it to the ObjectIDs field.

func (*ContentV2GetCardsListPostRequestSettingsFilter) SetTagIDs

SetTagIDs gets a reference to the given []int32 and assigns it to the TagIDs field.

func (*ContentV2GetCardsListPostRequestSettingsFilter) SetTextSearch

SetTextSearch gets a reference to the given string and assigns it to the TextSearch field.

func (*ContentV2GetCardsListPostRequestSettingsFilter) SetWithPhoto

SetWithPhoto gets a reference to the given int32 and assigns it to the WithPhoto field.

func (ContentV2GetCardsListPostRequestSettingsFilter) ToMap

func (o ContentV2GetCardsListPostRequestSettingsFilter) ToMap() (map[string]interface{}, error)

type ContentV2GetCardsListPostRequestSettingsSort

type ContentV2GetCardsListPostRequestSettingsSort struct {
	// Sort by the `updatedAt` field (`false` - descending, `true` - ascending)
	Ascending *bool `json:"ascending,omitempty"`
}

ContentV2GetCardsListPostRequestSettingsSort Sort by

func NewContentV2GetCardsListPostRequestSettingsSort

func NewContentV2GetCardsListPostRequestSettingsSort() *ContentV2GetCardsListPostRequestSettingsSort

NewContentV2GetCardsListPostRequestSettingsSort instantiates a new ContentV2GetCardsListPostRequestSettingsSort 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

func NewContentV2GetCardsListPostRequestSettingsSortWithDefaults

func NewContentV2GetCardsListPostRequestSettingsSortWithDefaults() *ContentV2GetCardsListPostRequestSettingsSort

NewContentV2GetCardsListPostRequestSettingsSortWithDefaults instantiates a new ContentV2GetCardsListPostRequestSettingsSort 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

func (*ContentV2GetCardsListPostRequestSettingsSort) GetAscending

GetAscending returns the Ascending field value if set, zero value otherwise.

func (*ContentV2GetCardsListPostRequestSettingsSort) GetAscendingOk

func (o *ContentV2GetCardsListPostRequestSettingsSort) GetAscendingOk() (*bool, bool)

GetAscendingOk returns a tuple with the Ascending field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ContentV2GetCardsListPostRequestSettingsSort) HasAscending

HasAscending returns a boolean if a field has been set.

func (ContentV2GetCardsListPostRequestSettingsSort) MarshalJSON

func (*ContentV2GetCardsListPostRequestSettingsSort) SetAscending

SetAscending gets a reference to the given bool and assigns it to the Ascending field.

func (ContentV2GetCardsListPostRequestSettingsSort) ToMap

func (o ContentV2GetCardsListPostRequestSettingsSort) ToMap() (map[string]interface{}, error)

type ContentV2GetCardsTrashPost200Response

type ContentV2GetCardsTrashPost200Response struct {
	// The list of requested product cards
	Cards  []ContentV2GetCardsTrashPost200ResponseCardsInner `json:"cards,omitempty"`
	Cursor *ContentV2GetCardsTrashPost200ResponseCursor      `json:"cursor,omitempty"`
}

ContentV2GetCardsTrashPost200Response struct for ContentV2GetCardsTrashPost200Response

func NewContentV2GetCardsTrashPost200Response

func NewContentV2GetCardsTrashPost200Response() *ContentV2GetCardsTrashPost200Response

NewContentV2GetCardsTrashPost200Response instantiates a new ContentV2GetCardsTrashPost200Response 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

func NewContentV2GetCardsTrashPost200ResponseWithDefaults

func NewContentV2GetCardsTrashPost200ResponseWithDefaults() *ContentV2GetCardsTrashPost200Response

NewContentV2GetCardsTrashPost200ResponseWithDefaults instantiates a new ContentV2GetCardsTrashPost200Response 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

func (*ContentV2GetCardsTrashPost200Response) GetCards

GetCards returns the Cards field value if set, zero value otherwise.

func (*ContentV2GetCardsTrashPost200Response) GetCardsOk

GetCardsOk returns a tuple with the Cards field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ContentV2GetCardsTrashPost200Response) GetCursor

GetCursor returns the Cursor field value if set, zero value otherwise.

func (*ContentV2GetCardsTrashPost200Response) GetCursorOk

GetCursorOk returns a tuple with the Cursor field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ContentV2GetCardsTrashPost200Response) HasCards

HasCards returns a boolean if a field has been set.

func (*ContentV2GetCardsTrashPost200Response) HasCursor

HasCursor returns a boolean if a field has been set.

func (ContentV2GetCardsTrashPost200Response) MarshalJSON

func (o ContentV2GetCardsTrashPost200Response) MarshalJSON() ([]byte, error)

func (*ContentV2GetCardsTrashPost200Response) SetCards

SetCards gets a reference to the given []ContentV2GetCardsTrashPost200ResponseCardsInner and assigns it to the Cards field.

func (*ContentV2GetCardsTrashPost200Response) SetCursor

SetCursor gets a reference to the given ContentV2GetCardsTrashPost200ResponseCursor and assigns it to the Cursor field.

func (ContentV2GetCardsTrashPost200Response) ToMap

func (o ContentV2GetCardsTrashPost200Response) ToMap() (map[string]interface{}, error)

type ContentV2GetCardsTrashPost200ResponseCardsInner

type ContentV2GetCardsTrashPost200ResponseCardsInner struct {
	// WB article
	NmID *int32 `json:"nmID,omitempty"`
	// Seller's article
	VendorCode *string `json:"vendorCode,omitempty"`
	// Is there the confirmation from the seller that required [labeling code](https://chestnyznak.ru/en) is applied to the product:   - `true` — yes   - `false` — no  To check if labeling code is required, use the [Product Cards List](./work-with-products#tag/Product-Cards/paths/~1content~1v2~1get~1cards~1list/post) method, the response field `needKiz`
	KizMarked *bool `json:"kizMarked,omitempty"`
	// Subject ID
	SubjectID *int32 `json:"subjectID,omitempty"`
	// Subject name
	SubjectName *string `json:"subjectName,omitempty"`
	// Photo array
	Photos []ContentV2GetCardsListPost200ResponseCardsInnerPhotosInner `json:"photos,omitempty"`
	// Video URL
	Video     *string                                                  `json:"video,omitempty"`
	Wholesale *ContentV2GetCardsListPost200ResponseCardsInnerWholesale `json:"wholesale,omitempty"`
	// Product sizes
	Sizes      []ContentV2GetCardsTrashPost200ResponseCardsInnerSizesInner `json:"sizes,omitempty"`
	Dimensions *ContentV2GetCardsListPost200ResponseCardsInnerDimensions   `json:"dimensions,omitempty"`
	// Characteristics
	Characteristics []ContentV2GetCardsListPost200ResponseCardsInnerCharacteristicsInner `json:"characteristics,omitempty"`
	// Characteristics
	CreatedAt *string `json:"createdAt,omitempty"`
	// Date and time the card was transferred to trash
	TrashedAt *string `json:"trashedAt,omitempty"`
}

ContentV2GetCardsTrashPost200ResponseCardsInner struct for ContentV2GetCardsTrashPost200ResponseCardsInner

func NewContentV2GetCardsTrashPost200ResponseCardsInner

func NewContentV2GetCardsTrashPost200ResponseCardsInner() *ContentV2GetCardsTrashPost200ResponseCardsInner

NewContentV2GetCardsTrashPost200ResponseCardsInner instantiates a new ContentV2GetCardsTrashPost200ResponseCardsInner 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

func NewContentV2GetCardsTrashPost200ResponseCardsInnerWithDefaults

func NewContentV2GetCardsTrashPost200ResponseCardsInnerWithDefaults() *ContentV2GetCardsTrashPost200ResponseCardsInner

NewContentV2GetCardsTrashPost200ResponseCardsInnerWithDefaults instantiates a new ContentV2GetCardsTrashPost200ResponseCardsInner 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

func (*ContentV2GetCardsTrashPost200ResponseCardsInner) GetCharacteristics

GetCharacteristics returns the Characteristics field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ContentV2GetCardsTrashPost200ResponseCardsInner) GetCharacteristicsOk

GetCharacteristicsOk returns a tuple with the Characteristics field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*ContentV2GetCardsTrashPost200ResponseCardsInner) GetCreatedAt

GetCreatedAt returns the CreatedAt field value if set, zero value otherwise.

func (*ContentV2GetCardsTrashPost200ResponseCardsInner) GetCreatedAtOk

GetCreatedAtOk returns a tuple with the CreatedAt field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ContentV2GetCardsTrashPost200ResponseCardsInner) GetDimensions

GetDimensions returns the Dimensions field value if set, zero value otherwise.

func (*ContentV2GetCardsTrashPost200ResponseCardsInner) GetDimensionsOk

GetDimensionsOk returns a tuple with the Dimensions field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ContentV2GetCardsTrashPost200ResponseCardsInner) GetKizMarked

GetKizMarked returns the KizMarked field value if set, zero value otherwise.

func (*ContentV2GetCardsTrashPost200ResponseCardsInner) GetKizMarkedOk

GetKizMarkedOk returns a tuple with the KizMarked field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ContentV2GetCardsTrashPost200ResponseCardsInner) GetNmID

GetNmID returns the NmID field value if set, zero value otherwise.

func (*ContentV2GetCardsTrashPost200ResponseCardsInner) GetNmIDOk

GetNmIDOk returns a tuple with the NmID field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ContentV2GetCardsTrashPost200ResponseCardsInner) GetPhotos

GetPhotos returns the Photos field value if set, zero value otherwise.

func (*ContentV2GetCardsTrashPost200ResponseCardsInner) GetPhotosOk

GetPhotosOk returns a tuple with the Photos field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ContentV2GetCardsTrashPost200ResponseCardsInner) GetSizes

GetSizes returns the Sizes field value if set, zero value otherwise.

func (*ContentV2GetCardsTrashPost200ResponseCardsInner) GetSizesOk

GetSizesOk returns a tuple with the Sizes field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ContentV2GetCardsTrashPost200ResponseCardsInner) GetSubjectID

GetSubjectID returns the SubjectID field value if set, zero value otherwise.

func (*ContentV2GetCardsTrashPost200ResponseCardsInner) GetSubjectIDOk

GetSubjectIDOk returns a tuple with the SubjectID field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ContentV2GetCardsTrashPost200ResponseCardsInner) GetSubjectName

GetSubjectName returns the SubjectName field value if set, zero value otherwise.

func (*ContentV2GetCardsTrashPost200ResponseCardsInner) GetSubjectNameOk

GetSubjectNameOk returns a tuple with the SubjectName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ContentV2GetCardsTrashPost200ResponseCardsInner) GetTrashedAt

GetTrashedAt returns the TrashedAt field value if set, zero value otherwise.

func (*ContentV2GetCardsTrashPost200ResponseCardsInner) GetTrashedAtOk

GetTrashedAtOk returns a tuple with the TrashedAt field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ContentV2GetCardsTrashPost200ResponseCardsInner) GetVendorCode

GetVendorCode returns the VendorCode field value if set, zero value otherwise.

func (*ContentV2GetCardsTrashPost200ResponseCardsInner) GetVendorCodeOk

GetVendorCodeOk returns a tuple with the VendorCode field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ContentV2GetCardsTrashPost200ResponseCardsInner) GetVideo

GetVideo returns the Video field value if set, zero value otherwise.

func (*ContentV2GetCardsTrashPost200ResponseCardsInner) GetVideoOk

GetVideoOk returns a tuple with the Video field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ContentV2GetCardsTrashPost200ResponseCardsInner) GetWholesale

GetWholesale returns the Wholesale field value if set, zero value otherwise.

func (*ContentV2GetCardsTrashPost200ResponseCardsInner) GetWholesaleOk

GetWholesaleOk returns a tuple with the Wholesale field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ContentV2GetCardsTrashPost200ResponseCardsInner) HasCharacteristics

func (o *ContentV2GetCardsTrashPost200ResponseCardsInner) HasCharacteristics() bool

HasCharacteristics returns a boolean if a field has been set.

func (*ContentV2GetCardsTrashPost200ResponseCardsInner) HasCreatedAt

HasCreatedAt returns a boolean if a field has been set.

func (*ContentV2GetCardsTrashPost200ResponseCardsInner) HasDimensions

HasDimensions returns a boolean if a field has been set.

func (*ContentV2GetCardsTrashPost200ResponseCardsInner) HasKizMarked

HasKizMarked returns a boolean if a field has been set.

func (*ContentV2GetCardsTrashPost200ResponseCardsInner) HasNmID

HasNmID returns a boolean if a field has been set.

func (*ContentV2GetCardsTrashPost200ResponseCardsInner) HasPhotos

HasPhotos returns a boolean if a field has been set.

func (*ContentV2GetCardsTrashPost200ResponseCardsInner) HasSizes

HasSizes returns a boolean if a field has been set.

func (*ContentV2GetCardsTrashPost200ResponseCardsInner) HasSubjectID

HasSubjectID returns a boolean if a field has been set.

func (*ContentV2GetCardsTrashPost200ResponseCardsInner) HasSubjectName

HasSubjectName returns a boolean if a field has been set.

func (*ContentV2GetCardsTrashPost200ResponseCardsInner) HasTrashedAt

HasTrashedAt returns a boolean if a field has been set.

func (*ContentV2GetCardsTrashPost200ResponseCardsInner) HasVendorCode

HasVendorCode returns a boolean if a field has been set.

func (*ContentV2GetCardsTrashPost200ResponseCardsInner) HasVideo

HasVideo returns a boolean if a field has been set.

func (*ContentV2GetCardsTrashPost200ResponseCardsInner) HasWholesale

HasWholesale returns a boolean if a field has been set.

func (ContentV2GetCardsTrashPost200ResponseCardsInner) MarshalJSON

func (*ContentV2GetCardsTrashPost200ResponseCardsInner) SetCharacteristics

SetCharacteristics gets a reference to the given []ContentV2GetCardsListPost200ResponseCardsInnerCharacteristicsInner and assigns it to the Characteristics field.

func (*ContentV2GetCardsTrashPost200ResponseCardsInner) SetCreatedAt

SetCreatedAt gets a reference to the given string and assigns it to the CreatedAt field.

func (*ContentV2GetCardsTrashPost200ResponseCardsInner) SetDimensions

SetDimensions gets a reference to the given ContentV2GetCardsListPost200ResponseCardsInnerDimensions and assigns it to the Dimensions field.

func (*ContentV2GetCardsTrashPost200ResponseCardsInner) SetKizMarked

SetKizMarked gets a reference to the given bool and assigns it to the KizMarked field.

func (*ContentV2GetCardsTrashPost200ResponseCardsInner) SetNmID

SetNmID gets a reference to the given int32 and assigns it to the NmID field.

func (*ContentV2GetCardsTrashPost200ResponseCardsInner) SetPhotos

SetPhotos gets a reference to the given []ContentV2GetCardsListPost200ResponseCardsInnerPhotosInner and assigns it to the Photos field.

func (*ContentV2GetCardsTrashPost200ResponseCardsInner) SetSizes

SetSizes gets a reference to the given []ContentV2GetCardsTrashPost200ResponseCardsInnerSizesInner and assigns it to the Sizes field.

func (*ContentV2GetCardsTrashPost200ResponseCardsInner) SetSubjectID

SetSubjectID gets a reference to the given int32 and assigns it to the SubjectID field.

func (*ContentV2GetCardsTrashPost200ResponseCardsInner) SetSubjectName

SetSubjectName gets a reference to the given string and assigns it to the SubjectName field.

func (*ContentV2GetCardsTrashPost200ResponseCardsInner) SetTrashedAt

SetTrashedAt gets a reference to the given string and assigns it to the TrashedAt field.

func (*ContentV2GetCardsTrashPost200ResponseCardsInner) SetVendorCode

SetVendorCode gets a reference to the given string and assigns it to the VendorCode field.

func (*ContentV2GetCardsTrashPost200ResponseCardsInner) SetVideo

SetVideo gets a reference to the given string and assigns it to the Video field.

func (*ContentV2GetCardsTrashPost200ResponseCardsInner) SetWholesale

SetWholesale gets a reference to the given ContentV2GetCardsListPost200ResponseCardsInnerWholesale and assigns it to the Wholesale field.

func (ContentV2GetCardsTrashPost200ResponseCardsInner) ToMap

func (o ContentV2GetCardsTrashPost200ResponseCardsInner) ToMap() (map[string]interface{}, error)

type ContentV2GetCardsTrashPost200ResponseCardsInnerSizesInner

type ContentV2GetCardsTrashPost200ResponseCardsInnerSizesInner struct {
	// Size ID
	ChrtID *int32 `json:"chrtID,omitempty"`
	// Product size (eg S, M, L, XL, 42, 42-43)
	TechSize *string `json:"techSize,omitempty"`
	// Russian product size
	WbSize *string `json:"wbSize,omitempty"`
	// Array of SKUs
	Skus []string `json:"skus,omitempty"`
}

ContentV2GetCardsTrashPost200ResponseCardsInnerSizesInner struct for ContentV2GetCardsTrashPost200ResponseCardsInnerSizesInner

func NewContentV2GetCardsTrashPost200ResponseCardsInnerSizesInner

func NewContentV2GetCardsTrashPost200ResponseCardsInnerSizesInner() *ContentV2GetCardsTrashPost200ResponseCardsInnerSizesInner

NewContentV2GetCardsTrashPost200ResponseCardsInnerSizesInner instantiates a new ContentV2GetCardsTrashPost200ResponseCardsInnerSizesInner 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

func NewContentV2GetCardsTrashPost200ResponseCardsInnerSizesInnerWithDefaults

func NewContentV2GetCardsTrashPost200ResponseCardsInnerSizesInnerWithDefaults() *ContentV2GetCardsTrashPost200ResponseCardsInnerSizesInner

NewContentV2GetCardsTrashPost200ResponseCardsInnerSizesInnerWithDefaults instantiates a new ContentV2GetCardsTrashPost200ResponseCardsInnerSizesInner 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

func (*ContentV2GetCardsTrashPost200ResponseCardsInnerSizesInner) GetChrtID

GetChrtID returns the ChrtID field value if set, zero value otherwise.

func (*ContentV2GetCardsTrashPost200ResponseCardsInnerSizesInner) GetChrtIDOk

GetChrtIDOk returns a tuple with the ChrtID field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ContentV2GetCardsTrashPost200ResponseCardsInnerSizesInner) GetSkus

GetSkus returns the Skus field value if set, zero value otherwise.

func (*ContentV2GetCardsTrashPost200ResponseCardsInnerSizesInner) GetSkusOk

GetSkusOk returns a tuple with the Skus field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ContentV2GetCardsTrashPost200ResponseCardsInnerSizesInner) GetTechSize

GetTechSize returns the TechSize field value if set, zero value otherwise.

func (*ContentV2GetCardsTrashPost200ResponseCardsInnerSizesInner) GetTechSizeOk

GetTechSizeOk returns a tuple with the TechSize field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ContentV2GetCardsTrashPost200ResponseCardsInnerSizesInner) GetWbSize

GetWbSize returns the WbSize field value if set, zero value otherwise.

func (*ContentV2GetCardsTrashPost200ResponseCardsInnerSizesInner) GetWbSizeOk

GetWbSizeOk returns a tuple with the WbSize field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ContentV2GetCardsTrashPost200ResponseCardsInnerSizesInner) HasChrtID

HasChrtID returns a boolean if a field has been set.

func (*ContentV2GetCardsTrashPost200ResponseCardsInnerSizesInner) HasSkus

HasSkus returns a boolean if a field has been set.

func (*ContentV2GetCardsTrashPost200ResponseCardsInnerSizesInner) HasTechSize

HasTechSize returns a boolean if a field has been set.

func (*ContentV2GetCardsTrashPost200ResponseCardsInnerSizesInner) HasWbSize

HasWbSize returns a boolean if a field has been set.

func (ContentV2GetCardsTrashPost200ResponseCardsInnerSizesInner) MarshalJSON

func (*ContentV2GetCardsTrashPost200ResponseCardsInnerSizesInner) SetChrtID

SetChrtID gets a reference to the given int32 and assigns it to the ChrtID field.

func (*ContentV2GetCardsTrashPost200ResponseCardsInnerSizesInner) SetSkus

SetSkus gets a reference to the given []string and assigns it to the Skus field.

func (*ContentV2GetCardsTrashPost200ResponseCardsInnerSizesInner) SetTechSize

SetTechSize gets a reference to the given string and assigns it to the TechSize field.

func (*ContentV2GetCardsTrashPost200ResponseCardsInnerSizesInner) SetWbSize

SetWbSize gets a reference to the given string and assigns it to the WbSize field.

func (ContentV2GetCardsTrashPost200ResponseCardsInnerSizesInner) ToMap

type ContentV2GetCardsTrashPost200ResponseCursor

type ContentV2GetCardsTrashPost200ResponseCursor struct {
	// Date and time for next card page
	TrashedAt *string `json:"trashedAt,omitempty"`
	// WB article for next card page
	NmID *int32 `json:"nmID,omitempty"`
	// Number of cards
	Total *int32 `json:"total,omitempty"`
}

ContentV2GetCardsTrashPost200ResponseCursor Paginator

func NewContentV2GetCardsTrashPost200ResponseCursor

func NewContentV2GetCardsTrashPost200ResponseCursor() *ContentV2GetCardsTrashPost200ResponseCursor

NewContentV2GetCardsTrashPost200ResponseCursor instantiates a new ContentV2GetCardsTrashPost200ResponseCursor 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

func NewContentV2GetCardsTrashPost200ResponseCursorWithDefaults

func NewContentV2GetCardsTrashPost200ResponseCursorWithDefaults() *ContentV2GetCardsTrashPost200ResponseCursor

NewContentV2GetCardsTrashPost200ResponseCursorWithDefaults instantiates a new ContentV2GetCardsTrashPost200ResponseCursor 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

func (*ContentV2GetCardsTrashPost200ResponseCursor) GetNmID

GetNmID returns the NmID field value if set, zero value otherwise.

func (*ContentV2GetCardsTrashPost200ResponseCursor) GetNmIDOk

GetNmIDOk returns a tuple with the NmID field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ContentV2GetCardsTrashPost200ResponseCursor) GetTotal

GetTotal returns the Total field value if set, zero value otherwise.

func (*ContentV2GetCardsTrashPost200ResponseCursor) GetTotalOk

GetTotalOk returns a tuple with the Total field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ContentV2GetCardsTrashPost200ResponseCursor) GetTrashedAt

GetTrashedAt returns the TrashedAt field value if set, zero value otherwise.

func (*ContentV2GetCardsTrashPost200ResponseCursor) GetTrashedAtOk

GetTrashedAtOk returns a tuple with the TrashedAt field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ContentV2GetCardsTrashPost200ResponseCursor) HasNmID

HasNmID returns a boolean if a field has been set.

func (*ContentV2GetCardsTrashPost200ResponseCursor) HasTotal

HasTotal returns a boolean if a field has been set.

func (*ContentV2GetCardsTrashPost200ResponseCursor) HasTrashedAt

HasTrashedAt returns a boolean if a field has been set.

func (ContentV2GetCardsTrashPost200ResponseCursor) MarshalJSON

func (*ContentV2GetCardsTrashPost200ResponseCursor) SetNmID

SetNmID gets a reference to the given int32 and assigns it to the NmID field.

func (*ContentV2GetCardsTrashPost200ResponseCursor) SetTotal

SetTotal gets a reference to the given int32 and assigns it to the Total field.

func (*ContentV2GetCardsTrashPost200ResponseCursor) SetTrashedAt

SetTrashedAt gets a reference to the given string and assigns it to the TrashedAt field.

func (ContentV2GetCardsTrashPost200ResponseCursor) ToMap

func (o ContentV2GetCardsTrashPost200ResponseCursor) ToMap() (map[string]interface{}, error)

type ContentV2GetCardsTrashPostRequest

type ContentV2GetCardsTrashPostRequest struct {
	Settings *ContentV2GetCardsTrashPostRequestSettings `json:"settings,omitempty"`
}

ContentV2GetCardsTrashPostRequest struct for ContentV2GetCardsTrashPostRequest

func NewContentV2GetCardsTrashPostRequest

func NewContentV2GetCardsTrashPostRequest() *ContentV2GetCardsTrashPostRequest

NewContentV2GetCardsTrashPostRequest instantiates a new ContentV2GetCardsTrashPostRequest 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

func NewContentV2GetCardsTrashPostRequestWithDefaults

func NewContentV2GetCardsTrashPostRequestWithDefaults() *ContentV2GetCardsTrashPostRequest

NewContentV2GetCardsTrashPostRequestWithDefaults instantiates a new ContentV2GetCardsTrashPostRequest 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

func (*ContentV2GetCardsTrashPostRequest) GetSettings

GetSettings returns the Settings field value if set, zero value otherwise.

func (*ContentV2GetCardsTrashPostRequest) GetSettingsOk

GetSettingsOk returns a tuple with the Settings field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ContentV2GetCardsTrashPostRequest) HasSettings

func (o *ContentV2GetCardsTrashPostRequest) HasSettings() bool

HasSettings returns a boolean if a field has been set.

func (ContentV2GetCardsTrashPostRequest) MarshalJSON

func (o ContentV2GetCardsTrashPostRequest) MarshalJSON() ([]byte, error)

func (*ContentV2GetCardsTrashPostRequest) SetSettings

SetSettings gets a reference to the given ContentV2GetCardsTrashPostRequestSettings and assigns it to the Settings field.

func (ContentV2GetCardsTrashPostRequest) ToMap

func (o ContentV2GetCardsTrashPostRequest) ToMap() (map[string]interface{}, error)

type ContentV2GetCardsTrashPostRequestSettings

type ContentV2GetCardsTrashPostRequestSettings struct {
	Sort   *ContentV2GetCardsTrashPostRequestSettingsSort   `json:"sort,omitempty"`
	Cursor *ContentV2GetCardsTrashPostRequestSettingsCursor `json:"cursor,omitempty"`
	Filter *ContentV2GetCardsTrashPostRequestSettingsFilter `json:"filter,omitempty"`
}

ContentV2GetCardsTrashPostRequestSettings Settings

func NewContentV2GetCardsTrashPostRequestSettings

func NewContentV2GetCardsTrashPostRequestSettings() *ContentV2GetCardsTrashPostRequestSettings

NewContentV2GetCardsTrashPostRequestSettings instantiates a new ContentV2GetCardsTrashPostRequestSettings 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

func NewContentV2GetCardsTrashPostRequestSettingsWithDefaults

func NewContentV2GetCardsTrashPostRequestSettingsWithDefaults() *ContentV2GetCardsTrashPostRequestSettings

NewContentV2GetCardsTrashPostRequestSettingsWithDefaults instantiates a new ContentV2GetCardsTrashPostRequestSettings 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

func (*ContentV2GetCardsTrashPostRequestSettings) GetCursor

GetCursor returns the Cursor field value if set, zero value otherwise.

func (*ContentV2GetCardsTrashPostRequestSettings) GetCursorOk

GetCursorOk returns a tuple with the Cursor field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ContentV2GetCardsTrashPostRequestSettings) GetFilter

GetFilter returns the Filter field value if set, zero value otherwise.

func (*ContentV2GetCardsTrashPostRequestSettings) GetFilterOk

GetFilterOk returns a tuple with the Filter field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ContentV2GetCardsTrashPostRequestSettings) GetSort

GetSort returns the Sort field value if set, zero value otherwise.

func (*ContentV2GetCardsTrashPostRequestSettings) GetSortOk

GetSortOk returns a tuple with the Sort field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ContentV2GetCardsTrashPostRequestSettings) HasCursor

HasCursor returns a boolean if a field has been set.

func (*ContentV2GetCardsTrashPostRequestSettings) HasFilter

HasFilter returns a boolean if a field has been set.

func (*ContentV2GetCardsTrashPostRequestSettings) HasSort

HasSort returns a boolean if a field has been set.

func (ContentV2GetCardsTrashPostRequestSettings) MarshalJSON

func (*ContentV2GetCardsTrashPostRequestSettings) SetCursor

SetCursor gets a reference to the given ContentV2GetCardsTrashPostRequestSettingsCursor and assigns it to the Cursor field.

func (*ContentV2GetCardsTrashPostRequestSettings) SetFilter

SetFilter gets a reference to the given ContentV2GetCardsTrashPostRequestSettingsFilter and assigns it to the Filter field.

func (*ContentV2GetCardsTrashPostRequestSettings) SetSort

SetSort gets a reference to the given ContentV2GetCardsTrashPostRequestSettingsSort and assigns it to the Sort field.

func (ContentV2GetCardsTrashPostRequestSettings) ToMap

func (o ContentV2GetCardsTrashPostRequestSettings) ToMap() (map[string]interface{}, error)

type ContentV2GetCardsTrashPostRequestSettingsCursor

type ContentV2GetCardsTrashPostRequestSettingsCursor struct {
	// Number of cards in response
	Limit *int32 `json:"limit,omitempty"`
	// Date and time the card was transferred to trash
	TrashedAt *string `json:"trashedAt,omitempty"`
	// WB article for next card page
	NmID *int32 `json:"nmID,omitempty"`
}

ContentV2GetCardsTrashPostRequestSettingsCursor Paginator

func NewContentV2GetCardsTrashPostRequestSettingsCursor

func NewContentV2GetCardsTrashPostRequestSettingsCursor() *ContentV2GetCardsTrashPostRequestSettingsCursor

NewContentV2GetCardsTrashPostRequestSettingsCursor instantiates a new ContentV2GetCardsTrashPostRequestSettingsCursor 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

func NewContentV2GetCardsTrashPostRequestSettingsCursorWithDefaults

func NewContentV2GetCardsTrashPostRequestSettingsCursorWithDefaults() *ContentV2GetCardsTrashPostRequestSettingsCursor

NewContentV2GetCardsTrashPostRequestSettingsCursorWithDefaults instantiates a new ContentV2GetCardsTrashPostRequestSettingsCursor 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

func (*ContentV2GetCardsTrashPostRequestSettingsCursor) GetLimit

GetLimit returns the Limit field value if set, zero value otherwise.

func (*ContentV2GetCardsTrashPostRequestSettingsCursor) GetLimitOk

GetLimitOk returns a tuple with the Limit field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ContentV2GetCardsTrashPostRequestSettingsCursor) GetNmID

GetNmID returns the NmID field value if set, zero value otherwise.

func (*ContentV2GetCardsTrashPostRequestSettingsCursor) GetNmIDOk

GetNmIDOk returns a tuple with the NmID field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ContentV2GetCardsTrashPostRequestSettingsCursor) GetTrashedAt

GetTrashedAt returns the TrashedAt field value if set, zero value otherwise.

func (*ContentV2GetCardsTrashPostRequestSettingsCursor) GetTrashedAtOk

GetTrashedAtOk returns a tuple with the TrashedAt field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ContentV2GetCardsTrashPostRequestSettingsCursor) HasLimit

HasLimit returns a boolean if a field has been set.

func (*ContentV2GetCardsTrashPostRequestSettingsCursor) HasNmID

HasNmID returns a boolean if a field has been set.

func (*ContentV2GetCardsTrashPostRequestSettingsCursor) HasTrashedAt

HasTrashedAt returns a boolean if a field has been set.

func (ContentV2GetCardsTrashPostRequestSettingsCursor) MarshalJSON

func (*ContentV2GetCardsTrashPostRequestSettingsCursor) SetLimit

SetLimit gets a reference to the given int32 and assigns it to the Limit field.

func (*ContentV2GetCardsTrashPostRequestSettingsCursor) SetNmID

SetNmID gets a reference to the given int32 and assigns it to the NmID field.

func (*ContentV2GetCardsTrashPostRequestSettingsCursor) SetTrashedAt

SetTrashedAt gets a reference to the given string and assigns it to the TrashedAt field.

func (ContentV2GetCardsTrashPostRequestSettingsCursor) ToMap

func (o ContentV2GetCardsTrashPostRequestSettingsCursor) ToMap() (map[string]interface{}, error)

type ContentV2GetCardsTrashPostRequestSettingsFilter

type ContentV2GetCardsTrashPostRequestSettingsFilter struct {
	// Seller's article, Wildberries article or SKU to search
	TextSearch *string `json:"textSearch,omitempty"`
}

ContentV2GetCardsTrashPostRequestSettingsFilter Filters

func NewContentV2GetCardsTrashPostRequestSettingsFilter

func NewContentV2GetCardsTrashPostRequestSettingsFilter() *ContentV2GetCardsTrashPostRequestSettingsFilter

NewContentV2GetCardsTrashPostRequestSettingsFilter instantiates a new ContentV2GetCardsTrashPostRequestSettingsFilter 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

func NewContentV2GetCardsTrashPostRequestSettingsFilterWithDefaults

func NewContentV2GetCardsTrashPostRequestSettingsFilterWithDefaults() *ContentV2GetCardsTrashPostRequestSettingsFilter

NewContentV2GetCardsTrashPostRequestSettingsFilterWithDefaults instantiates a new ContentV2GetCardsTrashPostRequestSettingsFilter 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

func (*ContentV2GetCardsTrashPostRequestSettingsFilter) GetTextSearch

GetTextSearch returns the TextSearch field value if set, zero value otherwise.

func (*ContentV2GetCardsTrashPostRequestSettingsFilter) GetTextSearchOk

GetTextSearchOk returns a tuple with the TextSearch field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ContentV2GetCardsTrashPostRequestSettingsFilter) HasTextSearch

HasTextSearch returns a boolean if a field has been set.

func (ContentV2GetCardsTrashPostRequestSettingsFilter) MarshalJSON

func (*ContentV2GetCardsTrashPostRequestSettingsFilter) SetTextSearch

SetTextSearch gets a reference to the given string and assigns it to the TextSearch field.

func (ContentV2GetCardsTrashPostRequestSettingsFilter) ToMap

func (o ContentV2GetCardsTrashPostRequestSettingsFilter) ToMap() (map[string]interface{}, error)

type ContentV2GetCardsTrashPostRequestSettingsSort

type ContentV2GetCardsTrashPostRequestSettingsSort struct {
	// `trashedAt`: true — ascending, false — descending
	Ascending *bool `json:"ascending,omitempty"`
}

ContentV2GetCardsTrashPostRequestSettingsSort Sort by

func NewContentV2GetCardsTrashPostRequestSettingsSort

func NewContentV2GetCardsTrashPostRequestSettingsSort() *ContentV2GetCardsTrashPostRequestSettingsSort

NewContentV2GetCardsTrashPostRequestSettingsSort instantiates a new ContentV2GetCardsTrashPostRequestSettingsSort 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

func NewContentV2GetCardsTrashPostRequestSettingsSortWithDefaults

func NewContentV2GetCardsTrashPostRequestSettingsSortWithDefaults() *ContentV2GetCardsTrashPostRequestSettingsSort

NewContentV2GetCardsTrashPostRequestSettingsSortWithDefaults instantiates a new ContentV2GetCardsTrashPostRequestSettingsSort 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

func (*ContentV2GetCardsTrashPostRequestSettingsSort) GetAscending

GetAscending returns the Ascending field value if set, zero value otherwise.

func (*ContentV2GetCardsTrashPostRequestSettingsSort) GetAscendingOk

GetAscendingOk returns a tuple with the Ascending field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ContentV2GetCardsTrashPostRequestSettingsSort) HasAscending

HasAscending returns a boolean if a field has been set.

func (ContentV2GetCardsTrashPostRequestSettingsSort) MarshalJSON

func (*ContentV2GetCardsTrashPostRequestSettingsSort) SetAscending

SetAscending gets a reference to the given bool and assigns it to the Ascending field.

func (ContentV2GetCardsTrashPostRequestSettingsSort) ToMap

func (o ContentV2GetCardsTrashPostRequestSettingsSort) ToMap() (map[string]interface{}, error)

type ContentV2ObjectAllGet200Response

type ContentV2ObjectAllGet200Response struct {
	// Categories and subjects
	Data []ContentV2ObjectAllGet200ResponseDataInner `json:"data,omitempty"`
	// Error flag
	Error *bool `json:"error,omitempty"`
	// Error text
	ErrorText *string `json:"errorText,omitempty"`
	// Additional errors
	AdditionalErrors NullableString `json:"additionalErrors,omitempty"`
}

ContentV2ObjectAllGet200Response struct for ContentV2ObjectAllGet200Response

func NewContentV2ObjectAllGet200Response

func NewContentV2ObjectAllGet200Response() *ContentV2ObjectAllGet200Response

NewContentV2ObjectAllGet200Response instantiates a new ContentV2ObjectAllGet200Response 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

func NewContentV2ObjectAllGet200ResponseWithDefaults

func NewContentV2ObjectAllGet200ResponseWithDefaults() *ContentV2ObjectAllGet200Response

NewContentV2ObjectAllGet200ResponseWithDefaults instantiates a new ContentV2ObjectAllGet200Response 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

func (*ContentV2ObjectAllGet200Response) GetAdditionalErrors

func (o *ContentV2ObjectAllGet200Response) GetAdditionalErrors() string

GetAdditionalErrors returns the AdditionalErrors field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ContentV2ObjectAllGet200Response) GetAdditionalErrorsOk

func (o *ContentV2ObjectAllGet200Response) GetAdditionalErrorsOk() (*string, bool)

GetAdditionalErrorsOk returns a tuple with the AdditionalErrors field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*ContentV2ObjectAllGet200Response) GetData

GetData returns the Data field value if set, zero value otherwise.

func (*ContentV2ObjectAllGet200Response) GetDataOk

GetDataOk returns a tuple with the Data field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ContentV2ObjectAllGet200Response) GetError

func (o *ContentV2ObjectAllGet200Response) GetError() bool

GetError returns the Error field value if set, zero value otherwise.

func (*ContentV2ObjectAllGet200Response) GetErrorOk

func (o *ContentV2ObjectAllGet200Response) GetErrorOk() (*bool, bool)

GetErrorOk returns a tuple with the Error field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ContentV2ObjectAllGet200Response) GetErrorText

func (o *ContentV2ObjectAllGet200Response) GetErrorText() string

GetErrorText returns the ErrorText field value if set, zero value otherwise.

func (*ContentV2ObjectAllGet200Response) GetErrorTextOk

func (o *ContentV2ObjectAllGet200Response) GetErrorTextOk() (*string, bool)

GetErrorTextOk returns a tuple with the ErrorText field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ContentV2ObjectAllGet200Response) HasAdditionalErrors

func (o *ContentV2ObjectAllGet200Response) HasAdditionalErrors() bool

HasAdditionalErrors returns a boolean if a field has been set.

func (*ContentV2ObjectAllGet200Response) HasData

HasData returns a boolean if a field has been set.

func (*ContentV2ObjectAllGet200Response) HasError

func (o *ContentV2ObjectAllGet200Response) HasError() bool

HasError returns a boolean if a field has been set.

func (*ContentV2ObjectAllGet200Response) HasErrorText

func (o *ContentV2ObjectAllGet200Response) HasErrorText() bool

HasErrorText returns a boolean if a field has been set.

func (ContentV2ObjectAllGet200Response) MarshalJSON

func (o ContentV2ObjectAllGet200Response) MarshalJSON() ([]byte, error)

func (*ContentV2ObjectAllGet200Response) SetAdditionalErrors

func (o *ContentV2ObjectAllGet200Response) SetAdditionalErrors(v string)

SetAdditionalErrors gets a reference to the given NullableString and assigns it to the AdditionalErrors field.

func (*ContentV2ObjectAllGet200Response) SetAdditionalErrorsNil

func (o *ContentV2ObjectAllGet200Response) SetAdditionalErrorsNil()

SetAdditionalErrorsNil sets the value for AdditionalErrors to be an explicit nil

func (*ContentV2ObjectAllGet200Response) SetData

SetData gets a reference to the given []ContentV2ObjectAllGet200ResponseDataInner and assigns it to the Data field.

func (*ContentV2ObjectAllGet200Response) SetError

func (o *ContentV2ObjectAllGet200Response) SetError(v bool)

SetError gets a reference to the given bool and assigns it to the Error field.

func (*ContentV2ObjectAllGet200Response) SetErrorText

func (o *ContentV2ObjectAllGet200Response) SetErrorText(v string)

SetErrorText gets a reference to the given string and assigns it to the ErrorText field.

func (ContentV2ObjectAllGet200Response) ToMap

func (o ContentV2ObjectAllGet200Response) ToMap() (map[string]interface{}, error)

func (*ContentV2ObjectAllGet200Response) UnsetAdditionalErrors

func (o *ContentV2ObjectAllGet200Response) UnsetAdditionalErrors()

UnsetAdditionalErrors ensures that no value is present for AdditionalErrors, not even an explicit nil

type ContentV2ObjectAllGet200ResponseDataInner

type ContentV2ObjectAllGet200ResponseDataInner struct {
	// Subject ID
	SubjectID *int32 `json:"subjectID,omitempty"`
	// Parent category ID
	ParentID *int32 `json:"parentID,omitempty"`
	// Subject name
	SubjectName *string `json:"subjectName,omitempty"`
	// Parent category name
	ParentName *string `json:"parentName,omitempty"`
}

ContentV2ObjectAllGet200ResponseDataInner struct for ContentV2ObjectAllGet200ResponseDataInner

func NewContentV2ObjectAllGet200ResponseDataInner

func NewContentV2ObjectAllGet200ResponseDataInner() *ContentV2ObjectAllGet200ResponseDataInner

NewContentV2ObjectAllGet200ResponseDataInner instantiates a new ContentV2ObjectAllGet200ResponseDataInner 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

func NewContentV2ObjectAllGet200ResponseDataInnerWithDefaults

func NewContentV2ObjectAllGet200ResponseDataInnerWithDefaults() *ContentV2ObjectAllGet200ResponseDataInner

NewContentV2ObjectAllGet200ResponseDataInnerWithDefaults instantiates a new ContentV2ObjectAllGet200ResponseDataInner 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

func (*ContentV2ObjectAllGet200ResponseDataInner) GetParentID

GetParentID returns the ParentID field value if set, zero value otherwise.

func (*ContentV2ObjectAllGet200ResponseDataInner) GetParentIDOk

func (o *ContentV2ObjectAllGet200ResponseDataInner) GetParentIDOk() (*int32, bool)

GetParentIDOk returns a tuple with the ParentID field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ContentV2ObjectAllGet200ResponseDataInner) GetParentName

GetParentName returns the ParentName field value if set, zero value otherwise.

func (*ContentV2ObjectAllGet200ResponseDataInner) GetParentNameOk

func (o *ContentV2ObjectAllGet200ResponseDataInner) GetParentNameOk() (*string, bool)

GetParentNameOk returns a tuple with the ParentName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ContentV2ObjectAllGet200ResponseDataInner) GetSubjectID

GetSubjectID returns the SubjectID field value if set, zero value otherwise.

func (*ContentV2ObjectAllGet200ResponseDataInner) GetSubjectIDOk

func (o *ContentV2ObjectAllGet200ResponseDataInner) GetSubjectIDOk() (*int32, bool)

GetSubjectIDOk returns a tuple with the SubjectID field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ContentV2ObjectAllGet200ResponseDataInner) GetSubjectName

GetSubjectName returns the SubjectName field value if set, zero value otherwise.

func (*ContentV2ObjectAllGet200ResponseDataInner) GetSubjectNameOk

func (o *ContentV2ObjectAllGet200ResponseDataInner) GetSubjectNameOk() (*string, bool)

GetSubjectNameOk returns a tuple with the SubjectName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ContentV2ObjectAllGet200ResponseDataInner) HasParentID

HasParentID returns a boolean if a field has been set.

func (*ContentV2ObjectAllGet200ResponseDataInner) HasParentName

HasParentName returns a boolean if a field has been set.

func (*ContentV2ObjectAllGet200ResponseDataInner) HasSubjectID

HasSubjectID returns a boolean if a field has been set.

func (*ContentV2ObjectAllGet200ResponseDataInner) HasSubjectName

func (o *ContentV2ObjectAllGet200ResponseDataInner) HasSubjectName() bool

HasSubjectName returns a boolean if a field has been set.

func (ContentV2ObjectAllGet200ResponseDataInner) MarshalJSON

func (*ContentV2ObjectAllGet200ResponseDataInner) SetParentID

SetParentID gets a reference to the given int32 and assigns it to the ParentID field.

func (*ContentV2ObjectAllGet200ResponseDataInner) SetParentName

SetParentName gets a reference to the given string and assigns it to the ParentName field.

func (*ContentV2ObjectAllGet200ResponseDataInner) SetSubjectID

SetSubjectID gets a reference to the given int32 and assigns it to the SubjectID field.

func (*ContentV2ObjectAllGet200ResponseDataInner) SetSubjectName

SetSubjectName gets a reference to the given string and assigns it to the SubjectName field.

func (ContentV2ObjectAllGet200ResponseDataInner) ToMap

func (o ContentV2ObjectAllGet200ResponseDataInner) ToMap() (map[string]interface{}, error)

type ContentV2ObjectCharcsSubjectIdGet200Response

type ContentV2ObjectCharcsSubjectIdGet200Response struct {
	// Data
	Data []ContentV2ObjectCharcsSubjectIdGet200ResponseDataInner `json:"data,omitempty"`
	// Error flag
	Error *bool `json:"error,omitempty"`
	// Error description
	ErrorText *string `json:"errorText,omitempty"`
	// Additional errors
	AdditionalErrors NullableString `json:"additionalErrors,omitempty"`
}

ContentV2ObjectCharcsSubjectIdGet200Response struct for ContentV2ObjectCharcsSubjectIdGet200Response

func NewContentV2ObjectCharcsSubjectIdGet200Response

func NewContentV2ObjectCharcsSubjectIdGet200Response() *ContentV2ObjectCharcsSubjectIdGet200Response

NewContentV2ObjectCharcsSubjectIdGet200Response instantiates a new ContentV2ObjectCharcsSubjectIdGet200Response 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

func NewContentV2ObjectCharcsSubjectIdGet200ResponseWithDefaults

func NewContentV2ObjectCharcsSubjectIdGet200ResponseWithDefaults() *ContentV2ObjectCharcsSubjectIdGet200Response

NewContentV2ObjectCharcsSubjectIdGet200ResponseWithDefaults instantiates a new ContentV2ObjectCharcsSubjectIdGet200Response 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

func (*ContentV2ObjectCharcsSubjectIdGet200Response) GetAdditionalErrors

func (o *ContentV2ObjectCharcsSubjectIdGet200Response) GetAdditionalErrors() string

GetAdditionalErrors returns the AdditionalErrors field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ContentV2ObjectCharcsSubjectIdGet200Response) GetAdditionalErrorsOk

func (o *ContentV2ObjectCharcsSubjectIdGet200Response) GetAdditionalErrorsOk() (*string, bool)

GetAdditionalErrorsOk returns a tuple with the AdditionalErrors field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*ContentV2ObjectCharcsSubjectIdGet200Response) GetData

GetData returns the Data field value if set, zero value otherwise.

func (*ContentV2ObjectCharcsSubjectIdGet200Response) GetDataOk

GetDataOk returns a tuple with the Data field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ContentV2ObjectCharcsSubjectIdGet200Response) GetError

GetError returns the Error field value if set, zero value otherwise.

func (*ContentV2ObjectCharcsSubjectIdGet200Response) GetErrorOk

GetErrorOk returns a tuple with the Error field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ContentV2ObjectCharcsSubjectIdGet200Response) GetErrorText

GetErrorText returns the ErrorText field value if set, zero value otherwise.

func (*ContentV2ObjectCharcsSubjectIdGet200Response) GetErrorTextOk

GetErrorTextOk returns a tuple with the ErrorText field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ContentV2ObjectCharcsSubjectIdGet200Response) HasAdditionalErrors

func (o *ContentV2ObjectCharcsSubjectIdGet200Response) HasAdditionalErrors() bool

HasAdditionalErrors returns a boolean if a field has been set.

func (*ContentV2ObjectCharcsSubjectIdGet200Response) HasData

HasData returns a boolean if a field has been set.

func (*ContentV2ObjectCharcsSubjectIdGet200Response) HasError

HasError returns a boolean if a field has been set.

func (*ContentV2ObjectCharcsSubjectIdGet200Response) HasErrorText

HasErrorText returns a boolean if a field has been set.

func (ContentV2ObjectCharcsSubjectIdGet200Response) MarshalJSON

func (*ContentV2ObjectCharcsSubjectIdGet200Response) SetAdditionalErrors

func (o *ContentV2ObjectCharcsSubjectIdGet200Response) SetAdditionalErrors(v string)

SetAdditionalErrors gets a reference to the given NullableString and assigns it to the AdditionalErrors field.

func (*ContentV2ObjectCharcsSubjectIdGet200Response) SetAdditionalErrorsNil

func (o *ContentV2ObjectCharcsSubjectIdGet200Response) SetAdditionalErrorsNil()

SetAdditionalErrorsNil sets the value for AdditionalErrors to be an explicit nil

func (*ContentV2ObjectCharcsSubjectIdGet200Response) SetData

SetData gets a reference to the given []ContentV2ObjectCharcsSubjectIdGet200ResponseDataInner and assigns it to the Data field.

func (*ContentV2ObjectCharcsSubjectIdGet200Response) SetError

SetError gets a reference to the given bool and assigns it to the Error field.

func (*ContentV2ObjectCharcsSubjectIdGet200Response) SetErrorText

SetErrorText gets a reference to the given string and assigns it to the ErrorText field.

func (ContentV2ObjectCharcsSubjectIdGet200Response) ToMap

func (o ContentV2ObjectCharcsSubjectIdGet200Response) ToMap() (map[string]interface{}, error)

func (*ContentV2ObjectCharcsSubjectIdGet200Response) UnsetAdditionalErrors

func (o *ContentV2ObjectCharcsSubjectIdGet200Response) UnsetAdditionalErrors()

UnsetAdditionalErrors ensures that no value is present for AdditionalErrors, not even an explicit nil

type ContentV2ObjectCharcsSubjectIdGet200ResponseDataInner

type ContentV2ObjectCharcsSubjectIdGet200ResponseDataInner struct {
	// Characteristics ID
	CharcID *int32 `json:"charcID,omitempty"`
	// Subject name
	SubjectName *string `json:"subjectName,omitempty"`
	// Subject ID
	SubjectID *int32 `json:"subjectID,omitempty"`
	// Characteristic name
	Name *string `json:"name,omitempty"`
	// Characteristic required
	Required *bool `json:"required,omitempty"`
	// Unit (sm, gr and others)
	UnitName *string `json:"unitName,omitempty"`
	// The maximum number of values that can be assigned to a characteristic when [creating](./work-with-products#tag/Creating-Product-Cards) or [editing](./work-with-products#tag/Product-Cards/paths/~1content~1v2~1cards~1update/post) product cards. <br> Used only for characteristics with `\"charcType\":1` — array of strings. <br> For characteristics with `\"charcType\":4` — number, you can assign only one value. <br><br> For characteristics with `\"maxCount\":0`, the number of values is unlimited.
	MaxCount *int32 `json:"maxCount,omitempty"`
	// The characteristic is popular with users
	Popular *bool `json:"popular,omitempty"`
	// Characteristic data type that should be used when [creating](./work-with-products#tag/Creating-Product-Cards) or [editing](./work-with-products#tag/Product-Cards/paths/~1content~1v2~1cards~1update/post) product cards:   -  `1` — array of strings   -  `4` — number   -  `0` — characteristic is not used
	CharcType *int32 `json:"charcType,omitempty"`
	// Key characteristic. Is it an important characteristic for buyers:   - `false` — no   - `true` — yes
	HasFilter *bool `json:"hasFilter,omitempty"`
}

ContentV2ObjectCharcsSubjectIdGet200ResponseDataInner struct for ContentV2ObjectCharcsSubjectIdGet200ResponseDataInner

func NewContentV2ObjectCharcsSubjectIdGet200ResponseDataInner

func NewContentV2ObjectCharcsSubjectIdGet200ResponseDataInner() *ContentV2ObjectCharcsSubjectIdGet200ResponseDataInner

NewContentV2ObjectCharcsSubjectIdGet200ResponseDataInner instantiates a new ContentV2ObjectCharcsSubjectIdGet200ResponseDataInner 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

func NewContentV2ObjectCharcsSubjectIdGet200ResponseDataInnerWithDefaults

func NewContentV2ObjectCharcsSubjectIdGet200ResponseDataInnerWithDefaults() *ContentV2ObjectCharcsSubjectIdGet200ResponseDataInner

NewContentV2ObjectCharcsSubjectIdGet200ResponseDataInnerWithDefaults instantiates a new ContentV2ObjectCharcsSubjectIdGet200ResponseDataInner 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

func (*ContentV2ObjectCharcsSubjectIdGet200ResponseDataInner) GetCharcID

GetCharcID returns the CharcID field value if set, zero value otherwise.

func (*ContentV2ObjectCharcsSubjectIdGet200ResponseDataInner) GetCharcIDOk

GetCharcIDOk returns a tuple with the CharcID field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ContentV2ObjectCharcsSubjectIdGet200ResponseDataInner) GetCharcType

GetCharcType returns the CharcType field value if set, zero value otherwise.

func (*ContentV2ObjectCharcsSubjectIdGet200ResponseDataInner) GetCharcTypeOk

GetCharcTypeOk returns a tuple with the CharcType field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ContentV2ObjectCharcsSubjectIdGet200ResponseDataInner) GetHasFilter

GetHasFilter returns the HasFilter field value if set, zero value otherwise.

func (*ContentV2ObjectCharcsSubjectIdGet200ResponseDataInner) GetHasFilterOk

GetHasFilterOk returns a tuple with the HasFilter field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ContentV2ObjectCharcsSubjectIdGet200ResponseDataInner) GetMaxCount

GetMaxCount returns the MaxCount field value if set, zero value otherwise.

func (*ContentV2ObjectCharcsSubjectIdGet200ResponseDataInner) GetMaxCountOk

GetMaxCountOk returns a tuple with the MaxCount field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ContentV2ObjectCharcsSubjectIdGet200ResponseDataInner) GetName

GetName returns the Name field value if set, zero value otherwise.

func (*ContentV2ObjectCharcsSubjectIdGet200ResponseDataInner) GetNameOk

GetNameOk returns a tuple with the Name field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ContentV2ObjectCharcsSubjectIdGet200ResponseDataInner) GetPopular

GetPopular returns the Popular field value if set, zero value otherwise.

func (*ContentV2ObjectCharcsSubjectIdGet200ResponseDataInner) GetPopularOk

GetPopularOk returns a tuple with the Popular field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ContentV2ObjectCharcsSubjectIdGet200ResponseDataInner) GetRequired

GetRequired returns the Required field value if set, zero value otherwise.

func (*ContentV2ObjectCharcsSubjectIdGet200ResponseDataInner) GetRequiredOk

GetRequiredOk returns a tuple with the Required field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ContentV2ObjectCharcsSubjectIdGet200ResponseDataInner) GetSubjectID

GetSubjectID returns the SubjectID field value if set, zero value otherwise.

func (*ContentV2ObjectCharcsSubjectIdGet200ResponseDataInner) GetSubjectIDOk

GetSubjectIDOk returns a tuple with the SubjectID field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ContentV2ObjectCharcsSubjectIdGet200ResponseDataInner) GetSubjectName

GetSubjectName returns the SubjectName field value if set, zero value otherwise.

func (*ContentV2ObjectCharcsSubjectIdGet200ResponseDataInner) GetSubjectNameOk

GetSubjectNameOk returns a tuple with the SubjectName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ContentV2ObjectCharcsSubjectIdGet200ResponseDataInner) GetUnitName

GetUnitName returns the UnitName field value if set, zero value otherwise.

func (*ContentV2ObjectCharcsSubjectIdGet200ResponseDataInner) GetUnitNameOk

GetUnitNameOk returns a tuple with the UnitName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ContentV2ObjectCharcsSubjectIdGet200ResponseDataInner) HasCharcID

HasCharcID returns a boolean if a field has been set.

func (*ContentV2ObjectCharcsSubjectIdGet200ResponseDataInner) HasCharcType

HasCharcType returns a boolean if a field has been set.

func (*ContentV2ObjectCharcsSubjectIdGet200ResponseDataInner) HasHasFilter

HasHasFilter returns a boolean if a field has been set.

func (*ContentV2ObjectCharcsSubjectIdGet200ResponseDataInner) HasMaxCount

HasMaxCount returns a boolean if a field has been set.

func (*ContentV2ObjectCharcsSubjectIdGet200ResponseDataInner) HasName

HasName returns a boolean if a field has been set.

func (*ContentV2ObjectCharcsSubjectIdGet200ResponseDataInner) HasPopular

HasPopular returns a boolean if a field has been set.

func (*ContentV2ObjectCharcsSubjectIdGet200ResponseDataInner) HasRequired

HasRequired returns a boolean if a field has been set.

func (*ContentV2ObjectCharcsSubjectIdGet200ResponseDataInner) HasSubjectID

HasSubjectID returns a boolean if a field has been set.

func (*ContentV2ObjectCharcsSubjectIdGet200ResponseDataInner) HasSubjectName

HasSubjectName returns a boolean if a field has been set.

func (*ContentV2ObjectCharcsSubjectIdGet200ResponseDataInner) HasUnitName

HasUnitName returns a boolean if a field has been set.

func (ContentV2ObjectCharcsSubjectIdGet200ResponseDataInner) MarshalJSON

func (*ContentV2ObjectCharcsSubjectIdGet200ResponseDataInner) SetCharcID

SetCharcID gets a reference to the given int32 and assigns it to the CharcID field.

func (*ContentV2ObjectCharcsSubjectIdGet200ResponseDataInner) SetCharcType

SetCharcType gets a reference to the given int32 and assigns it to the CharcType field.

func (*ContentV2ObjectCharcsSubjectIdGet200ResponseDataInner) SetHasFilter

SetHasFilter gets a reference to the given bool and assigns it to the HasFilter field.

func (*ContentV2ObjectCharcsSubjectIdGet200ResponseDataInner) SetMaxCount

SetMaxCount gets a reference to the given int32 and assigns it to the MaxCount field.

func (*ContentV2ObjectCharcsSubjectIdGet200ResponseDataInner) SetName

SetName gets a reference to the given string and assigns it to the Name field.

func (*ContentV2ObjectCharcsSubjectIdGet200ResponseDataInner) SetPopular

SetPopular gets a reference to the given bool and assigns it to the Popular field.

func (*ContentV2ObjectCharcsSubjectIdGet200ResponseDataInner) SetRequired

SetRequired gets a reference to the given bool and assigns it to the Required field.

func (*ContentV2ObjectCharcsSubjectIdGet200ResponseDataInner) SetSubjectID

SetSubjectID gets a reference to the given int32 and assigns it to the SubjectID field.

func (*ContentV2ObjectCharcsSubjectIdGet200ResponseDataInner) SetSubjectName

SetSubjectName gets a reference to the given string and assigns it to the SubjectName field.

func (*ContentV2ObjectCharcsSubjectIdGet200ResponseDataInner) SetUnitName

SetUnitName gets a reference to the given string and assigns it to the UnitName field.

func (ContentV2ObjectCharcsSubjectIdGet200ResponseDataInner) ToMap

type ContentV2ObjectParentAllGet200Response

type ContentV2ObjectParentAllGet200Response struct {
	Data []ContentV2ObjectParentAllGet200ResponseDataInner `json:"data,omitempty"`
	// Error flag
	Error *bool `json:"error,omitempty"`
	// Error description
	ErrorText *string `json:"errorText,omitempty"`
	// Additional errors
	AdditionalErrors NullableString `json:"additionalErrors,omitempty"`
}

ContentV2ObjectParentAllGet200Response struct for ContentV2ObjectParentAllGet200Response

func NewContentV2ObjectParentAllGet200Response

func NewContentV2ObjectParentAllGet200Response() *ContentV2ObjectParentAllGet200Response

NewContentV2ObjectParentAllGet200Response instantiates a new ContentV2ObjectParentAllGet200Response 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

func NewContentV2ObjectParentAllGet200ResponseWithDefaults

func NewContentV2ObjectParentAllGet200ResponseWithDefaults() *ContentV2ObjectParentAllGet200Response

NewContentV2ObjectParentAllGet200ResponseWithDefaults instantiates a new ContentV2ObjectParentAllGet200Response 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

func (*ContentV2ObjectParentAllGet200Response) GetAdditionalErrors

func (o *ContentV2ObjectParentAllGet200Response) GetAdditionalErrors() string

GetAdditionalErrors returns the AdditionalErrors field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ContentV2ObjectParentAllGet200Response) GetAdditionalErrorsOk

func (o *ContentV2ObjectParentAllGet200Response) GetAdditionalErrorsOk() (*string, bool)

GetAdditionalErrorsOk returns a tuple with the AdditionalErrors field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*ContentV2ObjectParentAllGet200Response) GetData

GetData returns the Data field value if set, zero value otherwise.

func (*ContentV2ObjectParentAllGet200Response) GetDataOk

GetDataOk returns a tuple with the Data field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ContentV2ObjectParentAllGet200Response) GetError

GetError returns the Error field value if set, zero value otherwise.

func (*ContentV2ObjectParentAllGet200Response) GetErrorOk

func (o *ContentV2ObjectParentAllGet200Response) GetErrorOk() (*bool, bool)

GetErrorOk returns a tuple with the Error field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ContentV2ObjectParentAllGet200Response) GetErrorText

GetErrorText returns the ErrorText field value if set, zero value otherwise.

func (*ContentV2ObjectParentAllGet200Response) GetErrorTextOk

func (o *ContentV2ObjectParentAllGet200Response) GetErrorTextOk() (*string, bool)

GetErrorTextOk returns a tuple with the ErrorText field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ContentV2ObjectParentAllGet200Response) HasAdditionalErrors

func (o *ContentV2ObjectParentAllGet200Response) HasAdditionalErrors() bool

HasAdditionalErrors returns a boolean if a field has been set.

func (*ContentV2ObjectParentAllGet200Response) HasData

HasData returns a boolean if a field has been set.

func (*ContentV2ObjectParentAllGet200Response) HasError

HasError returns a boolean if a field has been set.

func (*ContentV2ObjectParentAllGet200Response) HasErrorText

func (o *ContentV2ObjectParentAllGet200Response) HasErrorText() bool

HasErrorText returns a boolean if a field has been set.

func (ContentV2ObjectParentAllGet200Response) MarshalJSON

func (o ContentV2ObjectParentAllGet200Response) MarshalJSON() ([]byte, error)

func (*ContentV2ObjectParentAllGet200Response) SetAdditionalErrors

func (o *ContentV2ObjectParentAllGet200Response) SetAdditionalErrors(v string)

SetAdditionalErrors gets a reference to the given NullableString and assigns it to the AdditionalErrors field.

func (*ContentV2ObjectParentAllGet200Response) SetAdditionalErrorsNil

func (o *ContentV2ObjectParentAllGet200Response) SetAdditionalErrorsNil()

SetAdditionalErrorsNil sets the value for AdditionalErrors to be an explicit nil

func (*ContentV2ObjectParentAllGet200Response) SetData

SetData gets a reference to the given []ContentV2ObjectParentAllGet200ResponseDataInner and assigns it to the Data field.

func (*ContentV2ObjectParentAllGet200Response) SetError

SetError gets a reference to the given bool and assigns it to the Error field.

func (*ContentV2ObjectParentAllGet200Response) SetErrorText

SetErrorText gets a reference to the given string and assigns it to the ErrorText field.

func (ContentV2ObjectParentAllGet200Response) ToMap

func (o ContentV2ObjectParentAllGet200Response) ToMap() (map[string]interface{}, error)

func (*ContentV2ObjectParentAllGet200Response) UnsetAdditionalErrors

func (o *ContentV2ObjectParentAllGet200Response) UnsetAdditionalErrors()

UnsetAdditionalErrors ensures that no value is present for AdditionalErrors, not even an explicit nil

type ContentV2ObjectParentAllGet200ResponseDataInner

type ContentV2ObjectParentAllGet200ResponseDataInner struct {
	// Category name
	Name *string `json:"name,omitempty"`
	// Parent category ID
	Id *int32 `json:"id,omitempty"`
	// Visibility on the site
	IsVisible *bool `json:"isVisible,omitempty"`
}

ContentV2ObjectParentAllGet200ResponseDataInner struct for ContentV2ObjectParentAllGet200ResponseDataInner

func NewContentV2ObjectParentAllGet200ResponseDataInner

func NewContentV2ObjectParentAllGet200ResponseDataInner() *ContentV2ObjectParentAllGet200ResponseDataInner

NewContentV2ObjectParentAllGet200ResponseDataInner instantiates a new ContentV2ObjectParentAllGet200ResponseDataInner 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

func NewContentV2ObjectParentAllGet200ResponseDataInnerWithDefaults

func NewContentV2ObjectParentAllGet200ResponseDataInnerWithDefaults() *ContentV2ObjectParentAllGet200ResponseDataInner

NewContentV2ObjectParentAllGet200ResponseDataInnerWithDefaults instantiates a new ContentV2ObjectParentAllGet200ResponseDataInner 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

func (*ContentV2ObjectParentAllGet200ResponseDataInner) GetId

GetId returns the Id field value if set, zero value otherwise.

func (*ContentV2ObjectParentAllGet200ResponseDataInner) GetIdOk

GetIdOk returns a tuple with the Id field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ContentV2ObjectParentAllGet200ResponseDataInner) GetIsVisible

GetIsVisible returns the IsVisible field value if set, zero value otherwise.

func (*ContentV2ObjectParentAllGet200ResponseDataInner) GetIsVisibleOk

GetIsVisibleOk returns a tuple with the IsVisible field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ContentV2ObjectParentAllGet200ResponseDataInner) GetName

GetName returns the Name field value if set, zero value otherwise.

func (*ContentV2ObjectParentAllGet200ResponseDataInner) GetNameOk

GetNameOk returns a tuple with the Name field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ContentV2ObjectParentAllGet200ResponseDataInner) HasId

HasId returns a boolean if a field has been set.

func (*ContentV2ObjectParentAllGet200ResponseDataInner) HasIsVisible

HasIsVisible returns a boolean if a field has been set.

func (*ContentV2ObjectParentAllGet200ResponseDataInner) HasName

HasName returns a boolean if a field has been set.

func (ContentV2ObjectParentAllGet200ResponseDataInner) MarshalJSON

func (*ContentV2ObjectParentAllGet200ResponseDataInner) SetId

SetId gets a reference to the given int32 and assigns it to the Id field.

func (*ContentV2ObjectParentAllGet200ResponseDataInner) SetIsVisible

SetIsVisible gets a reference to the given bool and assigns it to the IsVisible field.

func (*ContentV2ObjectParentAllGet200ResponseDataInner) SetName

SetName gets a reference to the given string and assigns it to the Name field.

func (ContentV2ObjectParentAllGet200ResponseDataInner) ToMap

func (o ContentV2ObjectParentAllGet200ResponseDataInner) ToMap() (map[string]interface{}, error)

type ContentV2ObjectParentAllGet401Response

type ContentV2ObjectParentAllGet401Response struct {
	// Error title
	Title *string `json:"title,omitempty"`
	// Error details
	Detail *string `json:"detail,omitempty"`
	// Internal error code
	Code *string `json:"code,omitempty"`
	// Unique request ID
	RequestId *string `json:"requestId,omitempty"`
	// WB internal service ID
	Origin *string `json:"origin,omitempty"`
	// HTTP status code
	Status *float32 `json:"status,omitempty"`
	// Text of the HTTP status code
	StatusText *string `json:"statusText,omitempty"`
	// Request date and time
	Timestamp *time.Time `json:"timestamp,omitempty"`
}

ContentV2ObjectParentAllGet401Response struct for ContentV2ObjectParentAllGet401Response

func NewContentV2ObjectParentAllGet401Response

func NewContentV2ObjectParentAllGet401Response() *ContentV2ObjectParentAllGet401Response

NewContentV2ObjectParentAllGet401Response instantiates a new ContentV2ObjectParentAllGet401Response 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

func NewContentV2ObjectParentAllGet401ResponseWithDefaults

func NewContentV2ObjectParentAllGet401ResponseWithDefaults() *ContentV2ObjectParentAllGet401Response

NewContentV2ObjectParentAllGet401ResponseWithDefaults instantiates a new ContentV2ObjectParentAllGet401Response 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

func (*ContentV2ObjectParentAllGet401Response) GetCode

GetCode returns the Code field value if set, zero value otherwise.

func (*ContentV2ObjectParentAllGet401Response) GetCodeOk

GetCodeOk returns a tuple with the Code field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ContentV2ObjectParentAllGet401Response) GetDetail

GetDetail returns the Detail field value if set, zero value otherwise.

func (*ContentV2ObjectParentAllGet401Response) GetDetailOk

func (o *ContentV2ObjectParentAllGet401Response) GetDetailOk() (*string, bool)

GetDetailOk returns a tuple with the Detail field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ContentV2ObjectParentAllGet401Response) GetOrigin

GetOrigin returns the Origin field value if set, zero value otherwise.

func (*ContentV2ObjectParentAllGet401Response) GetOriginOk

func (o *ContentV2ObjectParentAllGet401Response) GetOriginOk() (*string, bool)

GetOriginOk returns a tuple with the Origin field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ContentV2ObjectParentAllGet401Response) GetRequestId

GetRequestId returns the RequestId field value if set, zero value otherwise.

func (*ContentV2ObjectParentAllGet401Response) GetRequestIdOk

func (o *ContentV2ObjectParentAllGet401Response) GetRequestIdOk() (*string, bool)

GetRequestIdOk returns a tuple with the RequestId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ContentV2ObjectParentAllGet401Response) GetStatus

GetStatus returns the Status field value if set, zero value otherwise.

func (*ContentV2ObjectParentAllGet401Response) GetStatusOk

GetStatusOk returns a tuple with the Status field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ContentV2ObjectParentAllGet401Response) GetStatusText

GetStatusText returns the StatusText field value if set, zero value otherwise.

func (*ContentV2ObjectParentAllGet401Response) GetStatusTextOk

func (o *ContentV2ObjectParentAllGet401Response) GetStatusTextOk() (*string, bool)

GetStatusTextOk returns a tuple with the StatusText field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ContentV2ObjectParentAllGet401Response) GetTimestamp

GetTimestamp returns the Timestamp field value if set, zero value otherwise.

func (*ContentV2ObjectParentAllGet401Response) GetTimestampOk

func (o *ContentV2ObjectParentAllGet401Response) GetTimestampOk() (*time.Time, bool)

GetTimestampOk returns a tuple with the Timestamp field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ContentV2ObjectParentAllGet401Response) GetTitle

GetTitle returns the Title field value if set, zero value otherwise.

func (*ContentV2ObjectParentAllGet401Response) GetTitleOk

GetTitleOk returns a tuple with the Title field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ContentV2ObjectParentAllGet401Response) HasCode

HasCode returns a boolean if a field has been set.

func (*ContentV2ObjectParentAllGet401Response) HasDetail

HasDetail returns a boolean if a field has been set.

func (*ContentV2ObjectParentAllGet401Response) HasOrigin

HasOrigin returns a boolean if a field has been set.

func (*ContentV2ObjectParentAllGet401Response) HasRequestId

func (o *ContentV2ObjectParentAllGet401Response) HasRequestId() bool

HasRequestId returns a boolean if a field has been set.

func (*ContentV2ObjectParentAllGet401Response) HasStatus

HasStatus returns a boolean if a field has been set.

func (*ContentV2ObjectParentAllGet401Response) HasStatusText

func (o *ContentV2ObjectParentAllGet401Response) HasStatusText() bool

HasStatusText returns a boolean if a field has been set.

func (*ContentV2ObjectParentAllGet401Response) HasTimestamp

func (o *ContentV2ObjectParentAllGet401Response) HasTimestamp() bool

HasTimestamp returns a boolean if a field has been set.

func (*ContentV2ObjectParentAllGet401Response) HasTitle

HasTitle returns a boolean if a field has been set.

func (ContentV2ObjectParentAllGet401Response) MarshalJSON

func (o ContentV2ObjectParentAllGet401Response) MarshalJSON() ([]byte, error)

func (*ContentV2ObjectParentAllGet401Response) SetCode

SetCode gets a reference to the given string and assigns it to the Code field.

func (*ContentV2ObjectParentAllGet401Response) SetDetail

SetDetail gets a reference to the given string and assigns it to the Detail field.

func (*ContentV2ObjectParentAllGet401Response) SetOrigin

SetOrigin gets a reference to the given string and assigns it to the Origin field.

func (*ContentV2ObjectParentAllGet401Response) SetRequestId

SetRequestId gets a reference to the given string and assigns it to the RequestId field.

func (*ContentV2ObjectParentAllGet401Response) SetStatus

SetStatus gets a reference to the given float32 and assigns it to the Status field.

func (*ContentV2ObjectParentAllGet401Response) SetStatusText

func (o *ContentV2ObjectParentAllGet401Response) SetStatusText(v string)

SetStatusText gets a reference to the given string and assigns it to the StatusText field.

func (*ContentV2ObjectParentAllGet401Response) SetTimestamp

SetTimestamp gets a reference to the given time.Time and assigns it to the Timestamp field.

func (*ContentV2ObjectParentAllGet401Response) SetTitle

SetTitle gets a reference to the given string and assigns it to the Title field.

func (ContentV2ObjectParentAllGet401Response) ToMap

func (o ContentV2ObjectParentAllGet401Response) ToMap() (map[string]interface{}, error)

type ContentV2TagIdPatchRequest

type ContentV2TagIdPatchRequest struct {
	// Tag color
	Color *string `json:"color,omitempty"`
	// Tag name
	Name *string `json:"name,omitempty"`
}

ContentV2TagIdPatchRequest struct for ContentV2TagIdPatchRequest

func NewContentV2TagIdPatchRequest

func NewContentV2TagIdPatchRequest() *ContentV2TagIdPatchRequest

NewContentV2TagIdPatchRequest instantiates a new ContentV2TagIdPatchRequest 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

func NewContentV2TagIdPatchRequestWithDefaults

func NewContentV2TagIdPatchRequestWithDefaults() *ContentV2TagIdPatchRequest

NewContentV2TagIdPatchRequestWithDefaults instantiates a new ContentV2TagIdPatchRequest 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

func (*ContentV2TagIdPatchRequest) GetColor

func (o *ContentV2TagIdPatchRequest) GetColor() string

GetColor returns the Color field value if set, zero value otherwise.

func (*ContentV2TagIdPatchRequest) GetColorOk

func (o *ContentV2TagIdPatchRequest) GetColorOk() (*string, bool)

GetColorOk returns a tuple with the Color field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ContentV2TagIdPatchRequest) GetName

func (o *ContentV2TagIdPatchRequest) GetName() string

GetName returns the Name field value if set, zero value otherwise.

func (*ContentV2TagIdPatchRequest) GetNameOk

func (o *ContentV2TagIdPatchRequest) GetNameOk() (*string, bool)

GetNameOk returns a tuple with the Name field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ContentV2TagIdPatchRequest) HasColor

func (o *ContentV2TagIdPatchRequest) HasColor() bool

HasColor returns a boolean if a field has been set.

func (*ContentV2TagIdPatchRequest) HasName

func (o *ContentV2TagIdPatchRequest) HasName() bool

HasName returns a boolean if a field has been set.

func (ContentV2TagIdPatchRequest) MarshalJSON

func (o ContentV2TagIdPatchRequest) MarshalJSON() ([]byte, error)

func (*ContentV2TagIdPatchRequest) SetColor

func (o *ContentV2TagIdPatchRequest) SetColor(v string)

SetColor gets a reference to the given string and assigns it to the Color field.

func (*ContentV2TagIdPatchRequest) SetName

func (o *ContentV2TagIdPatchRequest) SetName(v string)

SetName gets a reference to the given string and assigns it to the Name field.

func (ContentV2TagIdPatchRequest) ToMap

func (o ContentV2TagIdPatchRequest) ToMap() (map[string]interface{}, error)

type ContentV2TagNomenclatureLinkPostRequest

type ContentV2TagNomenclatureLinkPostRequest struct {
	// WB article
	NmID *int32 `json:"nmID,omitempty"`
	// An array of numeric tag IDs.<br> When removing a tag from a product card, the tag itself is not removed.<br> To add tags to existing ones in the product card, you need to specify in the request the new tags and the tags that are already exist in the product card.
	TagsIDs []int32 `json:"tagsIDs,omitempty"`
}

ContentV2TagNomenclatureLinkPostRequest struct for ContentV2TagNomenclatureLinkPostRequest

func NewContentV2TagNomenclatureLinkPostRequest

func NewContentV2TagNomenclatureLinkPostRequest() *ContentV2TagNomenclatureLinkPostRequest

NewContentV2TagNomenclatureLinkPostRequest instantiates a new ContentV2TagNomenclatureLinkPostRequest 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

func NewContentV2TagNomenclatureLinkPostRequestWithDefaults

func NewContentV2TagNomenclatureLinkPostRequestWithDefaults() *ContentV2TagNomenclatureLinkPostRequest

NewContentV2TagNomenclatureLinkPostRequestWithDefaults instantiates a new ContentV2TagNomenclatureLinkPostRequest 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

func (*ContentV2TagNomenclatureLinkPostRequest) GetNmID

GetNmID returns the NmID field value if set, zero value otherwise.

func (*ContentV2TagNomenclatureLinkPostRequest) GetNmIDOk

GetNmIDOk returns a tuple with the NmID field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ContentV2TagNomenclatureLinkPostRequest) GetTagsIDs

GetTagsIDs returns the TagsIDs field value if set, zero value otherwise.

func (*ContentV2TagNomenclatureLinkPostRequest) GetTagsIDsOk

func (o *ContentV2TagNomenclatureLinkPostRequest) GetTagsIDsOk() ([]int32, bool)

GetTagsIDsOk returns a tuple with the TagsIDs field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ContentV2TagNomenclatureLinkPostRequest) HasNmID

HasNmID returns a boolean if a field has been set.

func (*ContentV2TagNomenclatureLinkPostRequest) HasTagsIDs

HasTagsIDs returns a boolean if a field has been set.

func (ContentV2TagNomenclatureLinkPostRequest) MarshalJSON

func (o ContentV2TagNomenclatureLinkPostRequest) MarshalJSON() ([]byte, error)

func (*ContentV2TagNomenclatureLinkPostRequest) SetNmID

SetNmID gets a reference to the given int32 and assigns it to the NmID field.

func (*ContentV2TagNomenclatureLinkPostRequest) SetTagsIDs

SetTagsIDs gets a reference to the given []int32 and assigns it to the TagsIDs field.

func (ContentV2TagNomenclatureLinkPostRequest) ToMap

func (o ContentV2TagNomenclatureLinkPostRequest) ToMap() (map[string]interface{}, error)

type ContentV2TagPostRequest

type ContentV2TagPostRequest struct {
	// Tag color.  Available colors:   - `D1CFD7` — grey   - `FEE0E0` — red   - `ECDAFF` — purple   - `E4EAFF` — blue   - `DEF1DD` — green   - `FFECC7` — yellow
	Color *string `json:"color,omitempty"`
	// Tag name
	Name *string `json:"name,omitempty"`
}

ContentV2TagPostRequest struct for ContentV2TagPostRequest

func NewContentV2TagPostRequest

func NewContentV2TagPostRequest() *ContentV2TagPostRequest

NewContentV2TagPostRequest instantiates a new ContentV2TagPostRequest 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

func NewContentV2TagPostRequestWithDefaults

func NewContentV2TagPostRequestWithDefaults() *ContentV2TagPostRequest

NewContentV2TagPostRequestWithDefaults instantiates a new ContentV2TagPostRequest 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

func (*ContentV2TagPostRequest) GetColor

func (o *ContentV2TagPostRequest) GetColor() string

GetColor returns the Color field value if set, zero value otherwise.

func (*ContentV2TagPostRequest) GetColorOk

func (o *ContentV2TagPostRequest) GetColorOk() (*string, bool)

GetColorOk returns a tuple with the Color field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ContentV2TagPostRequest) GetName

func (o *ContentV2TagPostRequest) GetName() string

GetName returns the Name field value if set, zero value otherwise.

func (*ContentV2TagPostRequest) GetNameOk

func (o *ContentV2TagPostRequest) GetNameOk() (*string, bool)

GetNameOk returns a tuple with the Name field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ContentV2TagPostRequest) HasColor

func (o *ContentV2TagPostRequest) HasColor() bool

HasColor returns a boolean if a field has been set.

func (*ContentV2TagPostRequest) HasName

func (o *ContentV2TagPostRequest) HasName() bool

HasName returns a boolean if a field has been set.

func (ContentV2TagPostRequest) MarshalJSON

func (o ContentV2TagPostRequest) MarshalJSON() ([]byte, error)

func (*ContentV2TagPostRequest) SetColor

func (o *ContentV2TagPostRequest) SetColor(v string)

SetColor gets a reference to the given string and assigns it to the Color field.

func (*ContentV2TagPostRequest) SetName

func (o *ContentV2TagPostRequest) SetName(v string)

SetName gets a reference to the given string and assigns it to the Name field.

func (ContentV2TagPostRequest) ToMap

func (o ContentV2TagPostRequest) ToMap() (map[string]interface{}, error)

type ContentV2TagsGet200Response

type ContentV2TagsGet200Response struct {
	Data *ContentV2TagsGet200ResponseData `json:"data,omitempty"`
	// Error flag
	Error *bool `json:"error,omitempty"`
	// Error description
	ErrorText *string `json:"errorText,omitempty"`
	// Additional errors
	AdditionalErrors NullableString `json:"additionalErrors,omitempty"`
}

ContentV2TagsGet200Response struct for ContentV2TagsGet200Response

func NewContentV2TagsGet200Response

func NewContentV2TagsGet200Response() *ContentV2TagsGet200Response

NewContentV2TagsGet200Response instantiates a new ContentV2TagsGet200Response 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

func NewContentV2TagsGet200ResponseWithDefaults

func NewContentV2TagsGet200ResponseWithDefaults() *ContentV2TagsGet200Response

NewContentV2TagsGet200ResponseWithDefaults instantiates a new ContentV2TagsGet200Response 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

func (*ContentV2TagsGet200Response) GetAdditionalErrors

func (o *ContentV2TagsGet200Response) GetAdditionalErrors() string

GetAdditionalErrors returns the AdditionalErrors field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ContentV2TagsGet200Response) GetAdditionalErrorsOk

func (o *ContentV2TagsGet200Response) GetAdditionalErrorsOk() (*string, bool)

GetAdditionalErrorsOk returns a tuple with the AdditionalErrors field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*ContentV2TagsGet200Response) GetData

GetData returns the Data field value if set, zero value otherwise.

func (*ContentV2TagsGet200Response) GetDataOk

GetDataOk returns a tuple with the Data field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ContentV2TagsGet200Response) GetError

func (o *ContentV2TagsGet200Response) GetError() bool

GetError returns the Error field value if set, zero value otherwise.

func (*ContentV2TagsGet200Response) GetErrorOk

func (o *ContentV2TagsGet200Response) GetErrorOk() (*bool, bool)

GetErrorOk returns a tuple with the Error field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ContentV2TagsGet200Response) GetErrorText

func (o *ContentV2TagsGet200Response) GetErrorText() string

GetErrorText returns the ErrorText field value if set, zero value otherwise.

func (*ContentV2TagsGet200Response) GetErrorTextOk

func (o *ContentV2TagsGet200Response) GetErrorTextOk() (*string, bool)

GetErrorTextOk returns a tuple with the ErrorText field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ContentV2TagsGet200Response) HasAdditionalErrors

func (o *ContentV2TagsGet200Response) HasAdditionalErrors() bool

HasAdditionalErrors returns a boolean if a field has been set.

func (*ContentV2TagsGet200Response) HasData

func (o *ContentV2TagsGet200Response) HasData() bool

HasData returns a boolean if a field has been set.

func (*ContentV2TagsGet200Response) HasError

func (o *ContentV2TagsGet200Response) HasError() bool

HasError returns a boolean if a field has been set.

func (*ContentV2TagsGet200Response) HasErrorText

func (o *ContentV2TagsGet200Response) HasErrorText() bool

HasErrorText returns a boolean if a field has been set.

func (ContentV2TagsGet200Response) MarshalJSON

func (o ContentV2TagsGet200Response) MarshalJSON() ([]byte, error)

func (*ContentV2TagsGet200Response) SetAdditionalErrors

func (o *ContentV2TagsGet200Response) SetAdditionalErrors(v string)

SetAdditionalErrors gets a reference to the given NullableString and assigns it to the AdditionalErrors field.

func (*ContentV2TagsGet200Response) SetAdditionalErrorsNil

func (o *ContentV2TagsGet200Response) SetAdditionalErrorsNil()

SetAdditionalErrorsNil sets the value for AdditionalErrors to be an explicit nil

func (*ContentV2TagsGet200Response) SetData

SetData gets a reference to the given ContentV2TagsGet200ResponseData and assigns it to the Data field.

func (*ContentV2TagsGet200Response) SetError

func (o *ContentV2TagsGet200Response) SetError(v bool)

SetError gets a reference to the given bool and assigns it to the Error field.

func (*ContentV2TagsGet200Response) SetErrorText

func (o *ContentV2TagsGet200Response) SetErrorText(v string)

SetErrorText gets a reference to the given string and assigns it to the ErrorText field.

func (ContentV2TagsGet200Response) ToMap

func (o ContentV2TagsGet200Response) ToMap() (map[string]interface{}, error)

func (*ContentV2TagsGet200Response) UnsetAdditionalErrors

func (o *ContentV2TagsGet200Response) UnsetAdditionalErrors()

UnsetAdditionalErrors ensures that no value is present for AdditionalErrors, not even an explicit nil

type ContentV2TagsGet200ResponseData

type ContentV2TagsGet200ResponseData struct {
	// Numeric tag identifier
	Id *int32 `json:"id,omitempty"`
	// Tag color
	Color *string `json:"color,omitempty"`
	// Tag name
	Name *string `json:"name,omitempty"`
}

ContentV2TagsGet200ResponseData struct for ContentV2TagsGet200ResponseData

func NewContentV2TagsGet200ResponseData

func NewContentV2TagsGet200ResponseData() *ContentV2TagsGet200ResponseData

NewContentV2TagsGet200ResponseData instantiates a new ContentV2TagsGet200ResponseData 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

func NewContentV2TagsGet200ResponseDataWithDefaults

func NewContentV2TagsGet200ResponseDataWithDefaults() *ContentV2TagsGet200ResponseData

NewContentV2TagsGet200ResponseDataWithDefaults instantiates a new ContentV2TagsGet200ResponseData 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

func (*ContentV2TagsGet200ResponseData) GetColor

GetColor returns the Color field value if set, zero value otherwise.

func (*ContentV2TagsGet200ResponseData) GetColorOk

func (o *ContentV2TagsGet200ResponseData) GetColorOk() (*string, bool)

GetColorOk returns a tuple with the Color field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ContentV2TagsGet200ResponseData) GetId

GetId returns the Id field value if set, zero value otherwise.

func (*ContentV2TagsGet200ResponseData) GetIdOk

func (o *ContentV2TagsGet200ResponseData) GetIdOk() (*int32, bool)

GetIdOk returns a tuple with the Id field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ContentV2TagsGet200ResponseData) GetName

GetName returns the Name field value if set, zero value otherwise.

func (*ContentV2TagsGet200ResponseData) GetNameOk

func (o *ContentV2TagsGet200ResponseData) GetNameOk() (*string, bool)

GetNameOk returns a tuple with the Name field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ContentV2TagsGet200ResponseData) HasColor

func (o *ContentV2TagsGet200ResponseData) HasColor() bool

HasColor returns a boolean if a field has been set.

func (*ContentV2TagsGet200ResponseData) HasId

HasId returns a boolean if a field has been set.

func (*ContentV2TagsGet200ResponseData) HasName

HasName returns a boolean if a field has been set.

func (ContentV2TagsGet200ResponseData) MarshalJSON

func (o ContentV2TagsGet200ResponseData) MarshalJSON() ([]byte, error)

func (*ContentV2TagsGet200ResponseData) SetColor

func (o *ContentV2TagsGet200ResponseData) SetColor(v string)

SetColor gets a reference to the given string and assigns it to the Color field.

func (*ContentV2TagsGet200ResponseData) SetId

SetId gets a reference to the given int32 and assigns it to the Id field.

func (*ContentV2TagsGet200ResponseData) SetName

SetName gets a reference to the given string and assigns it to the Name field.

func (ContentV2TagsGet200ResponseData) ToMap

func (o ContentV2TagsGet200ResponseData) ToMap() (map[string]interface{}, error)

type ContentV2TagsGet402Response

type ContentV2TagsGet402Response struct {
	// Error title
	Title *string `json:"title,omitempty"`
	// Error details. The error is only returned to services from the [Solutions for business Catalog](https://dev.wildberries.ru/business-solutions)
	Detail *string `json:"detail,omitempty"`
}

ContentV2TagsGet402Response struct for ContentV2TagsGet402Response

func NewContentV2TagsGet402Response

func NewContentV2TagsGet402Response() *ContentV2TagsGet402Response

NewContentV2TagsGet402Response instantiates a new ContentV2TagsGet402Response 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

func NewContentV2TagsGet402ResponseWithDefaults

func NewContentV2TagsGet402ResponseWithDefaults() *ContentV2TagsGet402Response

NewContentV2TagsGet402ResponseWithDefaults instantiates a new ContentV2TagsGet402Response 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

func (*ContentV2TagsGet402Response) GetDetail

func (o *ContentV2TagsGet402Response) GetDetail() string

GetDetail returns the Detail field value if set, zero value otherwise.

func (*ContentV2TagsGet402Response) GetDetailOk

func (o *ContentV2TagsGet402Response) GetDetailOk() (*string, bool)

GetDetailOk returns a tuple with the Detail field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ContentV2TagsGet402Response) GetTitle

func (o *ContentV2TagsGet402Response) GetTitle() string

GetTitle returns the Title field value if set, zero value otherwise.

func (*ContentV2TagsGet402Response) GetTitleOk

func (o *ContentV2TagsGet402Response) GetTitleOk() (*string, bool)

GetTitleOk returns a tuple with the Title field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ContentV2TagsGet402Response) HasDetail

func (o *ContentV2TagsGet402Response) HasDetail() bool

HasDetail returns a boolean if a field has been set.

func (*ContentV2TagsGet402Response) HasTitle

func (o *ContentV2TagsGet402Response) HasTitle() bool

HasTitle returns a boolean if a field has been set.

func (ContentV2TagsGet402Response) MarshalJSON

func (o ContentV2TagsGet402Response) MarshalJSON() ([]byte, error)

func (*ContentV2TagsGet402Response) SetDetail

func (o *ContentV2TagsGet402Response) SetDetail(v string)

SetDetail gets a reference to the given string and assigns it to the Detail field.

func (*ContentV2TagsGet402Response) SetTitle

func (o *ContentV2TagsGet402Response) SetTitle(v string)

SetTitle gets a reference to the given string and assigns it to the Title field.

func (ContentV2TagsGet402Response) ToMap

func (o ContentV2TagsGet402Response) ToMap() (map[string]interface{}, error)

type ContentV3MediaFilePost200Response

type ContentV3MediaFilePost200Response struct {
	Data map[string]interface{} `json:"data,omitempty"`
	// Error flag
	Error *bool `json:"error,omitempty"`
	// Error description
	ErrorText *string `json:"errorText,omitempty"`
	// Additional errors
	AdditionalErrors map[string]interface{} `json:"additionalErrors,omitempty"`
}

ContentV3MediaFilePost200Response struct for ContentV3MediaFilePost200Response

func NewContentV3MediaFilePost200Response

func NewContentV3MediaFilePost200Response() *ContentV3MediaFilePost200Response

NewContentV3MediaFilePost200Response instantiates a new ContentV3MediaFilePost200Response 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

func NewContentV3MediaFilePost200ResponseWithDefaults

func NewContentV3MediaFilePost200ResponseWithDefaults() *ContentV3MediaFilePost200Response

NewContentV3MediaFilePost200ResponseWithDefaults instantiates a new ContentV3MediaFilePost200Response 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

func (*ContentV3MediaFilePost200Response) GetAdditionalErrors

func (o *ContentV3MediaFilePost200Response) GetAdditionalErrors() map[string]interface{}

GetAdditionalErrors returns the AdditionalErrors field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ContentV3MediaFilePost200Response) GetAdditionalErrorsOk

func (o *ContentV3MediaFilePost200Response) GetAdditionalErrorsOk() (map[string]interface{}, bool)

GetAdditionalErrorsOk returns a tuple with the AdditionalErrors field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*ContentV3MediaFilePost200Response) GetData

func (o *ContentV3MediaFilePost200Response) GetData() map[string]interface{}

GetData returns the Data field value if set, zero value otherwise.

func (*ContentV3MediaFilePost200Response) GetDataOk

func (o *ContentV3MediaFilePost200Response) GetDataOk() (map[string]interface{}, bool)

GetDataOk returns a tuple with the Data field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ContentV3MediaFilePost200Response) GetError

GetError returns the Error field value if set, zero value otherwise.

func (*ContentV3MediaFilePost200Response) GetErrorOk

func (o *ContentV3MediaFilePost200Response) GetErrorOk() (*bool, bool)

GetErrorOk returns a tuple with the Error field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ContentV3MediaFilePost200Response) GetErrorText

func (o *ContentV3MediaFilePost200Response) GetErrorText() string

GetErrorText returns the ErrorText field value if set, zero value otherwise.

func (*ContentV3MediaFilePost200Response) GetErrorTextOk

func (o *ContentV3MediaFilePost200Response) GetErrorTextOk() (*string, bool)

GetErrorTextOk returns a tuple with the ErrorText field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ContentV3MediaFilePost200Response) HasAdditionalErrors

func (o *ContentV3MediaFilePost200Response) HasAdditionalErrors() bool

HasAdditionalErrors returns a boolean if a field has been set.

func (*ContentV3MediaFilePost200Response) HasData

HasData returns a boolean if a field has been set.

func (*ContentV3MediaFilePost200Response) HasError

HasError returns a boolean if a field has been set.

func (*ContentV3MediaFilePost200Response) HasErrorText

func (o *ContentV3MediaFilePost200Response) HasErrorText() bool

HasErrorText returns a boolean if a field has been set.

func (ContentV3MediaFilePost200Response) MarshalJSON

func (o ContentV3MediaFilePost200Response) MarshalJSON() ([]byte, error)

func (*ContentV3MediaFilePost200Response) SetAdditionalErrors

func (o *ContentV3MediaFilePost200Response) SetAdditionalErrors(v map[string]interface{})

SetAdditionalErrors gets a reference to the given map[string]interface{} and assigns it to the AdditionalErrors field.

func (*ContentV3MediaFilePost200Response) SetData

func (o *ContentV3MediaFilePost200Response) SetData(v map[string]interface{})

SetData gets a reference to the given map[string]interface{} and assigns it to the Data field.

func (*ContentV3MediaFilePost200Response) SetError

func (o *ContentV3MediaFilePost200Response) SetError(v bool)

SetError gets a reference to the given bool and assigns it to the Error field.

func (*ContentV3MediaFilePost200Response) SetErrorText

func (o *ContentV3MediaFilePost200Response) SetErrorText(v string)

SetErrorText gets a reference to the given string and assigns it to the ErrorText field.

func (ContentV3MediaFilePost200Response) ToMap

func (o ContentV3MediaFilePost200Response) ToMap() (map[string]interface{}, error)

type ContentV3MediaSavePostRequest

type ContentV3MediaSavePostRequest struct {
	// Wildberries article
	NmId *int32 `json:"nmId,omitempty"`
	// Links to images in the order that they are on the card, and a video at any position of the array
	Data []string `json:"data,omitempty"`
}

ContentV3MediaSavePostRequest struct for ContentV3MediaSavePostRequest

func NewContentV3MediaSavePostRequest

func NewContentV3MediaSavePostRequest() *ContentV3MediaSavePostRequest

NewContentV3MediaSavePostRequest instantiates a new ContentV3MediaSavePostRequest 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

func NewContentV3MediaSavePostRequestWithDefaults

func NewContentV3MediaSavePostRequestWithDefaults() *ContentV3MediaSavePostRequest

NewContentV3MediaSavePostRequestWithDefaults instantiates a new ContentV3MediaSavePostRequest 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

func (*ContentV3MediaSavePostRequest) GetData

func (o *ContentV3MediaSavePostRequest) GetData() []string

GetData returns the Data field value if set, zero value otherwise.

func (*ContentV3MediaSavePostRequest) GetDataOk

func (o *ContentV3MediaSavePostRequest) GetDataOk() ([]string, bool)

GetDataOk returns a tuple with the Data field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ContentV3MediaSavePostRequest) GetNmId

func (o *ContentV3MediaSavePostRequest) GetNmId() int32

GetNmId returns the NmId field value if set, zero value otherwise.

func (*ContentV3MediaSavePostRequest) GetNmIdOk

func (o *ContentV3MediaSavePostRequest) GetNmIdOk() (*int32, bool)

GetNmIdOk returns a tuple with the NmId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ContentV3MediaSavePostRequest) HasData

func (o *ContentV3MediaSavePostRequest) HasData() bool

HasData returns a boolean if a field has been set.

func (*ContentV3MediaSavePostRequest) HasNmId

func (o *ContentV3MediaSavePostRequest) HasNmId() bool

HasNmId returns a boolean if a field has been set.

func (ContentV3MediaSavePostRequest) MarshalJSON

func (o ContentV3MediaSavePostRequest) MarshalJSON() ([]byte, error)

func (*ContentV3MediaSavePostRequest) SetData

func (o *ContentV3MediaSavePostRequest) SetData(v []string)

SetData gets a reference to the given []string and assigns it to the Data field.

func (*ContentV3MediaSavePostRequest) SetNmId

func (o *ContentV3MediaSavePostRequest) SetNmId(v int32)

SetNmId gets a reference to the given int32 and assigns it to the NmId field.

func (ContentV3MediaSavePostRequest) ToMap

func (o ContentV3MediaSavePostRequest) ToMap() (map[string]interface{}, error)

type CreatingProductCardsAPIService

type CreatingProductCardsAPIService service

CreatingProductCardsAPIService CreatingProductCardsAPI service

func (*CreatingProductCardsAPIService) ContentV2BarcodesPost

ContentV2BarcodesPost Generation of SKUs

Generates array of unique SKUs to create size of the product card

<div class="description_limit"> <a href="/openapi/api-information#tag/Introduction/Rate-Limits">Request limit</a> per one seller's account for all methods in the <strong>Content</strong> category:

| Period | Limit | Interval | Burst | | --- | --- | --- | --- | | 1 min | 100 requests | 600 ms | 5 requests |

Exceptions are the methods: <ul>

<li><a href="/openapi/work-with-products#tag/Creating-Product-Cards/paths/~1content~1v2~1cards~1upload/post">creating product cards</a></li>
<li><a href="/openapi/work-with-products#tag/Creating-Product-Cards/paths/~1content~1v2~1cards~1upload~1add/post">creating product cards with merge</a></li>
<li><a href="/openapi/work-with-products#tag/Product-Cards/paths/~1content~1v2~1cards~1update/post">editing product cards</a></li>
<li><a href="/openapi/work-with-products#tag/Product-Cards/paths/~1content~1v2~1cards~1error~1list/post">getting failed product cards with errors</a></li>
<li><a href="/openapi/work-with-products#tag/Product-Cards/paths/~1content~1v2~1cards~1delete~1trash/post">transfering product card to trash</a></li>
<li><a href="/openapi/work-with-products#tag/Product-Cards/paths/~1content~1v2~1cards~1recover/post">recovering product card from trash</a></li>

</ul> </div>

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiContentV2BarcodesPostRequest

func (*CreatingProductCardsAPIService) ContentV2BarcodesPostExecute

Execute executes the request

@return ContentV2BarcodesPost200Response

func (*CreatingProductCardsAPIService) ContentV2CardsLimitsGet

ContentV2CardsLimitsGet Limits for the Product Cards

The method allows to get separately free and paid vendor limits for creating product cards.<br> To calculate the number of cards that can be created, use the formula: (freeLimits + paidLimits) - Number of cards created.<br> All cards that can be obtained using the [product cards list](/openapi/work-with-products#tag/Product-Cards/paths/~1content~1v2~1get~1cards~1list/post) and [list of product cards that are in the trash](/openapi/work-with-products#tag/Product-Cards/paths/~1content~1v2~1get~1cards~1trash/post) methods are considered created.

<div class="description_limit"> <a href="/openapi/api-information#tag/Introduction/Rate-Limits">Request limit</a> per one seller's account for all methods in the <strong>Content</strong> category:

| Period | Limit | Interval | Burst | | --- | --- | --- | --- | | 1 min | 100 requests | 600 ms | 5 requests |

Exceptions are the methods: <ul>

<li><a href="/openapi/work-with-products#tag/Creating-Product-Cards/paths/~1content~1v2~1cards~1upload/post">creating product cards</a></li>
<li><a href="/openapi/work-with-products#tag/Creating-Product-Cards/paths/~1content~1v2~1cards~1upload~1add/post">creating product cards with merge</a></li>
<li><a href="/openapi/work-with-products#tag/Product-Cards/paths/~1content~1v2~1cards~1update/post">editing product cards</a></li>
<li><a href="/openapi/work-with-products#tag/Product-Cards/paths/~1content~1v2~1cards~1error~1list/post">getting failed product cards with errors</a></li>
<li><a href="/openapi/work-with-products#tag/Product-Cards/paths/~1content~1v2~1cards~1delete~1trash/post">transfering product card to trash</a></li>
<li><a href="/openapi/work-with-products#tag/Product-Cards/paths/~1content~1v2~1cards~1recover/post">recovering product card from trash</a></li>

</ul> </div>

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiContentV2CardsLimitsGetRequest

func (*CreatingProductCardsAPIService) ContentV2CardsLimitsGetExecute

Execute executes the request

@return ContentV2CardsLimitsGet200Response

func (*CreatingProductCardsAPIService) ContentV2CardsUploadAddPost

ContentV2CardsUploadAddPost Create Product Cards with Merge

The method creates product cards by merging it with existing individual cards and groups of merged cards. There can be no more than 30 cards in one group of merged product cards, respectively, you can create no more than 29 product cards in one request. <br><br> The dimensions of the products can only be specified in `centimeters`, and the weight of packed products must be specified in `kilograms`.<br> If this method response is Success (`200`) but product card was not updated, check errors using [list of failed nomenclature with errors](/openapi/work-with-products#tag/Product-Cards/paths/~1content~1v2~1cards~1error~1list/post).<br> Product cards are created asynchronously. The process of synchronizing a new card with services may take up to 30 minutes. During this time, you can't add inventory to warehouses and set prices.

<div class="description_limit"> <a href="/openapi/api-information#tag/Introduction/Rate-Limits">Request limit</a> per one seller's account:

| Type | Period | Limit | Interval | Burst | | --- | --- | --- | --- | --- | | Personal | 1 min | 10 requests | 6 s | 5 requests | | Service | 1 min | 10 requests | 6 s | 5 requests | | Base | 2 h | 1 request | 2 h | 1 request | </div>

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiContentV2CardsUploadAddPostRequest

func (*CreatingProductCardsAPIService) ContentV2CardsUploadAddPostExecute

Execute executes the request

@return ResponseCardCreate

func (*CreatingProductCardsAPIService) ContentV2CardsUploadPost

ContentV2CardsUploadPost Create Product Cards

Creates products cards. You can specify product description and characteristics.<br>

How to create a card:

  1. Get [parent categories list](/openapi/work-with-products#tag/Categories-Subjects-and-Characteristics/paths/~1content~1v2~1object~1parent~1all/get)
  2. Get [the category and get all subjects](/openapi/work-with-products#tag/Categories-Subjects-and-Characteristics/paths/~1content~1v2~1object~1all/get)
  3. Choose [the subject and get all available characteristics](/openapi/work-with-products#tag/Categories-Subjects-and-Characteristics/paths/~1content~1v2~1object~1charcs~1%7BsubjectId%7D/get). For `Color`, `Gender`, `Country of origin`, `Season`, `VAT rate`, `HS-code` characteristics use values from [category](/openapi/work-with-products#tag/Categories-Subjects-and-Characteristics).
  4. Send the request. If the response is Success (`200`) but the card was not created, check errors using [list of failed product card with errors](/openapi/work-with-products#tag/Product-Cards/paths/~1content~1v2~1cards~1error~1list/post).

The dimensions of the products can only be specified in `centimeters`, and the weight of packed products must be specified in `kilograms`.<br>

With one request you can create maximum 100 individual product cards or 100 groups of merged product cards, 30 product cards (`nmID`) in each. Maximum request size is 10 Mb.<br>

Product cards are created asynchronously. The process of synchronizing a new card with services may take up to 30 minutes. During this time, you can't add inventory to warehouses and set prices.

<div class="description_important">

If there were errors during queue processing, the product card is considered invalid

</div>

<div class="description_limit"> <a href="/openapi/api-information#tag/Introduction/Rate-Limits">Request limit</a> per one seller's account:

| Period | Limit | Interval | Burst | | --- | --- | --- | --- | | 1 min | 10 requests | 6 s | 5 requests | </div>

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiContentV2CardsUploadPostRequest

func (*CreatingProductCardsAPIService) ContentV2CardsUploadPostExecute

Execute executes the request

@return ResponseCardCreate

type Error

type Error struct {
	// Error code
	Code *string `json:"code,omitempty"`
	// Error description
	Message *string `json:"message,omitempty"`
	// Additional data enriching the error
	Data map[string]interface{} `json:"data,omitempty"`
}

Error struct for Error

func NewError

func NewError() *Error

NewError instantiates a new Error 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

func NewErrorWithDefaults

func NewErrorWithDefaults() *Error

NewErrorWithDefaults instantiates a new Error 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

func (*Error) GetCode

func (o *Error) GetCode() string

GetCode returns the Code field value if set, zero value otherwise.

func (*Error) GetCodeOk

func (o *Error) GetCodeOk() (*string, bool)

GetCodeOk returns a tuple with the Code field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Error) GetData

func (o *Error) GetData() map[string]interface{}

GetData returns the Data field value if set, zero value otherwise (both if not set or set to explicit null).

func (*Error) GetDataOk

func (o *Error) GetDataOk() (map[string]interface{}, bool)

GetDataOk returns a tuple with the Data field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*Error) GetMessage

func (o *Error) GetMessage() string

GetMessage returns the Message field value if set, zero value otherwise.

func (*Error) GetMessageOk

func (o *Error) GetMessageOk() (*string, bool)

GetMessageOk returns a tuple with the Message field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Error) HasCode

func (o *Error) HasCode() bool

HasCode returns a boolean if a field has been set.

func (*Error) HasData

func (o *Error) HasData() bool

HasData returns a boolean if a field has been set.

func (*Error) HasMessage

func (o *Error) HasMessage() bool

HasMessage returns a boolean if a field has been set.

func (Error) MarshalJSON

func (o Error) MarshalJSON() ([]byte, error)

func (*Error) SetCode

func (o *Error) SetCode(v string)

SetCode gets a reference to the given string and assigns it to the Code field.

func (*Error) SetData

func (o *Error) SetData(v map[string]interface{})

SetData gets a reference to the given map[string]interface{} and assigns it to the Data field.

func (*Error) SetMessage

func (o *Error) SetMessage(v string)

SetMessage gets a reference to the given string and assigns it to the Message field.

func (Error) ToMap

func (o Error) ToMap() (map[string]interface{}, error)

type GenericOpenAPIError

type GenericOpenAPIError struct {
	// contains filtered or unexported fields
}

GenericOpenAPIError Provides access to the body, error and model on returned errors.

func (GenericOpenAPIError) Body

func (e GenericOpenAPIError) Body() []byte

Body returns the raw bytes of the response

func (GenericOpenAPIError) Error

func (e GenericOpenAPIError) Error() string

Error returns non-empty string if there was an error.

func (GenericOpenAPIError) Model

func (e GenericOpenAPIError) Model() interface{}

Model returns the unpacked model of the error

type Good

type Good struct {
	// WB article
	NmID int32 `json:"nmID"`
	// Price. You can get the currency with the [Get products with prices](./work-with-products#tag/Prices-and-Discounts/paths/~1api~1v2~1list~1goods~1filter/get) and [Get products with prices by articles](./work-with-products#tag/Prices-and-Discounts/paths/~1api~1v2~1list~1goods~1filter/post) methods, the `currencyIsoCode4217` field
	Price *int32 `json:"price,omitempty"`
	// Discount, %
	Discount *int32 `json:"discount,omitempty"`
}

Good struct for Good

func NewGood

func NewGood(nmID int32) *Good

NewGood instantiates a new Good 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

func NewGoodWithDefaults

func NewGoodWithDefaults() *Good

NewGoodWithDefaults instantiates a new Good 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

func (*Good) GetDiscount

func (o *Good) GetDiscount() int32

GetDiscount returns the Discount field value if set, zero value otherwise.

func (*Good) GetDiscountOk

func (o *Good) GetDiscountOk() (*int32, bool)

GetDiscountOk returns a tuple with the Discount field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Good) GetNmID

func (o *Good) GetNmID() int32

GetNmID returns the NmID field value

func (*Good) GetNmIDOk

func (o *Good) GetNmIDOk() (*int32, bool)

GetNmIDOk returns a tuple with the NmID field value and a boolean to check if the value has been set.

func (*Good) GetPrice

func (o *Good) GetPrice() int32

GetPrice returns the Price field value if set, zero value otherwise.

func (*Good) GetPriceOk

func (o *Good) GetPriceOk() (*int32, bool)

GetPriceOk returns a tuple with the Price field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Good) HasDiscount

func (o *Good) HasDiscount() bool

HasDiscount returns a boolean if a field has been set.

func (*Good) HasPrice

func (o *Good) HasPrice() bool

HasPrice returns a boolean if a field has been set.

func (Good) MarshalJSON

func (o Good) MarshalJSON() ([]byte, error)

func (*Good) SetDiscount

func (o *Good) SetDiscount(v int32)

SetDiscount gets a reference to the given int32 and assigns it to the Discount field.

func (*Good) SetNmID

func (o *Good) SetNmID(v int32)

SetNmID sets field value

func (*Good) SetPrice

func (o *Good) SetPrice(v int32)

SetPrice gets a reference to the given int32 and assigns it to the Price field.

func (Good) ToMap

func (o Good) ToMap() (map[string]interface{}, error)

func (*Good) UnmarshalJSON

func (o *Good) UnmarshalJSON(data []byte) (err error)

type GoodBufferHistory

type GoodBufferHistory struct {
	// WB article
	NmID *int32 `json:"nmID,omitempty"`
	// Seller's article
	VendorCode *string `json:"vendorCode,omitempty"`
	// Size ID. In the Content methods this is the `chrtID` field
	SizeID *int32 `json:"sizeID,omitempty"`
	// Size
	TechSizeName *string `json:"techSizeName,omitempty"`
	// Price
	Price *int32 `json:"price,omitempty"`
	// Currency, according to ISO 4217
	CurrencyIsoCode4217 *string `json:"currencyIsoCode4217,omitempty"`
	// Discount, %
	Discount *int32 `json:"discount,omitempty"`
	// WB Club discount, %
	ClubDiscount *int32 `json:"clubDiscount,omitempty"`
	// Product status: `1` — processing
	Status *int32 `json:"status,omitempty"`
	// Error text
	ErrorText NullableString `json:"errorText,omitempty"`
}

GoodBufferHistory struct for GoodBufferHistory

func NewGoodBufferHistory

func NewGoodBufferHistory() *GoodBufferHistory

NewGoodBufferHistory instantiates a new GoodBufferHistory 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

func NewGoodBufferHistoryWithDefaults

func NewGoodBufferHistoryWithDefaults() *GoodBufferHistory

NewGoodBufferHistoryWithDefaults instantiates a new GoodBufferHistory 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

func (*GoodBufferHistory) GetClubDiscount

func (o *GoodBufferHistory) GetClubDiscount() int32

GetClubDiscount returns the ClubDiscount field value if set, zero value otherwise.

func (*GoodBufferHistory) GetClubDiscountOk

func (o *GoodBufferHistory) GetClubDiscountOk() (*int32, bool)

GetClubDiscountOk returns a tuple with the ClubDiscount field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GoodBufferHistory) GetCurrencyIsoCode4217

func (o *GoodBufferHistory) GetCurrencyIsoCode4217() string

GetCurrencyIsoCode4217 returns the CurrencyIsoCode4217 field value if set, zero value otherwise.

func (*GoodBufferHistory) GetCurrencyIsoCode4217Ok

func (o *GoodBufferHistory) GetCurrencyIsoCode4217Ok() (*string, bool)

GetCurrencyIsoCode4217Ok returns a tuple with the CurrencyIsoCode4217 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GoodBufferHistory) GetDiscount

func (o *GoodBufferHistory) GetDiscount() int32

GetDiscount returns the Discount field value if set, zero value otherwise.

func (*GoodBufferHistory) GetDiscountOk

func (o *GoodBufferHistory) GetDiscountOk() (*int32, bool)

GetDiscountOk returns a tuple with the Discount field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GoodBufferHistory) GetErrorText

func (o *GoodBufferHistory) GetErrorText() string

GetErrorText returns the ErrorText field value if set, zero value otherwise (both if not set or set to explicit null).

func (*GoodBufferHistory) GetErrorTextOk

func (o *GoodBufferHistory) GetErrorTextOk() (*string, bool)

GetErrorTextOk returns a tuple with the ErrorText field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*GoodBufferHistory) GetNmID

func (o *GoodBufferHistory) GetNmID() int32

GetNmID returns the NmID field value if set, zero value otherwise.

func (*GoodBufferHistory) GetNmIDOk

func (o *GoodBufferHistory) GetNmIDOk() (*int32, bool)

GetNmIDOk returns a tuple with the NmID field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GoodBufferHistory) GetPrice

func (o *GoodBufferHistory) GetPrice() int32

GetPrice returns the Price field value if set, zero value otherwise.

func (*GoodBufferHistory) GetPriceOk

func (o *GoodBufferHistory) GetPriceOk() (*int32, bool)

GetPriceOk returns a tuple with the Price field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GoodBufferHistory) GetSizeID

func (o *GoodBufferHistory) GetSizeID() int32

GetSizeID returns the SizeID field value if set, zero value otherwise.

func (*GoodBufferHistory) GetSizeIDOk

func (o *GoodBufferHistory) GetSizeIDOk() (*int32, bool)

GetSizeIDOk returns a tuple with the SizeID field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GoodBufferHistory) GetStatus

func (o *GoodBufferHistory) GetStatus() int32

GetStatus returns the Status field value if set, zero value otherwise.

func (*GoodBufferHistory) GetStatusOk

func (o *GoodBufferHistory) GetStatusOk() (*int32, bool)

GetStatusOk returns a tuple with the Status field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GoodBufferHistory) GetTechSizeName

func (o *GoodBufferHistory) GetTechSizeName() string

GetTechSizeName returns the TechSizeName field value if set, zero value otherwise.

func (*GoodBufferHistory) GetTechSizeNameOk

func (o *GoodBufferHistory) GetTechSizeNameOk() (*string, bool)

GetTechSizeNameOk returns a tuple with the TechSizeName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GoodBufferHistory) GetVendorCode

func (o *GoodBufferHistory) GetVendorCode() string

GetVendorCode returns the VendorCode field value if set, zero value otherwise.

func (*GoodBufferHistory) GetVendorCodeOk

func (o *GoodBufferHistory) GetVendorCodeOk() (*string, bool)

GetVendorCodeOk returns a tuple with the VendorCode field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GoodBufferHistory) HasClubDiscount

func (o *GoodBufferHistory) HasClubDiscount() bool

HasClubDiscount returns a boolean if a field has been set.

func (*GoodBufferHistory) HasCurrencyIsoCode4217

func (o *GoodBufferHistory) HasCurrencyIsoCode4217() bool

HasCurrencyIsoCode4217 returns a boolean if a field has been set.

func (*GoodBufferHistory) HasDiscount

func (o *GoodBufferHistory) HasDiscount() bool

HasDiscount returns a boolean if a field has been set.

func (*GoodBufferHistory) HasErrorText

func (o *GoodBufferHistory) HasErrorText() bool

HasErrorText returns a boolean if a field has been set.

func (*GoodBufferHistory) HasNmID

func (o *GoodBufferHistory) HasNmID() bool

HasNmID returns a boolean if a field has been set.

func (*GoodBufferHistory) HasPrice

func (o *GoodBufferHistory) HasPrice() bool

HasPrice returns a boolean if a field has been set.

func (*GoodBufferHistory) HasSizeID

func (o *GoodBufferHistory) HasSizeID() bool

HasSizeID returns a boolean if a field has been set.

func (*GoodBufferHistory) HasStatus

func (o *GoodBufferHistory) HasStatus() bool

HasStatus returns a boolean if a field has been set.

func (*GoodBufferHistory) HasTechSizeName

func (o *GoodBufferHistory) HasTechSizeName() bool

HasTechSizeName returns a boolean if a field has been set.

func (*GoodBufferHistory) HasVendorCode

func (o *GoodBufferHistory) HasVendorCode() bool

HasVendorCode returns a boolean if a field has been set.

func (GoodBufferHistory) MarshalJSON

func (o GoodBufferHistory) MarshalJSON() ([]byte, error)

func (*GoodBufferHistory) SetClubDiscount

func (o *GoodBufferHistory) SetClubDiscount(v int32)

SetClubDiscount gets a reference to the given int32 and assigns it to the ClubDiscount field.

func (*GoodBufferHistory) SetCurrencyIsoCode4217

func (o *GoodBufferHistory) SetCurrencyIsoCode4217(v string)

SetCurrencyIsoCode4217 gets a reference to the given string and assigns it to the CurrencyIsoCode4217 field.

func (*GoodBufferHistory) SetDiscount

func (o *GoodBufferHistory) SetDiscount(v int32)

SetDiscount gets a reference to the given int32 and assigns it to the Discount field.

func (*GoodBufferHistory) SetErrorText

func (o *GoodBufferHistory) SetErrorText(v string)

SetErrorText gets a reference to the given NullableString and assigns it to the ErrorText field.

func (*GoodBufferHistory) SetErrorTextNil

func (o *GoodBufferHistory) SetErrorTextNil()

SetErrorTextNil sets the value for ErrorText to be an explicit nil

func (*GoodBufferHistory) SetNmID

func (o *GoodBufferHistory) SetNmID(v int32)

SetNmID gets a reference to the given int32 and assigns it to the NmID field.

func (*GoodBufferHistory) SetPrice

func (o *GoodBufferHistory) SetPrice(v int32)

SetPrice gets a reference to the given int32 and assigns it to the Price field.

func (*GoodBufferHistory) SetSizeID

func (o *GoodBufferHistory) SetSizeID(v int32)

SetSizeID gets a reference to the given int32 and assigns it to the SizeID field.

func (*GoodBufferHistory) SetStatus

func (o *GoodBufferHistory) SetStatus(v int32)

SetStatus gets a reference to the given int32 and assigns it to the Status field.

func (*GoodBufferHistory) SetTechSizeName

func (o *GoodBufferHistory) SetTechSizeName(v string)

SetTechSizeName gets a reference to the given string and assigns it to the TechSizeName field.

func (*GoodBufferHistory) SetVendorCode

func (o *GoodBufferHistory) SetVendorCode(v string)

SetVendorCode gets a reference to the given string and assigns it to the VendorCode field.

func (GoodBufferHistory) ToMap

func (o GoodBufferHistory) ToMap() (map[string]interface{}, error)

func (*GoodBufferHistory) UnsetErrorText

func (o *GoodBufferHistory) UnsetErrorText()

UnsetErrorText ensures that no value is present for ErrorText, not even an explicit nil

type GoodHistory

type GoodHistory struct {
	// WB article
	NmID *int32 `json:"nmID,omitempty"`
	// Seller's article
	VendorCode *string `json:"vendorCode,omitempty"`
	// Size ID. In the Content methods this is the `chrtID` field
	SizeID *int32 `json:"sizeID,omitempty"`
	// Size
	TechSizeName *string `json:"techSizeName,omitempty"`
	// Price
	Price *int32 `json:"price,omitempty"`
	// Currency, according to ISO 4217
	CurrencyIsoCode4217 *string `json:"currencyIsoCode4217,omitempty"`
	// Discount, %
	Discount *int32 `json:"discount,omitempty"`
	// WB Club discount, %
	ClubDiscount NullableInt32 `json:"clubDiscount,omitempty"`
	// Product status:   * `2` — no errors, price and/or discount were updated   * `3` — product has errors, data were not updated
	Status *int32 `json:"status,omitempty"`
	// Error text. For example:   - `You can't change the item price. Item was added to the Sale due to high inventory` — the error means that the product is put on sale based on its [inventory index](https://seller.wildberries.ru/instructions/ru/ru/material/A-1159).   - `The new price is several times lower than the current price. Item has been moved to Price Quarantine` — the error means that new price with discount is at least 3 times less than the previous one. You can edit price or discount using API or remove the price out of quarantine in the [personal account](https://seller.wildberries.ru/discount-and-prices/quarantine). </div>
	ErrorText *string `json:"errorText,omitempty"`
}

GoodHistory struct for GoodHistory

func NewGoodHistory

func NewGoodHistory() *GoodHistory

NewGoodHistory instantiates a new GoodHistory 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

func NewGoodHistoryWithDefaults

func NewGoodHistoryWithDefaults() *GoodHistory

NewGoodHistoryWithDefaults instantiates a new GoodHistory 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

func (*GoodHistory) GetClubDiscount

func (o *GoodHistory) GetClubDiscount() int32

GetClubDiscount returns the ClubDiscount field value if set, zero value otherwise (both if not set or set to explicit null).

func (*GoodHistory) GetClubDiscountOk

func (o *GoodHistory) GetClubDiscountOk() (*int32, bool)

GetClubDiscountOk returns a tuple with the ClubDiscount field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*GoodHistory) GetCurrencyIsoCode4217

func (o *GoodHistory) GetCurrencyIsoCode4217() string

GetCurrencyIsoCode4217 returns the CurrencyIsoCode4217 field value if set, zero value otherwise.

func (*GoodHistory) GetCurrencyIsoCode4217Ok

func (o *GoodHistory) GetCurrencyIsoCode4217Ok() (*string, bool)

GetCurrencyIsoCode4217Ok returns a tuple with the CurrencyIsoCode4217 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GoodHistory) GetDiscount

func (o *GoodHistory) GetDiscount() int32

GetDiscount returns the Discount field value if set, zero value otherwise.

func (*GoodHistory) GetDiscountOk

func (o *GoodHistory) GetDiscountOk() (*int32, bool)

GetDiscountOk returns a tuple with the Discount field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GoodHistory) GetErrorText

func (o *GoodHistory) GetErrorText() string

GetErrorText returns the ErrorText field value if set, zero value otherwise.

func (*GoodHistory) GetErrorTextOk

func (o *GoodHistory) GetErrorTextOk() (*string, bool)

GetErrorTextOk returns a tuple with the ErrorText field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GoodHistory) GetNmID

func (o *GoodHistory) GetNmID() int32

GetNmID returns the NmID field value if set, zero value otherwise.

func (*GoodHistory) GetNmIDOk

func (o *GoodHistory) GetNmIDOk() (*int32, bool)

GetNmIDOk returns a tuple with the NmID field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GoodHistory) GetPrice

func (o *GoodHistory) GetPrice() int32

GetPrice returns the Price field value if set, zero value otherwise.

func (*GoodHistory) GetPriceOk

func (o *GoodHistory) GetPriceOk() (*int32, bool)

GetPriceOk returns a tuple with the Price field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GoodHistory) GetSizeID

func (o *GoodHistory) GetSizeID() int32

GetSizeID returns the SizeID field value if set, zero value otherwise.

func (*GoodHistory) GetSizeIDOk

func (o *GoodHistory) GetSizeIDOk() (*int32, bool)

GetSizeIDOk returns a tuple with the SizeID field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GoodHistory) GetStatus

func (o *GoodHistory) GetStatus() int32

GetStatus returns the Status field value if set, zero value otherwise.

func (*GoodHistory) GetStatusOk

func (o *GoodHistory) GetStatusOk() (*int32, bool)

GetStatusOk returns a tuple with the Status field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GoodHistory) GetTechSizeName

func (o *GoodHistory) GetTechSizeName() string

GetTechSizeName returns the TechSizeName field value if set, zero value otherwise.

func (*GoodHistory) GetTechSizeNameOk

func (o *GoodHistory) GetTechSizeNameOk() (*string, bool)

GetTechSizeNameOk returns a tuple with the TechSizeName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GoodHistory) GetVendorCode

func (o *GoodHistory) GetVendorCode() string

GetVendorCode returns the VendorCode field value if set, zero value otherwise.

func (*GoodHistory) GetVendorCodeOk

func (o *GoodHistory) GetVendorCodeOk() (*string, bool)

GetVendorCodeOk returns a tuple with the VendorCode field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GoodHistory) HasClubDiscount

func (o *GoodHistory) HasClubDiscount() bool

HasClubDiscount returns a boolean if a field has been set.

func (*GoodHistory) HasCurrencyIsoCode4217

func (o *GoodHistory) HasCurrencyIsoCode4217() bool

HasCurrencyIsoCode4217 returns a boolean if a field has been set.

func (*GoodHistory) HasDiscount

func (o *GoodHistory) HasDiscount() bool

HasDiscount returns a boolean if a field has been set.

func (*GoodHistory) HasErrorText

func (o *GoodHistory) HasErrorText() bool

HasErrorText returns a boolean if a field has been set.

func (*GoodHistory) HasNmID

func (o *GoodHistory) HasNmID() bool

HasNmID returns a boolean if a field has been set.

func (*GoodHistory) HasPrice

func (o *GoodHistory) HasPrice() bool

HasPrice returns a boolean if a field has been set.

func (*GoodHistory) HasSizeID

func (o *GoodHistory) HasSizeID() bool

HasSizeID returns a boolean if a field has been set.

func (*GoodHistory) HasStatus

func (o *GoodHistory) HasStatus() bool

HasStatus returns a boolean if a field has been set.

func (*GoodHistory) HasTechSizeName

func (o *GoodHistory) HasTechSizeName() bool

HasTechSizeName returns a boolean if a field has been set.

func (*GoodHistory) HasVendorCode

func (o *GoodHistory) HasVendorCode() bool

HasVendorCode returns a boolean if a field has been set.

func (GoodHistory) MarshalJSON

func (o GoodHistory) MarshalJSON() ([]byte, error)

func (*GoodHistory) SetClubDiscount

func (o *GoodHistory) SetClubDiscount(v int32)

SetClubDiscount gets a reference to the given NullableInt32 and assigns it to the ClubDiscount field.

func (*GoodHistory) SetClubDiscountNil

func (o *GoodHistory) SetClubDiscountNil()

SetClubDiscountNil sets the value for ClubDiscount to be an explicit nil

func (*GoodHistory) SetCurrencyIsoCode4217

func (o *GoodHistory) SetCurrencyIsoCode4217(v string)

SetCurrencyIsoCode4217 gets a reference to the given string and assigns it to the CurrencyIsoCode4217 field.

func (*GoodHistory) SetDiscount

func (o *GoodHistory) SetDiscount(v int32)

SetDiscount gets a reference to the given int32 and assigns it to the Discount field.

func (*GoodHistory) SetErrorText

func (o *GoodHistory) SetErrorText(v string)

SetErrorText gets a reference to the given string and assigns it to the ErrorText field.

func (*GoodHistory) SetNmID

func (o *GoodHistory) SetNmID(v int32)

SetNmID gets a reference to the given int32 and assigns it to the NmID field.

func (*GoodHistory) SetPrice

func (o *GoodHistory) SetPrice(v int32)

SetPrice gets a reference to the given int32 and assigns it to the Price field.

func (*GoodHistory) SetSizeID

func (o *GoodHistory) SetSizeID(v int32)

SetSizeID gets a reference to the given int32 and assigns it to the SizeID field.

func (*GoodHistory) SetStatus

func (o *GoodHistory) SetStatus(v int32)

SetStatus gets a reference to the given int32 and assigns it to the Status field.

func (*GoodHistory) SetTechSizeName

func (o *GoodHistory) SetTechSizeName(v string)

SetTechSizeName gets a reference to the given string and assigns it to the TechSizeName field.

func (*GoodHistory) SetVendorCode

func (o *GoodHistory) SetVendorCode(v string)

SetVendorCode gets a reference to the given string and assigns it to the VendorCode field.

func (GoodHistory) ToMap

func (o GoodHistory) ToMap() (map[string]interface{}, error)

func (*GoodHistory) UnsetClubDiscount

func (o *GoodHistory) UnsetClubDiscount()

UnsetClubDiscount ensures that no value is present for ClubDiscount, not even an explicit nil

type GoodsList

type GoodsList struct {
	// WB article
	NmID *int32 `json:"nmID,omitempty"`
	// Seller's article
	VendorCode *string `json:"vendorCode,omitempty"`
	// Size
	Sizes []GoodsListSizesInner `json:"sizes,omitempty"`
	// Currency, according to ISO 4217
	CurrencyIsoCode4217 *string `json:"currencyIsoCode4217,omitempty"`
	// Discount, %
	Discount *int32 `json:"discount,omitempty"`
	// WB Club discount, %
	ClubDiscount *int32 `json:"clubDiscount,omitempty"`
	// Setting of size prices (depends on product category):   - `true` — available   - `false` — unavailable
	EditableSizePrice *bool `json:"editableSizePrice,omitempty"`
	// Flag of non-liquid product:   - `true` — non-liquid product with a low inventory index   - The field is absent — it's a liquid product
	IsBadTurnover *bool `json:"isBadTurnover,omitempty"`
}

GoodsList Product sizes

func NewGoodsList

func NewGoodsList() *GoodsList

NewGoodsList instantiates a new GoodsList 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

func NewGoodsListWithDefaults

func NewGoodsListWithDefaults() *GoodsList

NewGoodsListWithDefaults instantiates a new GoodsList 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

func (*GoodsList) GetClubDiscount

func (o *GoodsList) GetClubDiscount() int32

GetClubDiscount returns the ClubDiscount field value if set, zero value otherwise.

func (*GoodsList) GetClubDiscountOk

func (o *GoodsList) GetClubDiscountOk() (*int32, bool)

GetClubDiscountOk returns a tuple with the ClubDiscount field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GoodsList) GetCurrencyIsoCode4217

func (o *GoodsList) GetCurrencyIsoCode4217() string

GetCurrencyIsoCode4217 returns the CurrencyIsoCode4217 field value if set, zero value otherwise.

func (*GoodsList) GetCurrencyIsoCode4217Ok

func (o *GoodsList) GetCurrencyIsoCode4217Ok() (*string, bool)

GetCurrencyIsoCode4217Ok returns a tuple with the CurrencyIsoCode4217 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GoodsList) GetDiscount

func (o *GoodsList) GetDiscount() int32

GetDiscount returns the Discount field value if set, zero value otherwise.

func (*GoodsList) GetDiscountOk

func (o *GoodsList) GetDiscountOk() (*int32, bool)

GetDiscountOk returns a tuple with the Discount field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GoodsList) GetEditableSizePrice

func (o *GoodsList) GetEditableSizePrice() bool

GetEditableSizePrice returns the EditableSizePrice field value if set, zero value otherwise.

func (*GoodsList) GetEditableSizePriceOk

func (o *GoodsList) GetEditableSizePriceOk() (*bool, bool)

GetEditableSizePriceOk returns a tuple with the EditableSizePrice field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GoodsList) GetIsBadTurnover

func (o *GoodsList) GetIsBadTurnover() bool

GetIsBadTurnover returns the IsBadTurnover field value if set, zero value otherwise.

func (*GoodsList) GetIsBadTurnoverOk

func (o *GoodsList) GetIsBadTurnoverOk() (*bool, bool)

GetIsBadTurnoverOk returns a tuple with the IsBadTurnover field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GoodsList) GetNmID

func (o *GoodsList) GetNmID() int32

GetNmID returns the NmID field value if set, zero value otherwise.

func (*GoodsList) GetNmIDOk

func (o *GoodsList) GetNmIDOk() (*int32, bool)

GetNmIDOk returns a tuple with the NmID field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GoodsList) GetSizes

func (o *GoodsList) GetSizes() []GoodsListSizesInner

GetSizes returns the Sizes field value if set, zero value otherwise.

func (*GoodsList) GetSizesOk

func (o *GoodsList) GetSizesOk() ([]GoodsListSizesInner, bool)

GetSizesOk returns a tuple with the Sizes field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GoodsList) GetVendorCode

func (o *GoodsList) GetVendorCode() string

GetVendorCode returns the VendorCode field value if set, zero value otherwise.

func (*GoodsList) GetVendorCodeOk

func (o *GoodsList) GetVendorCodeOk() (*string, bool)

GetVendorCodeOk returns a tuple with the VendorCode field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GoodsList) HasClubDiscount

func (o *GoodsList) HasClubDiscount() bool

HasClubDiscount returns a boolean if a field has been set.

func (*GoodsList) HasCurrencyIsoCode4217

func (o *GoodsList) HasCurrencyIsoCode4217() bool

HasCurrencyIsoCode4217 returns a boolean if a field has been set.

func (*GoodsList) HasDiscount

func (o *GoodsList) HasDiscount() bool

HasDiscount returns a boolean if a field has been set.

func (*GoodsList) HasEditableSizePrice

func (o *GoodsList) HasEditableSizePrice() bool

HasEditableSizePrice returns a boolean if a field has been set.

func (*GoodsList) HasIsBadTurnover

func (o *GoodsList) HasIsBadTurnover() bool

HasIsBadTurnover returns a boolean if a field has been set.

func (*GoodsList) HasNmID

func (o *GoodsList) HasNmID() bool

HasNmID returns a boolean if a field has been set.

func (*GoodsList) HasSizes

func (o *GoodsList) HasSizes() bool

HasSizes returns a boolean if a field has been set.

func (*GoodsList) HasVendorCode

func (o *GoodsList) HasVendorCode() bool

HasVendorCode returns a boolean if a field has been set.

func (GoodsList) MarshalJSON

func (o GoodsList) MarshalJSON() ([]byte, error)

func (*GoodsList) SetClubDiscount

func (o *GoodsList) SetClubDiscount(v int32)

SetClubDiscount gets a reference to the given int32 and assigns it to the ClubDiscount field.

func (*GoodsList) SetCurrencyIsoCode4217

func (o *GoodsList) SetCurrencyIsoCode4217(v string)

SetCurrencyIsoCode4217 gets a reference to the given string and assigns it to the CurrencyIsoCode4217 field.

func (*GoodsList) SetDiscount

func (o *GoodsList) SetDiscount(v int32)

SetDiscount gets a reference to the given int32 and assigns it to the Discount field.

func (*GoodsList) SetEditableSizePrice

func (o *GoodsList) SetEditableSizePrice(v bool)

SetEditableSizePrice gets a reference to the given bool and assigns it to the EditableSizePrice field.

func (*GoodsList) SetIsBadTurnover

func (o *GoodsList) SetIsBadTurnover(v bool)

SetIsBadTurnover gets a reference to the given bool and assigns it to the IsBadTurnover field.

func (*GoodsList) SetNmID

func (o *GoodsList) SetNmID(v int32)

SetNmID gets a reference to the given int32 and assigns it to the NmID field.

func (*GoodsList) SetSizes

func (o *GoodsList) SetSizes(v []GoodsListSizesInner)

SetSizes gets a reference to the given []GoodsListSizesInner and assigns it to the Sizes field.

func (*GoodsList) SetVendorCode

func (o *GoodsList) SetVendorCode(v string)

SetVendorCode gets a reference to the given string and assigns it to the VendorCode field.

func (GoodsList) ToMap

func (o GoodsList) ToMap() (map[string]interface{}, error)

type GoodsListSizesInner

type GoodsListSizesInner struct {
	// Size ID. In the Content methods this is the `chrtID` field
	SizeID int64 `json:"sizeID"`
	// Price
	Price int32 `json:"price"`
	// Price with discount
	DiscountedPrice float32 `json:"discountedPrice"`
	// Price with discount including WB Club discount
	ClubDiscountedPrice float32 `json:"clubDiscountedPrice"`
	// Product size
	TechSizeName string `json:"techSizeName"`
}

GoodsListSizesInner struct for GoodsListSizesInner

func NewGoodsListSizesInner

func NewGoodsListSizesInner(sizeID int64, price int32, discountedPrice float32, clubDiscountedPrice float32, techSizeName string) *GoodsListSizesInner

NewGoodsListSizesInner instantiates a new GoodsListSizesInner 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

func NewGoodsListSizesInnerWithDefaults

func NewGoodsListSizesInnerWithDefaults() *GoodsListSizesInner

NewGoodsListSizesInnerWithDefaults instantiates a new GoodsListSizesInner 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

func (*GoodsListSizesInner) GetClubDiscountedPrice

func (o *GoodsListSizesInner) GetClubDiscountedPrice() float32

GetClubDiscountedPrice returns the ClubDiscountedPrice field value

func (*GoodsListSizesInner) GetClubDiscountedPriceOk

func (o *GoodsListSizesInner) GetClubDiscountedPriceOk() (*float32, bool)

GetClubDiscountedPriceOk returns a tuple with the ClubDiscountedPrice field value and a boolean to check if the value has been set.

func (*GoodsListSizesInner) GetDiscountedPrice

func (o *GoodsListSizesInner) GetDiscountedPrice() float32

GetDiscountedPrice returns the DiscountedPrice field value

func (*GoodsListSizesInner) GetDiscountedPriceOk

func (o *GoodsListSizesInner) GetDiscountedPriceOk() (*float32, bool)

GetDiscountedPriceOk returns a tuple with the DiscountedPrice field value and a boolean to check if the value has been set.

func (*GoodsListSizesInner) GetPrice

func (o *GoodsListSizesInner) GetPrice() int32

GetPrice returns the Price field value

func (*GoodsListSizesInner) GetPriceOk

func (o *GoodsListSizesInner) GetPriceOk() (*int32, bool)

GetPriceOk returns a tuple with the Price field value and a boolean to check if the value has been set.

func (*GoodsListSizesInner) GetSizeID

func (o *GoodsListSizesInner) GetSizeID() int64

GetSizeID returns the SizeID field value

func (*GoodsListSizesInner) GetSizeIDOk

func (o *GoodsListSizesInner) GetSizeIDOk() (*int64, bool)

GetSizeIDOk returns a tuple with the SizeID field value and a boolean to check if the value has been set.

func (*GoodsListSizesInner) GetTechSizeName

func (o *GoodsListSizesInner) GetTechSizeName() string

GetTechSizeName returns the TechSizeName field value

func (*GoodsListSizesInner) GetTechSizeNameOk

func (o *GoodsListSizesInner) GetTechSizeNameOk() (*string, bool)

GetTechSizeNameOk returns a tuple with the TechSizeName field value and a boolean to check if the value has been set.

func (GoodsListSizesInner) MarshalJSON

func (o GoodsListSizesInner) MarshalJSON() ([]byte, error)

func (*GoodsListSizesInner) SetClubDiscountedPrice

func (o *GoodsListSizesInner) SetClubDiscountedPrice(v float32)

SetClubDiscountedPrice sets field value

func (*GoodsListSizesInner) SetDiscountedPrice

func (o *GoodsListSizesInner) SetDiscountedPrice(v float32)

SetDiscountedPrice sets field value

func (*GoodsListSizesInner) SetPrice

func (o *GoodsListSizesInner) SetPrice(v int32)

SetPrice sets field value

func (*GoodsListSizesInner) SetSizeID

func (o *GoodsListSizesInner) SetSizeID(v int64)

SetSizeID sets field value

func (*GoodsListSizesInner) SetTechSizeName

func (o *GoodsListSizesInner) SetTechSizeName(v string)

SetTechSizeName sets field value

func (GoodsListSizesInner) ToMap

func (o GoodsListSizesInner) ToMap() (map[string]interface{}, error)

func (*GoodsListSizesInner) UnmarshalJSON

func (o *GoodsListSizesInner) UnmarshalJSON(data []byte) (err error)

type MappedNullable

type MappedNullable interface {
	ToMap() (map[string]interface{}, error)
}

type MediaErrors

type MediaErrors struct {
	// Additional errors
	AdditionalErrors map[string]interface{} `json:"additionalErrors,omitempty"`
	// Error data
	Data map[string]interface{} `json:"data,omitempty"`
	// Error flag
	Error *bool `json:"error,omitempty"`
	// Error text
	ErrorText *string `json:"errorText,omitempty"`
}

MediaErrors struct for MediaErrors

func NewMediaErrors

func NewMediaErrors() *MediaErrors

NewMediaErrors instantiates a new MediaErrors 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

func NewMediaErrorsWithDefaults

func NewMediaErrorsWithDefaults() *MediaErrors

NewMediaErrorsWithDefaults instantiates a new MediaErrors 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

func (*MediaErrors) GetAdditionalErrors

func (o *MediaErrors) GetAdditionalErrors() map[string]interface{}

GetAdditionalErrors returns the AdditionalErrors field value if set, zero value otherwise (both if not set or set to explicit null).

func (*MediaErrors) GetAdditionalErrorsOk

func (o *MediaErrors) GetAdditionalErrorsOk() (map[string]interface{}, bool)

GetAdditionalErrorsOk returns a tuple with the AdditionalErrors field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*MediaErrors) GetData

func (o *MediaErrors) GetData() map[string]interface{}

GetData returns the Data field value if set, zero value otherwise (both if not set or set to explicit null).

func (*MediaErrors) GetDataOk

func (o *MediaErrors) GetDataOk() (map[string]interface{}, bool)

GetDataOk returns a tuple with the Data field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*MediaErrors) GetError

func (o *MediaErrors) GetError() bool

GetError returns the Error field value if set, zero value otherwise.

func (*MediaErrors) GetErrorOk

func (o *MediaErrors) GetErrorOk() (*bool, bool)

GetErrorOk returns a tuple with the Error field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MediaErrors) GetErrorText

func (o *MediaErrors) GetErrorText() string

GetErrorText returns the ErrorText field value if set, zero value otherwise.

func (*MediaErrors) GetErrorTextOk

func (o *MediaErrors) GetErrorTextOk() (*string, bool)

GetErrorTextOk returns a tuple with the ErrorText field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MediaErrors) HasAdditionalErrors

func (o *MediaErrors) HasAdditionalErrors() bool

HasAdditionalErrors returns a boolean if a field has been set.

func (*MediaErrors) HasData

func (o *MediaErrors) HasData() bool

HasData returns a boolean if a field has been set.

func (*MediaErrors) HasError

func (o *MediaErrors) HasError() bool

HasError returns a boolean if a field has been set.

func (*MediaErrors) HasErrorText

func (o *MediaErrors) HasErrorText() bool

HasErrorText returns a boolean if a field has been set.

func (MediaErrors) MarshalJSON

func (o MediaErrors) MarshalJSON() ([]byte, error)

func (*MediaErrors) SetAdditionalErrors

func (o *MediaErrors) SetAdditionalErrors(v map[string]interface{})

SetAdditionalErrors gets a reference to the given map[string]interface{} and assigns it to the AdditionalErrors field.

func (*MediaErrors) SetData

func (o *MediaErrors) SetData(v map[string]interface{})

SetData gets a reference to the given map[string]interface{} and assigns it to the Data field.

func (*MediaErrors) SetError

func (o *MediaErrors) SetError(v bool)

SetError gets a reference to the given bool and assigns it to the Error field.

func (*MediaErrors) SetErrorText

func (o *MediaErrors) SetErrorText(v string)

SetErrorText gets a reference to the given string and assigns it to the ErrorText field.

func (MediaErrors) ToMap

func (o MediaErrors) ToMap() (map[string]interface{}, error)

type MediaFilesAPIService

type MediaFilesAPIService service

MediaFilesAPIService MediaFilesAPI service

func (*MediaFilesAPIService) ContentV3MediaFilePost

ContentV3MediaFilePost Upload Media File

Uploads and adds one media file for the product card.

Requirements for images:

  • maximum images for each product card  — 30,
  • minimal resolution – 700 × 900 pixels,
  • maximum size — 32 МB,
  • minimal quality — 65%,
  • formats — JPG, PNG, BMP, GIF (static), WebP.

Requirements for video:

  • maximum one video for each product card
  • maximum size — 50 MB
  • formats — MOV, MP4

<div class="description_limit"> <a href="/openapi/api-information#tag/Introduction/Rate-Limits">Request limit</a> per one seller's account for all methods in the <strong>Content</strong> category:

| Period | Limit | Interval | Burst | | --- | --- | --- | --- | | 1 min | 100 requests | 600 ms | 5 requests |

Exceptions are the methods: <ul>

<li><a href="/openapi/work-with-products#tag/Creating-Product-Cards/paths/~1content~1v2~1cards~1upload/post">creating product cards</a></li>
<li><a href="/openapi/work-with-products#tag/Creating-Product-Cards/paths/~1content~1v2~1cards~1upload~1add/post">creating product cards with merge</a></li>
<li><a href="/openapi/work-with-products#tag/Product-Cards/paths/~1content~1v2~1cards~1update/post">editing product cards</a></li>
<li><a href="/openapi/work-with-products#tag/Product-Cards/paths/~1content~1v2~1cards~1error~1list/post">getting failed product cards with errors</a></li>
<li><a href="/openapi/work-with-products#tag/Product-Cards/paths/~1content~1v2~1cards~1delete~1trash/post">transfering product card to trash</a></li>
<li><a href="/openapi/work-with-products#tag/Product-Cards/paths/~1content~1v2~1cards~1recover/post">recovering product card from trash</a></li>

</ul> </div>

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiContentV3MediaFilePostRequest

func (*MediaFilesAPIService) ContentV3MediaFilePostExecute

Execute executes the request

@return ContentV3MediaFilePost200Response

func (*MediaFilesAPIService) ContentV3MediaSavePost

ContentV3MediaSavePost Upload Media Files via Links

The method uploads a set of media files to a product card by specifying links in the request.

<div class="description_important">

New media files (<code>data</code>) replace old ones (<code>mediaFiles</code>). To add new files, set links both to new and old files.

</div>

Requirements for links:

  • the link must directly lead to the file. Ensure the link does not lead to a preview or authorization page. If the link leads to TXT or HTML page, it is considered incorrect
  • no authorization is required to access the file via the link

Requirements for images:

  • maximum images for each product card — 30
  • minimal resolution – 700 × 900 pixels
  • maximum size — 32 MB
  • minimal quality — 65%
  • formats — JPG, PNG, BMP, GIF (static), WebP

Requirements for video:

  • maximum one video for each product card
  • maximum size — 50 MB
  • formats — MOV, MP4

If one or several images or a video do not meet the requirements, no images and a video will be uploaded even if you have the success response (`200`)

<div class="description_limit"> <a href="/openapi/api-information#tag/Introduction/Rate-Limits">Request limit</a> per one seller's account for all methods in the <strong>Content</strong> category:

| Period | Limit | Interval | Burst | | --- | --- | --- | --- | | 1 min | 100 requests | 600 ms | 5 requests |

Exceptions are the methods: <ul>

<li><a href="/openapi/work-with-products#tag/Creating-Product-Cards/paths/~1content~1v2~1cards~1upload/post">creating product cards</a></li>
<li><a href="/openapi/work-with-products#tag/Creating-Product-Cards/paths/~1content~1v2~1cards~1upload~1add/post">creating product cards with merge</a></li>
<li><a href="/openapi/work-with-products#tag/Product-Cards/paths/~1content~1v2~1cards~1update/post">editing product cards</a></li>
<li><a href="/openapi/work-with-products#tag/Product-Cards/paths/~1content~1v2~1cards~1error~1list/post">getting failed product cards with errors</a></li>
<li><a href="/openapi/work-with-products#tag/Product-Cards/paths/~1content~1v2~1cards~1delete~1trash/post">transfering product card to trash</a></li>
<li><a href="/openapi/work-with-products#tag/Product-Cards/paths/~1content~1v2~1cards~1recover/post">recovering product card from trash</a></li>

</ul> </div>

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiContentV3MediaSavePostRequest

func (*MediaFilesAPIService) ContentV3MediaSavePostExecute

Execute executes the request

@return ContentV3MediaFilePost200Response

type ModelsErrorBrand

type ModelsErrorBrand struct {
	// Brand ID
	Id *float32 `json:"id,omitempty"`
	// Brand
	Name *string `json:"name,omitempty"`
}

ModelsErrorBrand struct for ModelsErrorBrand

func NewModelsErrorBrand

func NewModelsErrorBrand() *ModelsErrorBrand

NewModelsErrorBrand instantiates a new ModelsErrorBrand 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

func NewModelsErrorBrandWithDefaults

func NewModelsErrorBrandWithDefaults() *ModelsErrorBrand

NewModelsErrorBrandWithDefaults instantiates a new ModelsErrorBrand 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

func (*ModelsErrorBrand) GetId

func (o *ModelsErrorBrand) GetId() float32

GetId returns the Id field value if set, zero value otherwise.

func (*ModelsErrorBrand) GetIdOk

func (o *ModelsErrorBrand) GetIdOk() (*float32, bool)

GetIdOk returns a tuple with the Id field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsErrorBrand) GetName

func (o *ModelsErrorBrand) GetName() string

GetName returns the Name field value if set, zero value otherwise.

func (*ModelsErrorBrand) GetNameOk

func (o *ModelsErrorBrand) GetNameOk() (*string, bool)

GetNameOk returns a tuple with the Name field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsErrorBrand) HasId

func (o *ModelsErrorBrand) HasId() bool

HasId returns a boolean if a field has been set.

func (*ModelsErrorBrand) HasName

func (o *ModelsErrorBrand) HasName() bool

HasName returns a boolean if a field has been set.

func (ModelsErrorBrand) MarshalJSON

func (o ModelsErrorBrand) MarshalJSON() ([]byte, error)

func (*ModelsErrorBrand) SetId

func (o *ModelsErrorBrand) SetId(v float32)

SetId gets a reference to the given float32 and assigns it to the Id field.

func (*ModelsErrorBrand) SetName

func (o *ModelsErrorBrand) SetName(v string)

SetName gets a reference to the given string and assigns it to the Name field.

func (ModelsErrorBrand) ToMap

func (o ModelsErrorBrand) ToMap() (map[string]interface{}, error)

type ModelsErrorSubject

type ModelsErrorSubject struct {
	// Subject ID
	Id float32 `json:"id"`
	// Subject name
	Name string `json:"name"`
}

ModelsErrorSubject struct for ModelsErrorSubject

func NewModelsErrorSubject

func NewModelsErrorSubject(id float32, name string) *ModelsErrorSubject

NewModelsErrorSubject instantiates a new ModelsErrorSubject 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

func NewModelsErrorSubjectWithDefaults

func NewModelsErrorSubjectWithDefaults() *ModelsErrorSubject

NewModelsErrorSubjectWithDefaults instantiates a new ModelsErrorSubject 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

func (*ModelsErrorSubject) GetId

func (o *ModelsErrorSubject) GetId() float32

GetId returns the Id field value

func (*ModelsErrorSubject) GetIdOk

func (o *ModelsErrorSubject) GetIdOk() (*float32, bool)

GetIdOk returns a tuple with the Id field value and a boolean to check if the value has been set.

func (*ModelsErrorSubject) GetName

func (o *ModelsErrorSubject) GetName() string

GetName returns the Name field value

func (*ModelsErrorSubject) GetNameOk

func (o *ModelsErrorSubject) GetNameOk() (*string, bool)

GetNameOk returns a tuple with the Name field value and a boolean to check if the value has been set.

func (ModelsErrorSubject) MarshalJSON

func (o ModelsErrorSubject) MarshalJSON() ([]byte, error)

func (*ModelsErrorSubject) SetId

func (o *ModelsErrorSubject) SetId(v float32)

SetId sets field value

func (*ModelsErrorSubject) SetName

func (o *ModelsErrorSubject) SetName(v string)

SetName sets field value

func (ModelsErrorSubject) ToMap

func (o ModelsErrorSubject) ToMap() (map[string]interface{}, error)

func (*ModelsErrorSubject) UnmarshalJSON

func (o *ModelsErrorSubject) UnmarshalJSON(data []byte) (err error)

type ModelsErrorTableListPublicRespV2

type ModelsErrorTableListPublicRespV2 struct {
	// Batches
	Items  []ModelsErrorTableListPublicRespV2Item `json:"items"`
	Cursor ViewerContractPublicErrorsCursorOutput `json:"cursor"`
}

ModelsErrorTableListPublicRespV2 Response data

func NewModelsErrorTableListPublicRespV2

NewModelsErrorTableListPublicRespV2 instantiates a new ModelsErrorTableListPublicRespV2 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

func NewModelsErrorTableListPublicRespV2WithDefaults

func NewModelsErrorTableListPublicRespV2WithDefaults() *ModelsErrorTableListPublicRespV2

NewModelsErrorTableListPublicRespV2WithDefaults instantiates a new ModelsErrorTableListPublicRespV2 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

func (*ModelsErrorTableListPublicRespV2) GetCursor

GetCursor returns the Cursor field value

func (*ModelsErrorTableListPublicRespV2) GetCursorOk

GetCursorOk returns a tuple with the Cursor field value and a boolean to check if the value has been set.

func (*ModelsErrorTableListPublicRespV2) GetItems

GetItems returns the Items field value

func (*ModelsErrorTableListPublicRespV2) GetItemsOk

GetItemsOk returns a tuple with the Items field value and a boolean to check if the value has been set.

func (ModelsErrorTableListPublicRespV2) MarshalJSON

func (o ModelsErrorTableListPublicRespV2) MarshalJSON() ([]byte, error)

func (*ModelsErrorTableListPublicRespV2) SetCursor

SetCursor sets field value

func (*ModelsErrorTableListPublicRespV2) SetItems

SetItems sets field value

func (ModelsErrorTableListPublicRespV2) ToMap

func (o ModelsErrorTableListPublicRespV2) ToMap() (map[string]interface{}, error)

func (*ModelsErrorTableListPublicRespV2) UnmarshalJSON

func (o *ModelsErrorTableListPublicRespV2) UnmarshalJSON(data []byte) (err error)

type ModelsErrorTableListPublicRespV2Item

type ModelsErrorTableListPublicRespV2Item struct {
	// Batch ID
	BatchUUID string `json:"batchUUID"`
	// Subjects. Layout by `vendorCodes`
	Subjects map[string]ModelsErrorSubject `json:"subjects"`
	// Brands. Layout by `vendorCodes`
	Brands map[string]ModelsErrorBrand `json:"brands"`
	// Seller's articles
	VendorCodes []string `json:"vendorCodes"`
	// Errors. Layout by `vendorCodes`
	Errors map[string][]string `json:"errors"`
	// Date and time when the batch was created or edited
	UpdatedAt time.Time `json:"updatedAt"`
}

ModelsErrorTableListPublicRespV2Item struct for ModelsErrorTableListPublicRespV2Item

func NewModelsErrorTableListPublicRespV2Item

func NewModelsErrorTableListPublicRespV2Item(batchUUID string, subjects map[string]ModelsErrorSubject, brands map[string]ModelsErrorBrand, vendorCodes []string, errors map[string][]string, updatedAt time.Time) *ModelsErrorTableListPublicRespV2Item

NewModelsErrorTableListPublicRespV2Item instantiates a new ModelsErrorTableListPublicRespV2Item 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

func NewModelsErrorTableListPublicRespV2ItemWithDefaults

func NewModelsErrorTableListPublicRespV2ItemWithDefaults() *ModelsErrorTableListPublicRespV2Item

NewModelsErrorTableListPublicRespV2ItemWithDefaults instantiates a new ModelsErrorTableListPublicRespV2Item 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

func (*ModelsErrorTableListPublicRespV2Item) GetBatchUUID

func (o *ModelsErrorTableListPublicRespV2Item) GetBatchUUID() string

GetBatchUUID returns the BatchUUID field value

func (*ModelsErrorTableListPublicRespV2Item) GetBatchUUIDOk

func (o *ModelsErrorTableListPublicRespV2Item) GetBatchUUIDOk() (*string, bool)

GetBatchUUIDOk returns a tuple with the BatchUUID field value and a boolean to check if the value has been set.

func (*ModelsErrorTableListPublicRespV2Item) GetBrands

GetBrands returns the Brands field value

func (*ModelsErrorTableListPublicRespV2Item) GetBrandsOk

GetBrandsOk returns a tuple with the Brands field value and a boolean to check if the value has been set.

func (*ModelsErrorTableListPublicRespV2Item) GetErrors

func (o *ModelsErrorTableListPublicRespV2Item) GetErrors() map[string][]string

GetErrors returns the Errors field value

func (*ModelsErrorTableListPublicRespV2Item) GetErrorsOk

func (o *ModelsErrorTableListPublicRespV2Item) GetErrorsOk() (*map[string][]string, bool)

GetErrorsOk returns a tuple with the Errors field value and a boolean to check if the value has been set.

func (*ModelsErrorTableListPublicRespV2Item) GetSubjects

GetSubjects returns the Subjects field value

func (*ModelsErrorTableListPublicRespV2Item) GetSubjectsOk

GetSubjectsOk returns a tuple with the Subjects field value and a boolean to check if the value has been set.

func (*ModelsErrorTableListPublicRespV2Item) GetUpdatedAt

GetUpdatedAt returns the UpdatedAt field value

func (*ModelsErrorTableListPublicRespV2Item) GetUpdatedAtOk

func (o *ModelsErrorTableListPublicRespV2Item) GetUpdatedAtOk() (*time.Time, bool)

GetUpdatedAtOk returns a tuple with the UpdatedAt field value and a boolean to check if the value has been set.

func (*ModelsErrorTableListPublicRespV2Item) GetVendorCodes

func (o *ModelsErrorTableListPublicRespV2Item) GetVendorCodes() []string

GetVendorCodes returns the VendorCodes field value

func (*ModelsErrorTableListPublicRespV2Item) GetVendorCodesOk

func (o *ModelsErrorTableListPublicRespV2Item) GetVendorCodesOk() ([]string, bool)

GetVendorCodesOk returns a tuple with the VendorCodes field value and a boolean to check if the value has been set.

func (ModelsErrorTableListPublicRespV2Item) MarshalJSON

func (o ModelsErrorTableListPublicRespV2Item) MarshalJSON() ([]byte, error)

func (*ModelsErrorTableListPublicRespV2Item) SetBatchUUID

func (o *ModelsErrorTableListPublicRespV2Item) SetBatchUUID(v string)

SetBatchUUID sets field value

func (*ModelsErrorTableListPublicRespV2Item) SetBrands

SetBrands sets field value

func (*ModelsErrorTableListPublicRespV2Item) SetErrors

func (o *ModelsErrorTableListPublicRespV2Item) SetErrors(v map[string][]string)

SetErrors sets field value

func (*ModelsErrorTableListPublicRespV2Item) SetSubjects

SetSubjects sets field value

func (*ModelsErrorTableListPublicRespV2Item) SetUpdatedAt

func (o *ModelsErrorTableListPublicRespV2Item) SetUpdatedAt(v time.Time)

SetUpdatedAt sets field value

func (*ModelsErrorTableListPublicRespV2Item) SetVendorCodes

func (o *ModelsErrorTableListPublicRespV2Item) SetVendorCodes(v []string)

SetVendorCodes sets field value

func (ModelsErrorTableListPublicRespV2Item) ToMap

func (o ModelsErrorTableListPublicRespV2Item) ToMap() (map[string]interface{}, error)

func (*ModelsErrorTableListPublicRespV2Item) UnmarshalJSON

func (o *ModelsErrorTableListPublicRespV2Item) UnmarshalJSON(data []byte) (err error)

type NullableApiV2BufferGoodsTaskGet200Response

type NullableApiV2BufferGoodsTaskGet200Response struct {
	// contains filtered or unexported fields
}

func (NullableApiV2BufferGoodsTaskGet200Response) Get

func (NullableApiV2BufferGoodsTaskGet200Response) IsSet

func (NullableApiV2BufferGoodsTaskGet200Response) MarshalJSON

func (*NullableApiV2BufferGoodsTaskGet200Response) Set

func (*NullableApiV2BufferGoodsTaskGet200Response) UnmarshalJSON

func (v *NullableApiV2BufferGoodsTaskGet200Response) UnmarshalJSON(src []byte) error

func (*NullableApiV2BufferGoodsTaskGet200Response) Unset

type NullableApiV2BufferGoodsTaskGet200ResponseData

type NullableApiV2BufferGoodsTaskGet200ResponseData struct {
	// contains filtered or unexported fields
}

func (NullableApiV2BufferGoodsTaskGet200ResponseData) Get

func (NullableApiV2BufferGoodsTaskGet200ResponseData) IsSet

func (NullableApiV2BufferGoodsTaskGet200ResponseData) MarshalJSON

func (*NullableApiV2BufferGoodsTaskGet200ResponseData) Set

func (*NullableApiV2BufferGoodsTaskGet200ResponseData) UnmarshalJSON

func (*NullableApiV2BufferGoodsTaskGet200ResponseData) Unset

type NullableApiV2BufferTasksGet200Response

type NullableApiV2BufferTasksGet200Response struct {
	// contains filtered or unexported fields
}

func (NullableApiV2BufferTasksGet200Response) Get

func (NullableApiV2BufferTasksGet200Response) IsSet

func (NullableApiV2BufferTasksGet200Response) MarshalJSON

func (v NullableApiV2BufferTasksGet200Response) MarshalJSON() ([]byte, error)

func (*NullableApiV2BufferTasksGet200Response) Set

func (*NullableApiV2BufferTasksGet200Response) UnmarshalJSON

func (v *NullableApiV2BufferTasksGet200Response) UnmarshalJSON(src []byte) error

func (*NullableApiV2BufferTasksGet200Response) Unset

type NullableApiV2HistoryGoodsTaskGet200Response

type NullableApiV2HistoryGoodsTaskGet200Response struct {
	// contains filtered or unexported fields
}

func (NullableApiV2HistoryGoodsTaskGet200Response) Get

func (NullableApiV2HistoryGoodsTaskGet200Response) IsSet

func (NullableApiV2HistoryGoodsTaskGet200Response) MarshalJSON

func (*NullableApiV2HistoryGoodsTaskGet200Response) Set

func (*NullableApiV2HistoryGoodsTaskGet200Response) UnmarshalJSON

func (v *NullableApiV2HistoryGoodsTaskGet200Response) UnmarshalJSON(src []byte) error

func (*NullableApiV2HistoryGoodsTaskGet200Response) Unset

type NullableApiV2HistoryGoodsTaskGet200ResponseData

type NullableApiV2HistoryGoodsTaskGet200ResponseData struct {
	// contains filtered or unexported fields
}

func (NullableApiV2HistoryGoodsTaskGet200ResponseData) Get

func (NullableApiV2HistoryGoodsTaskGet200ResponseData) IsSet

func (NullableApiV2HistoryGoodsTaskGet200ResponseData) MarshalJSON

func (*NullableApiV2HistoryGoodsTaskGet200ResponseData) Set

func (*NullableApiV2HistoryGoodsTaskGet200ResponseData) UnmarshalJSON

func (*NullableApiV2HistoryGoodsTaskGet200ResponseData) Unset

type NullableApiV2HistoryTasksGet200Response

type NullableApiV2HistoryTasksGet200Response struct {
	// contains filtered or unexported fields
}

func (NullableApiV2HistoryTasksGet200Response) Get

func (NullableApiV2HistoryTasksGet200Response) IsSet

func (NullableApiV2HistoryTasksGet200Response) MarshalJSON

func (v NullableApiV2HistoryTasksGet200Response) MarshalJSON() ([]byte, error)

func (*NullableApiV2HistoryTasksGet200Response) Set

func (*NullableApiV2HistoryTasksGet200Response) UnmarshalJSON

func (v *NullableApiV2HistoryTasksGet200Response) UnmarshalJSON(src []byte) error

func (*NullableApiV2HistoryTasksGet200Response) Unset

type NullableApiV2ListGoodsFilterGet200Response

type NullableApiV2ListGoodsFilterGet200Response struct {
	// contains filtered or unexported fields
}

func (NullableApiV2ListGoodsFilterGet200Response) Get

func (NullableApiV2ListGoodsFilterGet200Response) IsSet

func (NullableApiV2ListGoodsFilterGet200Response) MarshalJSON

func (*NullableApiV2ListGoodsFilterGet200Response) Set

func (*NullableApiV2ListGoodsFilterGet200Response) UnmarshalJSON

func (v *NullableApiV2ListGoodsFilterGet200Response) UnmarshalJSON(src []byte) error

func (*NullableApiV2ListGoodsFilterGet200Response) Unset

type NullableApiV2ListGoodsFilterGet200ResponseData

type NullableApiV2ListGoodsFilterGet200ResponseData struct {
	// contains filtered or unexported fields
}

func (NullableApiV2ListGoodsFilterGet200ResponseData) Get

func (NullableApiV2ListGoodsFilterGet200ResponseData) IsSet

func (NullableApiV2ListGoodsFilterGet200ResponseData) MarshalJSON

func (*NullableApiV2ListGoodsFilterGet200ResponseData) Set

func (*NullableApiV2ListGoodsFilterGet200ResponseData) UnmarshalJSON

func (*NullableApiV2ListGoodsFilterGet200ResponseData) Unset

type NullableApiV2ListGoodsFilterPostRequest

type NullableApiV2ListGoodsFilterPostRequest struct {
	// contains filtered or unexported fields
}

func (NullableApiV2ListGoodsFilterPostRequest) Get

func (NullableApiV2ListGoodsFilterPostRequest) IsSet

func (NullableApiV2ListGoodsFilterPostRequest) MarshalJSON

func (v NullableApiV2ListGoodsFilterPostRequest) MarshalJSON() ([]byte, error)

func (*NullableApiV2ListGoodsFilterPostRequest) Set

func (*NullableApiV2ListGoodsFilterPostRequest) UnmarshalJSON

func (v *NullableApiV2ListGoodsFilterPostRequest) UnmarshalJSON(src []byte) error

func (*NullableApiV2ListGoodsFilterPostRequest) Unset

type NullableApiV2ListGoodsSizeNmGet200Response

type NullableApiV2ListGoodsSizeNmGet200Response struct {
	// contains filtered or unexported fields
}

func (NullableApiV2ListGoodsSizeNmGet200Response) Get

func (NullableApiV2ListGoodsSizeNmGet200Response) IsSet

func (NullableApiV2ListGoodsSizeNmGet200Response) MarshalJSON

func (*NullableApiV2ListGoodsSizeNmGet200Response) Set

func (*NullableApiV2ListGoodsSizeNmGet200Response) UnmarshalJSON

func (v *NullableApiV2ListGoodsSizeNmGet200Response) UnmarshalJSON(src []byte) error

func (*NullableApiV2ListGoodsSizeNmGet200Response) Unset

type NullableApiV2ListGoodsSizeNmGet200ResponseData

type NullableApiV2ListGoodsSizeNmGet200ResponseData struct {
	// contains filtered or unexported fields
}

func (NullableApiV2ListGoodsSizeNmGet200ResponseData) Get

func (NullableApiV2ListGoodsSizeNmGet200ResponseData) IsSet

func (NullableApiV2ListGoodsSizeNmGet200ResponseData) MarshalJSON

func (*NullableApiV2ListGoodsSizeNmGet200ResponseData) Set

func (*NullableApiV2ListGoodsSizeNmGet200ResponseData) UnmarshalJSON

func (*NullableApiV2ListGoodsSizeNmGet200ResponseData) Unset

type NullableApiV2QuarantineGoodsGet200Response

type NullableApiV2QuarantineGoodsGet200Response struct {
	// contains filtered or unexported fields
}

func (NullableApiV2QuarantineGoodsGet200Response) Get

func (NullableApiV2QuarantineGoodsGet200Response) IsSet

func (NullableApiV2QuarantineGoodsGet200Response) MarshalJSON

func (*NullableApiV2QuarantineGoodsGet200Response) Set

func (*NullableApiV2QuarantineGoodsGet200Response) UnmarshalJSON

func (v *NullableApiV2QuarantineGoodsGet200Response) UnmarshalJSON(src []byte) error

func (*NullableApiV2QuarantineGoodsGet200Response) Unset

type NullableApiV2QuarantineGoodsGet200ResponseData

type NullableApiV2QuarantineGoodsGet200ResponseData struct {
	// contains filtered or unexported fields
}

func (NullableApiV2QuarantineGoodsGet200ResponseData) Get

func (NullableApiV2QuarantineGoodsGet200ResponseData) IsSet

func (NullableApiV2QuarantineGoodsGet200ResponseData) MarshalJSON

func (*NullableApiV2QuarantineGoodsGet200ResponseData) Set

func (*NullableApiV2QuarantineGoodsGet200ResponseData) UnmarshalJSON

func (*NullableApiV2QuarantineGoodsGet200ResponseData) Unset

type NullableApiV2UploadTaskClubDiscountPostRequest

type NullableApiV2UploadTaskClubDiscountPostRequest struct {
	// contains filtered or unexported fields
}

func (NullableApiV2UploadTaskClubDiscountPostRequest) Get

func (NullableApiV2UploadTaskClubDiscountPostRequest) IsSet

func (NullableApiV2UploadTaskClubDiscountPostRequest) MarshalJSON

func (*NullableApiV2UploadTaskClubDiscountPostRequest) Set

func (*NullableApiV2UploadTaskClubDiscountPostRequest) UnmarshalJSON

func (*NullableApiV2UploadTaskClubDiscountPostRequest) Unset

type NullableApiV2UploadTaskPostRequest

type NullableApiV2UploadTaskPostRequest struct {
	// contains filtered or unexported fields
}

func (NullableApiV2UploadTaskPostRequest) Get

func (NullableApiV2UploadTaskPostRequest) IsSet

func (NullableApiV2UploadTaskPostRequest) MarshalJSON

func (v NullableApiV2UploadTaskPostRequest) MarshalJSON() ([]byte, error)

func (*NullableApiV2UploadTaskPostRequest) Set

func (*NullableApiV2UploadTaskPostRequest) UnmarshalJSON

func (v *NullableApiV2UploadTaskPostRequest) UnmarshalJSON(src []byte) error

func (*NullableApiV2UploadTaskPostRequest) Unset

type NullableApiV2UploadTaskSizePostRequest

type NullableApiV2UploadTaskSizePostRequest struct {
	// contains filtered or unexported fields
}

func (NullableApiV2UploadTaskSizePostRequest) Get

func (NullableApiV2UploadTaskSizePostRequest) IsSet

func (NullableApiV2UploadTaskSizePostRequest) MarshalJSON

func (v NullableApiV2UploadTaskSizePostRequest) MarshalJSON() ([]byte, error)

func (*NullableApiV2UploadTaskSizePostRequest) Set

func (*NullableApiV2UploadTaskSizePostRequest) UnmarshalJSON

func (v *NullableApiV2UploadTaskSizePostRequest) UnmarshalJSON(src []byte) error

func (*NullableApiV2UploadTaskSizePostRequest) Unset

type NullableApiV3DbwWarehousesWarehouseIdContactsGet200Response

type NullableApiV3DbwWarehousesWarehouseIdContactsGet200Response struct {
	// contains filtered or unexported fields
}

func (NullableApiV3DbwWarehousesWarehouseIdContactsGet200Response) Get

func (NullableApiV3DbwWarehousesWarehouseIdContactsGet200Response) IsSet

func (NullableApiV3DbwWarehousesWarehouseIdContactsGet200Response) MarshalJSON

func (*NullableApiV3DbwWarehousesWarehouseIdContactsGet200Response) Set

func (*NullableApiV3DbwWarehousesWarehouseIdContactsGet200Response) UnmarshalJSON

func (*NullableApiV3DbwWarehousesWarehouseIdContactsGet200Response) Unset

type NullableApiV3DbwWarehousesWarehouseIdContactsGet200ResponseContactsInner

type NullableApiV3DbwWarehousesWarehouseIdContactsGet200ResponseContactsInner struct {
	// contains filtered or unexported fields
}

func (NullableApiV3DbwWarehousesWarehouseIdContactsGet200ResponseContactsInner) Get

func (NullableApiV3DbwWarehousesWarehouseIdContactsGet200ResponseContactsInner) IsSet

func (NullableApiV3DbwWarehousesWarehouseIdContactsGet200ResponseContactsInner) MarshalJSON

func (*NullableApiV3DbwWarehousesWarehouseIdContactsGet200ResponseContactsInner) Set

func (*NullableApiV3DbwWarehousesWarehouseIdContactsGet200ResponseContactsInner) UnmarshalJSON

func (*NullableApiV3DbwWarehousesWarehouseIdContactsGet200ResponseContactsInner) Unset

type NullableApiV3StocksWarehouseIdDeleteRequest

type NullableApiV3StocksWarehouseIdDeleteRequest struct {
	// contains filtered or unexported fields
}

func (NullableApiV3StocksWarehouseIdDeleteRequest) Get

func (NullableApiV3StocksWarehouseIdDeleteRequest) IsSet

func (NullableApiV3StocksWarehouseIdDeleteRequest) MarshalJSON

func (*NullableApiV3StocksWarehouseIdDeleteRequest) Set

func (*NullableApiV3StocksWarehouseIdDeleteRequest) UnmarshalJSON

func (v *NullableApiV3StocksWarehouseIdDeleteRequest) UnmarshalJSON(src []byte) error

func (*NullableApiV3StocksWarehouseIdDeleteRequest) Unset

type NullableApiV3StocksWarehouseIdPost200Response

type NullableApiV3StocksWarehouseIdPost200Response struct {
	// contains filtered or unexported fields
}

func (NullableApiV3StocksWarehouseIdPost200Response) Get

func (NullableApiV3StocksWarehouseIdPost200Response) IsSet

func (NullableApiV3StocksWarehouseIdPost200Response) MarshalJSON

func (*NullableApiV3StocksWarehouseIdPost200Response) Set

func (*NullableApiV3StocksWarehouseIdPost200Response) UnmarshalJSON

func (*NullableApiV3StocksWarehouseIdPost200Response) Unset

type NullableApiV3StocksWarehouseIdPost200ResponseStocksInner

type NullableApiV3StocksWarehouseIdPost200ResponseStocksInner struct {
	// contains filtered or unexported fields
}

func (NullableApiV3StocksWarehouseIdPost200ResponseStocksInner) Get

func (NullableApiV3StocksWarehouseIdPost200ResponseStocksInner) IsSet

func (NullableApiV3StocksWarehouseIdPost200ResponseStocksInner) MarshalJSON

func (*NullableApiV3StocksWarehouseIdPost200ResponseStocksInner) Set

func (*NullableApiV3StocksWarehouseIdPost200ResponseStocksInner) UnmarshalJSON

func (*NullableApiV3StocksWarehouseIdPost200ResponseStocksInner) Unset

type NullableApiV3StocksWarehouseIdPostRequest

type NullableApiV3StocksWarehouseIdPostRequest struct {
	// contains filtered or unexported fields
}

func (NullableApiV3StocksWarehouseIdPostRequest) Get

func (NullableApiV3StocksWarehouseIdPostRequest) IsSet

func (NullableApiV3StocksWarehouseIdPostRequest) MarshalJSON

func (*NullableApiV3StocksWarehouseIdPostRequest) Set

func (*NullableApiV3StocksWarehouseIdPostRequest) UnmarshalJSON

func (v *NullableApiV3StocksWarehouseIdPostRequest) UnmarshalJSON(src []byte) error

func (*NullableApiV3StocksWarehouseIdPostRequest) Unset

type NullableApiV3StocksWarehouseIdPut406Response

type NullableApiV3StocksWarehouseIdPut406Response struct {
	// contains filtered or unexported fields
}

func (NullableApiV3StocksWarehouseIdPut406Response) Get

func (NullableApiV3StocksWarehouseIdPut406Response) IsSet

func (NullableApiV3StocksWarehouseIdPut406Response) MarshalJSON

func (*NullableApiV3StocksWarehouseIdPut406Response) Set

func (*NullableApiV3StocksWarehouseIdPut406Response) UnmarshalJSON

func (*NullableApiV3StocksWarehouseIdPut406Response) Unset

type NullableApiV3StocksWarehouseIdPutRequest

type NullableApiV3StocksWarehouseIdPutRequest struct {
	// contains filtered or unexported fields
}

func (NullableApiV3StocksWarehouseIdPutRequest) Get

func (NullableApiV3StocksWarehouseIdPutRequest) IsSet

func (NullableApiV3StocksWarehouseIdPutRequest) MarshalJSON

func (*NullableApiV3StocksWarehouseIdPutRequest) Set

func (*NullableApiV3StocksWarehouseIdPutRequest) UnmarshalJSON

func (v *NullableApiV3StocksWarehouseIdPutRequest) UnmarshalJSON(src []byte) error

func (*NullableApiV3StocksWarehouseIdPutRequest) Unset

type NullableApiV3StocksWarehouseIdPutRequestStocksInner

type NullableApiV3StocksWarehouseIdPutRequestStocksInner struct {
	// contains filtered or unexported fields
}

func (NullableApiV3StocksWarehouseIdPutRequestStocksInner) Get

func (NullableApiV3StocksWarehouseIdPutRequestStocksInner) IsSet

func (NullableApiV3StocksWarehouseIdPutRequestStocksInner) MarshalJSON

func (*NullableApiV3StocksWarehouseIdPutRequestStocksInner) Set

func (*NullableApiV3StocksWarehouseIdPutRequestStocksInner) UnmarshalJSON

func (*NullableApiV3StocksWarehouseIdPutRequestStocksInner) Unset

type NullableApiV3WarehousesPost201Response

type NullableApiV3WarehousesPost201Response struct {
	// contains filtered or unexported fields
}

func (NullableApiV3WarehousesPost201Response) Get

func (NullableApiV3WarehousesPost201Response) IsSet

func (NullableApiV3WarehousesPost201Response) MarshalJSON

func (v NullableApiV3WarehousesPost201Response) MarshalJSON() ([]byte, error)

func (*NullableApiV3WarehousesPost201Response) Set

func (*NullableApiV3WarehousesPost201Response) UnmarshalJSON

func (v *NullableApiV3WarehousesPost201Response) UnmarshalJSON(src []byte) error

func (*NullableApiV3WarehousesPost201Response) Unset

type NullableApiV3WarehousesPostRequest

type NullableApiV3WarehousesPostRequest struct {
	// contains filtered or unexported fields
}

func (NullableApiV3WarehousesPostRequest) Get

func (NullableApiV3WarehousesPostRequest) IsSet

func (NullableApiV3WarehousesPostRequest) MarshalJSON

func (v NullableApiV3WarehousesPostRequest) MarshalJSON() ([]byte, error)

func (*NullableApiV3WarehousesPostRequest) Set

func (*NullableApiV3WarehousesPostRequest) UnmarshalJSON

func (v *NullableApiV3WarehousesPostRequest) UnmarshalJSON(src []byte) error

func (*NullableApiV3WarehousesPostRequest) Unset

type NullableApiV3WarehousesWarehouseIdPutRequest

type NullableApiV3WarehousesWarehouseIdPutRequest struct {
	// contains filtered or unexported fields
}

func (NullableApiV3WarehousesWarehouseIdPutRequest) Get

func (NullableApiV3WarehousesWarehouseIdPutRequest) IsSet

func (NullableApiV3WarehousesWarehouseIdPutRequest) MarshalJSON

func (*NullableApiV3WarehousesWarehouseIdPutRequest) Set

func (*NullableApiV3WarehousesWarehouseIdPutRequest) UnmarshalJSON

func (*NullableApiV3WarehousesWarehouseIdPutRequest) Unset

type NullableBool

type NullableBool struct {
	// contains filtered or unexported fields
}

func NewNullableBool

func NewNullableBool(val *bool) *NullableBool

func (NullableBool) Get

func (v NullableBool) Get() *bool

func (NullableBool) IsSet

func (v NullableBool) IsSet() bool

func (NullableBool) MarshalJSON

func (v NullableBool) MarshalJSON() ([]byte, error)

func (*NullableBool) Set

func (v *NullableBool) Set(val *bool)

func (*NullableBool) UnmarshalJSON

func (v *NullableBool) UnmarshalJSON(src []byte) error

func (*NullableBool) Unset

func (v *NullableBool) Unset()

type NullableBrandsResponse

type NullableBrandsResponse struct {
	// contains filtered or unexported fields
}

func NewNullableBrandsResponse

func NewNullableBrandsResponse(val *BrandsResponse) *NullableBrandsResponse

func (NullableBrandsResponse) Get

func (NullableBrandsResponse) IsSet

func (v NullableBrandsResponse) IsSet() bool

func (NullableBrandsResponse) MarshalJSON

func (v NullableBrandsResponse) MarshalJSON() ([]byte, error)

func (*NullableBrandsResponse) Set

func (*NullableBrandsResponse) UnmarshalJSON

func (v *NullableBrandsResponse) UnmarshalJSON(src []byte) error

func (*NullableBrandsResponse) Unset

func (v *NullableBrandsResponse) Unset()

type NullableBrandsResponseBrandsInner

type NullableBrandsResponseBrandsInner struct {
	// contains filtered or unexported fields
}

func (NullableBrandsResponseBrandsInner) Get

func (NullableBrandsResponseBrandsInner) IsSet

func (NullableBrandsResponseBrandsInner) MarshalJSON

func (v NullableBrandsResponseBrandsInner) MarshalJSON() ([]byte, error)

func (*NullableBrandsResponseBrandsInner) Set

func (*NullableBrandsResponseBrandsInner) UnmarshalJSON

func (v *NullableBrandsResponseBrandsInner) UnmarshalJSON(src []byte) error

func (*NullableBrandsResponseBrandsInner) Unset

type NullableBrandsResponseError

type NullableBrandsResponseError struct {
	// contains filtered or unexported fields
}

func NewNullableBrandsResponseError

func NewNullableBrandsResponseError(val *BrandsResponseError) *NullableBrandsResponseError

func (NullableBrandsResponseError) Get

func (NullableBrandsResponseError) IsSet

func (NullableBrandsResponseError) MarshalJSON

func (v NullableBrandsResponseError) MarshalJSON() ([]byte, error)

func (*NullableBrandsResponseError) Set

func (*NullableBrandsResponseError) UnmarshalJSON

func (v *NullableBrandsResponseError) UnmarshalJSON(src []byte) error

func (*NullableBrandsResponseError) Unset

func (v *NullableBrandsResponseError) Unset()

type NullableBrandsResponseErrorErrorsInner

type NullableBrandsResponseErrorErrorsInner struct {
	// contains filtered or unexported fields
}

func (NullableBrandsResponseErrorErrorsInner) Get

func (NullableBrandsResponseErrorErrorsInner) IsSet

func (NullableBrandsResponseErrorErrorsInner) MarshalJSON

func (v NullableBrandsResponseErrorErrorsInner) MarshalJSON() ([]byte, error)

func (*NullableBrandsResponseErrorErrorsInner) Set

func (*NullableBrandsResponseErrorErrorsInner) UnmarshalJSON

func (v *NullableBrandsResponseErrorErrorsInner) UnmarshalJSON(src []byte) error

func (*NullableBrandsResponseErrorErrorsInner) Unset

type NullableClubDiscReq

type NullableClubDiscReq struct {
	// contains filtered or unexported fields
}

func NewNullableClubDiscReq

func NewNullableClubDiscReq(val *ClubDiscReq) *NullableClubDiscReq

func (NullableClubDiscReq) Get

func (NullableClubDiscReq) IsSet

func (v NullableClubDiscReq) IsSet() bool

func (NullableClubDiscReq) MarshalJSON

func (v NullableClubDiscReq) MarshalJSON() ([]byte, error)

func (*NullableClubDiscReq) Set

func (v *NullableClubDiscReq) Set(val *ClubDiscReq)

func (*NullableClubDiscReq) UnmarshalJSON

func (v *NullableClubDiscReq) UnmarshalJSON(src []byte) error

func (*NullableClubDiscReq) Unset

func (v *NullableClubDiscReq) Unset()

type NullableContentV2BarcodesPost200Response

type NullableContentV2BarcodesPost200Response struct {
	// contains filtered or unexported fields
}

func (NullableContentV2BarcodesPost200Response) Get

func (NullableContentV2BarcodesPost200Response) IsSet

func (NullableContentV2BarcodesPost200Response) MarshalJSON

func (*NullableContentV2BarcodesPost200Response) Set

func (*NullableContentV2BarcodesPost200Response) UnmarshalJSON

func (v *NullableContentV2BarcodesPost200Response) UnmarshalJSON(src []byte) error

func (*NullableContentV2BarcodesPost200Response) Unset

type NullableContentV2BarcodesPostRequest

type NullableContentV2BarcodesPostRequest struct {
	// contains filtered or unexported fields
}

func (NullableContentV2BarcodesPostRequest) Get

func (NullableContentV2BarcodesPostRequest) IsSet

func (NullableContentV2BarcodesPostRequest) MarshalJSON

func (v NullableContentV2BarcodesPostRequest) MarshalJSON() ([]byte, error)

func (*NullableContentV2BarcodesPostRequest) Set

func (*NullableContentV2BarcodesPostRequest) UnmarshalJSON

func (v *NullableContentV2BarcodesPostRequest) UnmarshalJSON(src []byte) error

func (*NullableContentV2BarcodesPostRequest) Unset

type NullableContentV2CardsDeleteTrashPost200Response

type NullableContentV2CardsDeleteTrashPost200Response struct {
	// contains filtered or unexported fields
}

func (NullableContentV2CardsDeleteTrashPost200Response) Get

func (NullableContentV2CardsDeleteTrashPost200Response) IsSet

func (NullableContentV2CardsDeleteTrashPost200Response) MarshalJSON

func (*NullableContentV2CardsDeleteTrashPost200Response) Set

func (*NullableContentV2CardsDeleteTrashPost200Response) UnmarshalJSON

func (*NullableContentV2CardsDeleteTrashPost200Response) Unset

type NullableContentV2CardsDeleteTrashPostRequest

type NullableContentV2CardsDeleteTrashPostRequest struct {
	// contains filtered or unexported fields
}

func (NullableContentV2CardsDeleteTrashPostRequest) Get

func (NullableContentV2CardsDeleteTrashPostRequest) IsSet

func (NullableContentV2CardsDeleteTrashPostRequest) MarshalJSON

func (*NullableContentV2CardsDeleteTrashPostRequest) Set

func (*NullableContentV2CardsDeleteTrashPostRequest) UnmarshalJSON

func (*NullableContentV2CardsDeleteTrashPostRequest) Unset

type NullableContentV2CardsLimitsGet200Response

type NullableContentV2CardsLimitsGet200Response struct {
	// contains filtered or unexported fields
}

func (NullableContentV2CardsLimitsGet200Response) Get

func (NullableContentV2CardsLimitsGet200Response) IsSet

func (NullableContentV2CardsLimitsGet200Response) MarshalJSON

func (*NullableContentV2CardsLimitsGet200Response) Set

func (*NullableContentV2CardsLimitsGet200Response) UnmarshalJSON

func (v *NullableContentV2CardsLimitsGet200Response) UnmarshalJSON(src []byte) error

func (*NullableContentV2CardsLimitsGet200Response) Unset

type NullableContentV2CardsLimitsGet200ResponseData

type NullableContentV2CardsLimitsGet200ResponseData struct {
	// contains filtered or unexported fields
}

func (NullableContentV2CardsLimitsGet200ResponseData) Get

func (NullableContentV2CardsLimitsGet200ResponseData) IsSet

func (NullableContentV2CardsLimitsGet200ResponseData) MarshalJSON

func (*NullableContentV2CardsLimitsGet200ResponseData) Set

func (*NullableContentV2CardsLimitsGet200ResponseData) UnmarshalJSON

func (*NullableContentV2CardsLimitsGet200ResponseData) Unset

type NullableContentV2CardsMoveNmPost400Response

type NullableContentV2CardsMoveNmPost400Response struct {
	// contains filtered or unexported fields
}

func (NullableContentV2CardsMoveNmPost400Response) Get

func (NullableContentV2CardsMoveNmPost400Response) IsSet

func (NullableContentV2CardsMoveNmPost400Response) MarshalJSON

func (*NullableContentV2CardsMoveNmPost400Response) Set

func (*NullableContentV2CardsMoveNmPost400Response) UnmarshalJSON

func (v *NullableContentV2CardsMoveNmPost400Response) UnmarshalJSON(src []byte) error

func (*NullableContentV2CardsMoveNmPost400Response) Unset

type NullableContentV2CardsMoveNmPostRequest

type NullableContentV2CardsMoveNmPostRequest struct {
	// contains filtered or unexported fields
}

func (NullableContentV2CardsMoveNmPostRequest) Get

func (NullableContentV2CardsMoveNmPostRequest) IsSet

func (NullableContentV2CardsMoveNmPostRequest) MarshalJSON

func (v NullableContentV2CardsMoveNmPostRequest) MarshalJSON() ([]byte, error)

func (*NullableContentV2CardsMoveNmPostRequest) Set

func (*NullableContentV2CardsMoveNmPostRequest) UnmarshalJSON

func (v *NullableContentV2CardsMoveNmPostRequest) UnmarshalJSON(src []byte) error

func (*NullableContentV2CardsMoveNmPostRequest) Unset

type NullableContentV2CardsRecoverPost200Response

type NullableContentV2CardsRecoverPost200Response struct {
	// contains filtered or unexported fields
}

func (NullableContentV2CardsRecoverPost200Response) Get

func (NullableContentV2CardsRecoverPost200Response) IsSet

func (NullableContentV2CardsRecoverPost200Response) MarshalJSON

func (*NullableContentV2CardsRecoverPost200Response) Set

func (*NullableContentV2CardsRecoverPost200Response) UnmarshalJSON

func (*NullableContentV2CardsRecoverPost200Response) Unset

type NullableContentV2CardsUpdatePost413Response

type NullableContentV2CardsUpdatePost413Response struct {
	// contains filtered or unexported fields
}

func (NullableContentV2CardsUpdatePost413Response) Get

func (NullableContentV2CardsUpdatePost413Response) IsSet

func (NullableContentV2CardsUpdatePost413Response) MarshalJSON

func (*NullableContentV2CardsUpdatePost413Response) Set

func (*NullableContentV2CardsUpdatePost413Response) UnmarshalJSON

func (v *NullableContentV2CardsUpdatePost413Response) UnmarshalJSON(src []byte) error

func (*NullableContentV2CardsUpdatePost413Response) Unset

type NullableContentV2CardsUpdatePostRequestInner

type NullableContentV2CardsUpdatePostRequestInner struct {
	// contains filtered or unexported fields
}

func (NullableContentV2CardsUpdatePostRequestInner) Get

func (NullableContentV2CardsUpdatePostRequestInner) IsSet

func (NullableContentV2CardsUpdatePostRequestInner) MarshalJSON

func (*NullableContentV2CardsUpdatePostRequestInner) Set

func (*NullableContentV2CardsUpdatePostRequestInner) UnmarshalJSON

func (*NullableContentV2CardsUpdatePostRequestInner) Unset

type NullableContentV2CardsUpdatePostRequestInnerCharacteristicsInner

type NullableContentV2CardsUpdatePostRequestInnerCharacteristicsInner struct {
	// contains filtered or unexported fields
}

func (NullableContentV2CardsUpdatePostRequestInnerCharacteristicsInner) Get

func (NullableContentV2CardsUpdatePostRequestInnerCharacteristicsInner) IsSet

func (NullableContentV2CardsUpdatePostRequestInnerCharacteristicsInner) MarshalJSON

func (*NullableContentV2CardsUpdatePostRequestInnerCharacteristicsInner) Set

func (*NullableContentV2CardsUpdatePostRequestInnerCharacteristicsInner) UnmarshalJSON

func (*NullableContentV2CardsUpdatePostRequestInnerCharacteristicsInner) Unset

type NullableContentV2CardsUpdatePostRequestInnerDimensions

type NullableContentV2CardsUpdatePostRequestInnerDimensions struct {
	// contains filtered or unexported fields
}

func (NullableContentV2CardsUpdatePostRequestInnerDimensions) Get

func (NullableContentV2CardsUpdatePostRequestInnerDimensions) IsSet

func (NullableContentV2CardsUpdatePostRequestInnerDimensions) MarshalJSON

func (*NullableContentV2CardsUpdatePostRequestInnerDimensions) Set

func (*NullableContentV2CardsUpdatePostRequestInnerDimensions) UnmarshalJSON

func (*NullableContentV2CardsUpdatePostRequestInnerDimensions) Unset

type NullableContentV2CardsUpdatePostRequestInnerSizesInner

type NullableContentV2CardsUpdatePostRequestInnerSizesInner struct {
	// contains filtered or unexported fields
}

func (NullableContentV2CardsUpdatePostRequestInnerSizesInner) Get

func (NullableContentV2CardsUpdatePostRequestInnerSizesInner) IsSet

func (NullableContentV2CardsUpdatePostRequestInnerSizesInner) MarshalJSON

func (*NullableContentV2CardsUpdatePostRequestInnerSizesInner) Set

func (*NullableContentV2CardsUpdatePostRequestInnerSizesInner) UnmarshalJSON

func (*NullableContentV2CardsUpdatePostRequestInnerSizesInner) Unset

type NullableContentV2CardsUploadAddPostRequest

type NullableContentV2CardsUploadAddPostRequest struct {
	// contains filtered or unexported fields
}

func (NullableContentV2CardsUploadAddPostRequest) Get

func (NullableContentV2CardsUploadAddPostRequest) IsSet

func (NullableContentV2CardsUploadAddPostRequest) MarshalJSON

func (*NullableContentV2CardsUploadAddPostRequest) Set

func (*NullableContentV2CardsUploadAddPostRequest) UnmarshalJSON

func (v *NullableContentV2CardsUploadAddPostRequest) UnmarshalJSON(src []byte) error

func (*NullableContentV2CardsUploadAddPostRequest) Unset

type NullableContentV2CardsUploadAddPostRequestCardsToAddInner

type NullableContentV2CardsUploadAddPostRequestCardsToAddInner struct {
	// contains filtered or unexported fields
}

func (NullableContentV2CardsUploadAddPostRequestCardsToAddInner) Get

func (NullableContentV2CardsUploadAddPostRequestCardsToAddInner) IsSet

func (NullableContentV2CardsUploadAddPostRequestCardsToAddInner) MarshalJSON

func (*NullableContentV2CardsUploadAddPostRequestCardsToAddInner) Set

func (*NullableContentV2CardsUploadAddPostRequestCardsToAddInner) UnmarshalJSON

func (*NullableContentV2CardsUploadAddPostRequestCardsToAddInner) Unset

type NullableContentV2CardsUploadAddPostRequestCardsToAddInnerDimensions

type NullableContentV2CardsUploadAddPostRequestCardsToAddInnerDimensions struct {
	// contains filtered or unexported fields
}

func (NullableContentV2CardsUploadAddPostRequestCardsToAddInnerDimensions) Get

func (NullableContentV2CardsUploadAddPostRequestCardsToAddInnerDimensions) IsSet

func (NullableContentV2CardsUploadAddPostRequestCardsToAddInnerDimensions) MarshalJSON

func (*NullableContentV2CardsUploadAddPostRequestCardsToAddInnerDimensions) Set

func (*NullableContentV2CardsUploadAddPostRequestCardsToAddInnerDimensions) UnmarshalJSON

func (*NullableContentV2CardsUploadAddPostRequestCardsToAddInnerDimensions) Unset

type NullableContentV2CardsUploadAddPostRequestCardsToAddInnerSizesInner

type NullableContentV2CardsUploadAddPostRequestCardsToAddInnerSizesInner struct {
	// contains filtered or unexported fields
}

func (NullableContentV2CardsUploadAddPostRequestCardsToAddInnerSizesInner) Get

func (NullableContentV2CardsUploadAddPostRequestCardsToAddInnerSizesInner) IsSet

func (NullableContentV2CardsUploadAddPostRequestCardsToAddInnerSizesInner) MarshalJSON

func (*NullableContentV2CardsUploadAddPostRequestCardsToAddInnerSizesInner) Set

func (*NullableContentV2CardsUploadAddPostRequestCardsToAddInnerSizesInner) UnmarshalJSON

func (*NullableContentV2CardsUploadAddPostRequestCardsToAddInnerSizesInner) Unset

type NullableContentV2CardsUploadPostRequestInner

type NullableContentV2CardsUploadPostRequestInner struct {
	// contains filtered or unexported fields
}

func (NullableContentV2CardsUploadPostRequestInner) Get

func (NullableContentV2CardsUploadPostRequestInner) IsSet

func (NullableContentV2CardsUploadPostRequestInner) MarshalJSON

func (*NullableContentV2CardsUploadPostRequestInner) Set

func (*NullableContentV2CardsUploadPostRequestInner) UnmarshalJSON

func (*NullableContentV2CardsUploadPostRequestInner) Unset

type NullableContentV2CardsUploadPostRequestInnerVariantsInner

type NullableContentV2CardsUploadPostRequestInnerVariantsInner struct {
	// contains filtered or unexported fields
}

func (NullableContentV2CardsUploadPostRequestInnerVariantsInner) Get

func (NullableContentV2CardsUploadPostRequestInnerVariantsInner) IsSet

func (NullableContentV2CardsUploadPostRequestInnerVariantsInner) MarshalJSON

func (*NullableContentV2CardsUploadPostRequestInnerVariantsInner) Set

func (*NullableContentV2CardsUploadPostRequestInnerVariantsInner) UnmarshalJSON

func (*NullableContentV2CardsUploadPostRequestInnerVariantsInner) Unset

type NullableContentV2CardsUploadPostRequestInnerVariantsInnerDimensions

type NullableContentV2CardsUploadPostRequestInnerVariantsInnerDimensions struct {
	// contains filtered or unexported fields
}

func (NullableContentV2CardsUploadPostRequestInnerVariantsInnerDimensions) Get

func (NullableContentV2CardsUploadPostRequestInnerVariantsInnerDimensions) IsSet

func (NullableContentV2CardsUploadPostRequestInnerVariantsInnerDimensions) MarshalJSON

func (*NullableContentV2CardsUploadPostRequestInnerVariantsInnerDimensions) Set

func (*NullableContentV2CardsUploadPostRequestInnerVariantsInnerDimensions) UnmarshalJSON

func (*NullableContentV2CardsUploadPostRequestInnerVariantsInnerDimensions) Unset

type NullableContentV2CardsUploadPostRequestInnerVariantsInnerSizesInner

type NullableContentV2CardsUploadPostRequestInnerVariantsInnerSizesInner struct {
	// contains filtered or unexported fields
}

func (NullableContentV2CardsUploadPostRequestInnerVariantsInnerSizesInner) Get

func (NullableContentV2CardsUploadPostRequestInnerVariantsInnerSizesInner) IsSet

func (NullableContentV2CardsUploadPostRequestInnerVariantsInnerSizesInner) MarshalJSON

func (*NullableContentV2CardsUploadPostRequestInnerVariantsInnerSizesInner) Set

func (*NullableContentV2CardsUploadPostRequestInnerVariantsInnerSizesInner) UnmarshalJSON

func (*NullableContentV2CardsUploadPostRequestInnerVariantsInnerSizesInner) Unset

type NullableContentV2DirectoryColorsGet200Response

type NullableContentV2DirectoryColorsGet200Response struct {
	// contains filtered or unexported fields
}

func (NullableContentV2DirectoryColorsGet200Response) Get

func (NullableContentV2DirectoryColorsGet200Response) IsSet

func (NullableContentV2DirectoryColorsGet200Response) MarshalJSON

func (*NullableContentV2DirectoryColorsGet200Response) Set

func (*NullableContentV2DirectoryColorsGet200Response) UnmarshalJSON

func (*NullableContentV2DirectoryColorsGet200Response) Unset

type NullableContentV2DirectoryColorsGet200ResponseDataInner

type NullableContentV2DirectoryColorsGet200ResponseDataInner struct {
	// contains filtered or unexported fields
}

func (NullableContentV2DirectoryColorsGet200ResponseDataInner) Get

func (NullableContentV2DirectoryColorsGet200ResponseDataInner) IsSet

func (NullableContentV2DirectoryColorsGet200ResponseDataInner) MarshalJSON

func (*NullableContentV2DirectoryColorsGet200ResponseDataInner) Set

func (*NullableContentV2DirectoryColorsGet200ResponseDataInner) UnmarshalJSON

func (*NullableContentV2DirectoryColorsGet200ResponseDataInner) Unset

type NullableContentV2DirectoryCountriesGet200Response

type NullableContentV2DirectoryCountriesGet200Response struct {
	// contains filtered or unexported fields
}

func (NullableContentV2DirectoryCountriesGet200Response) Get

func (NullableContentV2DirectoryCountriesGet200Response) IsSet

func (NullableContentV2DirectoryCountriesGet200Response) MarshalJSON

func (*NullableContentV2DirectoryCountriesGet200Response) Set

func (*NullableContentV2DirectoryCountriesGet200Response) UnmarshalJSON

func (*NullableContentV2DirectoryCountriesGet200Response) Unset

type NullableContentV2DirectoryCountriesGet200ResponseDataInner

type NullableContentV2DirectoryCountriesGet200ResponseDataInner struct {
	// contains filtered or unexported fields
}

func (NullableContentV2DirectoryCountriesGet200ResponseDataInner) Get

func (NullableContentV2DirectoryCountriesGet200ResponseDataInner) IsSet

func (NullableContentV2DirectoryCountriesGet200ResponseDataInner) MarshalJSON

func (*NullableContentV2DirectoryCountriesGet200ResponseDataInner) Set

func (*NullableContentV2DirectoryCountriesGet200ResponseDataInner) UnmarshalJSON

func (*NullableContentV2DirectoryCountriesGet200ResponseDataInner) Unset

type NullableContentV2DirectoryKindsGet200Response

type NullableContentV2DirectoryKindsGet200Response struct {
	// contains filtered or unexported fields
}

func (NullableContentV2DirectoryKindsGet200Response) Get

func (NullableContentV2DirectoryKindsGet200Response) IsSet

func (NullableContentV2DirectoryKindsGet200Response) MarshalJSON

func (*NullableContentV2DirectoryKindsGet200Response) Set

func (*NullableContentV2DirectoryKindsGet200Response) UnmarshalJSON

func (*NullableContentV2DirectoryKindsGet200Response) Unset

type NullableContentV2DirectorySeasonsGet200Response

type NullableContentV2DirectorySeasonsGet200Response struct {
	// contains filtered or unexported fields
}

func (NullableContentV2DirectorySeasonsGet200Response) Get

func (NullableContentV2DirectorySeasonsGet200Response) IsSet

func (NullableContentV2DirectorySeasonsGet200Response) MarshalJSON

func (*NullableContentV2DirectorySeasonsGet200Response) Set

func (*NullableContentV2DirectorySeasonsGet200Response) UnmarshalJSON

func (*NullableContentV2DirectorySeasonsGet200Response) Unset

type NullableContentV2DirectoryTnvedGet200Response

type NullableContentV2DirectoryTnvedGet200Response struct {
	// contains filtered or unexported fields
}

func (NullableContentV2DirectoryTnvedGet200Response) Get

func (NullableContentV2DirectoryTnvedGet200Response) IsSet

func (NullableContentV2DirectoryTnvedGet200Response) MarshalJSON

func (*NullableContentV2DirectoryTnvedGet200Response) Set

func (*NullableContentV2DirectoryTnvedGet200Response) UnmarshalJSON

func (*NullableContentV2DirectoryTnvedGet200Response) Unset

type NullableContentV2DirectoryTnvedGet200ResponseDataInner

type NullableContentV2DirectoryTnvedGet200ResponseDataInner struct {
	// contains filtered or unexported fields
}

func (NullableContentV2DirectoryTnvedGet200ResponseDataInner) Get

func (NullableContentV2DirectoryTnvedGet200ResponseDataInner) IsSet

func (NullableContentV2DirectoryTnvedGet200ResponseDataInner) MarshalJSON

func (*NullableContentV2DirectoryTnvedGet200ResponseDataInner) Set

func (*NullableContentV2DirectoryTnvedGet200ResponseDataInner) UnmarshalJSON

func (*NullableContentV2DirectoryTnvedGet200ResponseDataInner) Unset

type NullableContentV2DirectoryVatGet200Response

type NullableContentV2DirectoryVatGet200Response struct {
	// contains filtered or unexported fields
}

func (NullableContentV2DirectoryVatGet200Response) Get

func (NullableContentV2DirectoryVatGet200Response) IsSet

func (NullableContentV2DirectoryVatGet200Response) MarshalJSON

func (*NullableContentV2DirectoryVatGet200Response) Set

func (*NullableContentV2DirectoryVatGet200Response) UnmarshalJSON

func (v *NullableContentV2DirectoryVatGet200Response) UnmarshalJSON(src []byte) error

func (*NullableContentV2DirectoryVatGet200Response) Unset

type NullableContentV2GetCardsListPost200Response

type NullableContentV2GetCardsListPost200Response struct {
	// contains filtered or unexported fields
}

func (NullableContentV2GetCardsListPost200Response) Get

func (NullableContentV2GetCardsListPost200Response) IsSet

func (NullableContentV2GetCardsListPost200Response) MarshalJSON

func (*NullableContentV2GetCardsListPost200Response) Set

func (*NullableContentV2GetCardsListPost200Response) UnmarshalJSON

func (*NullableContentV2GetCardsListPost200Response) Unset

type NullableContentV2GetCardsListPost200ResponseCardsInner

type NullableContentV2GetCardsListPost200ResponseCardsInner struct {
	// contains filtered or unexported fields
}

func (NullableContentV2GetCardsListPost200ResponseCardsInner) Get

func (NullableContentV2GetCardsListPost200ResponseCardsInner) IsSet

func (NullableContentV2GetCardsListPost200ResponseCardsInner) MarshalJSON

func (*NullableContentV2GetCardsListPost200ResponseCardsInner) Set

func (*NullableContentV2GetCardsListPost200ResponseCardsInner) UnmarshalJSON

func (*NullableContentV2GetCardsListPost200ResponseCardsInner) Unset

type NullableContentV2GetCardsListPost200ResponseCardsInnerCharacteristicsInner

type NullableContentV2GetCardsListPost200ResponseCardsInnerCharacteristicsInner struct {
	// contains filtered or unexported fields
}

func (NullableContentV2GetCardsListPost200ResponseCardsInnerCharacteristicsInner) Get

func (NullableContentV2GetCardsListPost200ResponseCardsInnerCharacteristicsInner) IsSet

func (NullableContentV2GetCardsListPost200ResponseCardsInnerCharacteristicsInner) MarshalJSON

func (*NullableContentV2GetCardsListPost200ResponseCardsInnerCharacteristicsInner) Set

func (*NullableContentV2GetCardsListPost200ResponseCardsInnerCharacteristicsInner) UnmarshalJSON

func (*NullableContentV2GetCardsListPost200ResponseCardsInnerCharacteristicsInner) Unset

type NullableContentV2GetCardsListPost200ResponseCardsInnerDimensions

type NullableContentV2GetCardsListPost200ResponseCardsInnerDimensions struct {
	// contains filtered or unexported fields
}

func (NullableContentV2GetCardsListPost200ResponseCardsInnerDimensions) Get

func (NullableContentV2GetCardsListPost200ResponseCardsInnerDimensions) IsSet

func (NullableContentV2GetCardsListPost200ResponseCardsInnerDimensions) MarshalJSON

func (*NullableContentV2GetCardsListPost200ResponseCardsInnerDimensions) Set

func (*NullableContentV2GetCardsListPost200ResponseCardsInnerDimensions) UnmarshalJSON

func (*NullableContentV2GetCardsListPost200ResponseCardsInnerDimensions) Unset

type NullableContentV2GetCardsListPost200ResponseCardsInnerPhotosInner

type NullableContentV2GetCardsListPost200ResponseCardsInnerPhotosInner struct {
	// contains filtered or unexported fields
}

func (NullableContentV2GetCardsListPost200ResponseCardsInnerPhotosInner) Get

func (NullableContentV2GetCardsListPost200ResponseCardsInnerPhotosInner) IsSet

func (NullableContentV2GetCardsListPost200ResponseCardsInnerPhotosInner) MarshalJSON

func (*NullableContentV2GetCardsListPost200ResponseCardsInnerPhotosInner) Set

func (*NullableContentV2GetCardsListPost200ResponseCardsInnerPhotosInner) UnmarshalJSON

func (*NullableContentV2GetCardsListPost200ResponseCardsInnerPhotosInner) Unset

type NullableContentV2GetCardsListPost200ResponseCardsInnerSizesInner

type NullableContentV2GetCardsListPost200ResponseCardsInnerSizesInner struct {
	// contains filtered or unexported fields
}

func (NullableContentV2GetCardsListPost200ResponseCardsInnerSizesInner) Get

func (NullableContentV2GetCardsListPost200ResponseCardsInnerSizesInner) IsSet

func (NullableContentV2GetCardsListPost200ResponseCardsInnerSizesInner) MarshalJSON

func (*NullableContentV2GetCardsListPost200ResponseCardsInnerSizesInner) Set

func (*NullableContentV2GetCardsListPost200ResponseCardsInnerSizesInner) UnmarshalJSON

func (*NullableContentV2GetCardsListPost200ResponseCardsInnerSizesInner) Unset

type NullableContentV2GetCardsListPost200ResponseCardsInnerTagsInner

type NullableContentV2GetCardsListPost200ResponseCardsInnerTagsInner struct {
	// contains filtered or unexported fields
}

func (NullableContentV2GetCardsListPost200ResponseCardsInnerTagsInner) Get

func (NullableContentV2GetCardsListPost200ResponseCardsInnerTagsInner) IsSet

func (NullableContentV2GetCardsListPost200ResponseCardsInnerTagsInner) MarshalJSON

func (*NullableContentV2GetCardsListPost200ResponseCardsInnerTagsInner) Set

func (*NullableContentV2GetCardsListPost200ResponseCardsInnerTagsInner) UnmarshalJSON

func (*NullableContentV2GetCardsListPost200ResponseCardsInnerTagsInner) Unset

type NullableContentV2GetCardsListPost200ResponseCardsInnerWholesale

type NullableContentV2GetCardsListPost200ResponseCardsInnerWholesale struct {
	// contains filtered or unexported fields
}

func (NullableContentV2GetCardsListPost200ResponseCardsInnerWholesale) Get

func (NullableContentV2GetCardsListPost200ResponseCardsInnerWholesale) IsSet

func (NullableContentV2GetCardsListPost200ResponseCardsInnerWholesale) MarshalJSON

func (*NullableContentV2GetCardsListPost200ResponseCardsInnerWholesale) Set

func (*NullableContentV2GetCardsListPost200ResponseCardsInnerWholesale) UnmarshalJSON

func (*NullableContentV2GetCardsListPost200ResponseCardsInnerWholesale) Unset

type NullableContentV2GetCardsListPost200ResponseCursor

type NullableContentV2GetCardsListPost200ResponseCursor struct {
	// contains filtered or unexported fields
}

func (NullableContentV2GetCardsListPost200ResponseCursor) Get

func (NullableContentV2GetCardsListPost200ResponseCursor) IsSet

func (NullableContentV2GetCardsListPost200ResponseCursor) MarshalJSON

func (*NullableContentV2GetCardsListPost200ResponseCursor) Set

func (*NullableContentV2GetCardsListPost200ResponseCursor) UnmarshalJSON

func (*NullableContentV2GetCardsListPost200ResponseCursor) Unset

type NullableContentV2GetCardsListPostRequest

type NullableContentV2GetCardsListPostRequest struct {
	// contains filtered or unexported fields
}

func (NullableContentV2GetCardsListPostRequest) Get

func (NullableContentV2GetCardsListPostRequest) IsSet

func (NullableContentV2GetCardsListPostRequest) MarshalJSON

func (*NullableContentV2GetCardsListPostRequest) Set

func (*NullableContentV2GetCardsListPostRequest) UnmarshalJSON

func (v *NullableContentV2GetCardsListPostRequest) UnmarshalJSON(src []byte) error

func (*NullableContentV2GetCardsListPostRequest) Unset

type NullableContentV2GetCardsListPostRequestSettings

type NullableContentV2GetCardsListPostRequestSettings struct {
	// contains filtered or unexported fields
}

func (NullableContentV2GetCardsListPostRequestSettings) Get

func (NullableContentV2GetCardsListPostRequestSettings) IsSet

func (NullableContentV2GetCardsListPostRequestSettings) MarshalJSON

func (*NullableContentV2GetCardsListPostRequestSettings) Set

func (*NullableContentV2GetCardsListPostRequestSettings) UnmarshalJSON

func (*NullableContentV2GetCardsListPostRequestSettings) Unset

type NullableContentV2GetCardsListPostRequestSettingsCursor

type NullableContentV2GetCardsListPostRequestSettingsCursor struct {
	// contains filtered or unexported fields
}

func (NullableContentV2GetCardsListPostRequestSettingsCursor) Get

func (NullableContentV2GetCardsListPostRequestSettingsCursor) IsSet

func (NullableContentV2GetCardsListPostRequestSettingsCursor) MarshalJSON

func (*NullableContentV2GetCardsListPostRequestSettingsCursor) Set

func (*NullableContentV2GetCardsListPostRequestSettingsCursor) UnmarshalJSON

func (*NullableContentV2GetCardsListPostRequestSettingsCursor) Unset

type NullableContentV2GetCardsListPostRequestSettingsFilter

type NullableContentV2GetCardsListPostRequestSettingsFilter struct {
	// contains filtered or unexported fields
}

func (NullableContentV2GetCardsListPostRequestSettingsFilter) Get

func (NullableContentV2GetCardsListPostRequestSettingsFilter) IsSet

func (NullableContentV2GetCardsListPostRequestSettingsFilter) MarshalJSON

func (*NullableContentV2GetCardsListPostRequestSettingsFilter) Set

func (*NullableContentV2GetCardsListPostRequestSettingsFilter) UnmarshalJSON

func (*NullableContentV2GetCardsListPostRequestSettingsFilter) Unset

type NullableContentV2GetCardsListPostRequestSettingsSort

type NullableContentV2GetCardsListPostRequestSettingsSort struct {
	// contains filtered or unexported fields
}

func (NullableContentV2GetCardsListPostRequestSettingsSort) Get

func (NullableContentV2GetCardsListPostRequestSettingsSort) IsSet

func (NullableContentV2GetCardsListPostRequestSettingsSort) MarshalJSON

func (*NullableContentV2GetCardsListPostRequestSettingsSort) Set

func (*NullableContentV2GetCardsListPostRequestSettingsSort) UnmarshalJSON

func (*NullableContentV2GetCardsListPostRequestSettingsSort) Unset

type NullableContentV2GetCardsTrashPost200Response

type NullableContentV2GetCardsTrashPost200Response struct {
	// contains filtered or unexported fields
}

func (NullableContentV2GetCardsTrashPost200Response) Get

func (NullableContentV2GetCardsTrashPost200Response) IsSet

func (NullableContentV2GetCardsTrashPost200Response) MarshalJSON

func (*NullableContentV2GetCardsTrashPost200Response) Set

func (*NullableContentV2GetCardsTrashPost200Response) UnmarshalJSON

func (*NullableContentV2GetCardsTrashPost200Response) Unset

type NullableContentV2GetCardsTrashPost200ResponseCardsInner

type NullableContentV2GetCardsTrashPost200ResponseCardsInner struct {
	// contains filtered or unexported fields
}

func (NullableContentV2GetCardsTrashPost200ResponseCardsInner) Get

func (NullableContentV2GetCardsTrashPost200ResponseCardsInner) IsSet

func (NullableContentV2GetCardsTrashPost200ResponseCardsInner) MarshalJSON

func (*NullableContentV2GetCardsTrashPost200ResponseCardsInner) Set

func (*NullableContentV2GetCardsTrashPost200ResponseCardsInner) UnmarshalJSON

func (*NullableContentV2GetCardsTrashPost200ResponseCardsInner) Unset

type NullableContentV2GetCardsTrashPost200ResponseCardsInnerSizesInner

type NullableContentV2GetCardsTrashPost200ResponseCardsInnerSizesInner struct {
	// contains filtered or unexported fields
}

func (NullableContentV2GetCardsTrashPost200ResponseCardsInnerSizesInner) Get

func (NullableContentV2GetCardsTrashPost200ResponseCardsInnerSizesInner) IsSet

func (NullableContentV2GetCardsTrashPost200ResponseCardsInnerSizesInner) MarshalJSON

func (*NullableContentV2GetCardsTrashPost200ResponseCardsInnerSizesInner) Set

func (*NullableContentV2GetCardsTrashPost200ResponseCardsInnerSizesInner) UnmarshalJSON

func (*NullableContentV2GetCardsTrashPost200ResponseCardsInnerSizesInner) Unset

type NullableContentV2GetCardsTrashPost200ResponseCursor

type NullableContentV2GetCardsTrashPost200ResponseCursor struct {
	// contains filtered or unexported fields
}

func (NullableContentV2GetCardsTrashPost200ResponseCursor) Get

func (NullableContentV2GetCardsTrashPost200ResponseCursor) IsSet

func (NullableContentV2GetCardsTrashPost200ResponseCursor) MarshalJSON

func (*NullableContentV2GetCardsTrashPost200ResponseCursor) Set

func (*NullableContentV2GetCardsTrashPost200ResponseCursor) UnmarshalJSON

func (*NullableContentV2GetCardsTrashPost200ResponseCursor) Unset

type NullableContentV2GetCardsTrashPostRequest

type NullableContentV2GetCardsTrashPostRequest struct {
	// contains filtered or unexported fields
}

func (NullableContentV2GetCardsTrashPostRequest) Get

func (NullableContentV2GetCardsTrashPostRequest) IsSet

func (NullableContentV2GetCardsTrashPostRequest) MarshalJSON

func (*NullableContentV2GetCardsTrashPostRequest) Set

func (*NullableContentV2GetCardsTrashPostRequest) UnmarshalJSON

func (v *NullableContentV2GetCardsTrashPostRequest) UnmarshalJSON(src []byte) error

func (*NullableContentV2GetCardsTrashPostRequest) Unset

type NullableContentV2GetCardsTrashPostRequestSettings

type NullableContentV2GetCardsTrashPostRequestSettings struct {
	// contains filtered or unexported fields
}

func (NullableContentV2GetCardsTrashPostRequestSettings) Get

func (NullableContentV2GetCardsTrashPostRequestSettings) IsSet

func (NullableContentV2GetCardsTrashPostRequestSettings) MarshalJSON

func (*NullableContentV2GetCardsTrashPostRequestSettings) Set

func (*NullableContentV2GetCardsTrashPostRequestSettings) UnmarshalJSON

func (*NullableContentV2GetCardsTrashPostRequestSettings) Unset

type NullableContentV2GetCardsTrashPostRequestSettingsCursor

type NullableContentV2GetCardsTrashPostRequestSettingsCursor struct {
	// contains filtered or unexported fields
}

func (NullableContentV2GetCardsTrashPostRequestSettingsCursor) Get

func (NullableContentV2GetCardsTrashPostRequestSettingsCursor) IsSet

func (NullableContentV2GetCardsTrashPostRequestSettingsCursor) MarshalJSON

func (*NullableContentV2GetCardsTrashPostRequestSettingsCursor) Set

func (*NullableContentV2GetCardsTrashPostRequestSettingsCursor) UnmarshalJSON

func (*NullableContentV2GetCardsTrashPostRequestSettingsCursor) Unset

type NullableContentV2GetCardsTrashPostRequestSettingsFilter

type NullableContentV2GetCardsTrashPostRequestSettingsFilter struct {
	// contains filtered or unexported fields
}

func (NullableContentV2GetCardsTrashPostRequestSettingsFilter) Get

func (NullableContentV2GetCardsTrashPostRequestSettingsFilter) IsSet

func (NullableContentV2GetCardsTrashPostRequestSettingsFilter) MarshalJSON

func (*NullableContentV2GetCardsTrashPostRequestSettingsFilter) Set

func (*NullableContentV2GetCardsTrashPostRequestSettingsFilter) UnmarshalJSON

func (*NullableContentV2GetCardsTrashPostRequestSettingsFilter) Unset

type NullableContentV2GetCardsTrashPostRequestSettingsSort

type NullableContentV2GetCardsTrashPostRequestSettingsSort struct {
	// contains filtered or unexported fields
}

func (NullableContentV2GetCardsTrashPostRequestSettingsSort) Get

func (NullableContentV2GetCardsTrashPostRequestSettingsSort) IsSet

func (NullableContentV2GetCardsTrashPostRequestSettingsSort) MarshalJSON

func (*NullableContentV2GetCardsTrashPostRequestSettingsSort) Set

func (*NullableContentV2GetCardsTrashPostRequestSettingsSort) UnmarshalJSON

func (*NullableContentV2GetCardsTrashPostRequestSettingsSort) Unset

type NullableContentV2ObjectAllGet200Response

type NullableContentV2ObjectAllGet200Response struct {
	// contains filtered or unexported fields
}

func (NullableContentV2ObjectAllGet200Response) Get

func (NullableContentV2ObjectAllGet200Response) IsSet

func (NullableContentV2ObjectAllGet200Response) MarshalJSON

func (*NullableContentV2ObjectAllGet200Response) Set

func (*NullableContentV2ObjectAllGet200Response) UnmarshalJSON

func (v *NullableContentV2ObjectAllGet200Response) UnmarshalJSON(src []byte) error

func (*NullableContentV2ObjectAllGet200Response) Unset

type NullableContentV2ObjectAllGet200ResponseDataInner

type NullableContentV2ObjectAllGet200ResponseDataInner struct {
	// contains filtered or unexported fields
}

func (NullableContentV2ObjectAllGet200ResponseDataInner) Get

func (NullableContentV2ObjectAllGet200ResponseDataInner) IsSet

func (NullableContentV2ObjectAllGet200ResponseDataInner) MarshalJSON

func (*NullableContentV2ObjectAllGet200ResponseDataInner) Set

func (*NullableContentV2ObjectAllGet200ResponseDataInner) UnmarshalJSON

func (*NullableContentV2ObjectAllGet200ResponseDataInner) Unset

type NullableContentV2ObjectCharcsSubjectIdGet200Response

type NullableContentV2ObjectCharcsSubjectIdGet200Response struct {
	// contains filtered or unexported fields
}

func (NullableContentV2ObjectCharcsSubjectIdGet200Response) Get

func (NullableContentV2ObjectCharcsSubjectIdGet200Response) IsSet

func (NullableContentV2ObjectCharcsSubjectIdGet200Response) MarshalJSON

func (*NullableContentV2ObjectCharcsSubjectIdGet200Response) Set

func (*NullableContentV2ObjectCharcsSubjectIdGet200Response) UnmarshalJSON

func (*NullableContentV2ObjectCharcsSubjectIdGet200Response) Unset

type NullableContentV2ObjectCharcsSubjectIdGet200ResponseDataInner

type NullableContentV2ObjectCharcsSubjectIdGet200ResponseDataInner struct {
	// contains filtered or unexported fields
}

func (NullableContentV2ObjectCharcsSubjectIdGet200ResponseDataInner) Get

func (NullableContentV2ObjectCharcsSubjectIdGet200ResponseDataInner) IsSet

func (NullableContentV2ObjectCharcsSubjectIdGet200ResponseDataInner) MarshalJSON

func (*NullableContentV2ObjectCharcsSubjectIdGet200ResponseDataInner) Set

func (*NullableContentV2ObjectCharcsSubjectIdGet200ResponseDataInner) UnmarshalJSON

func (*NullableContentV2ObjectCharcsSubjectIdGet200ResponseDataInner) Unset

type NullableContentV2ObjectParentAllGet200Response

type NullableContentV2ObjectParentAllGet200Response struct {
	// contains filtered or unexported fields
}

func (NullableContentV2ObjectParentAllGet200Response) Get

func (NullableContentV2ObjectParentAllGet200Response) IsSet

func (NullableContentV2ObjectParentAllGet200Response) MarshalJSON

func (*NullableContentV2ObjectParentAllGet200Response) Set

func (*NullableContentV2ObjectParentAllGet200Response) UnmarshalJSON

func (*NullableContentV2ObjectParentAllGet200Response) Unset

type NullableContentV2ObjectParentAllGet200ResponseDataInner

type NullableContentV2ObjectParentAllGet200ResponseDataInner struct {
	// contains filtered or unexported fields
}

func (NullableContentV2ObjectParentAllGet200ResponseDataInner) Get

func (NullableContentV2ObjectParentAllGet200ResponseDataInner) IsSet

func (NullableContentV2ObjectParentAllGet200ResponseDataInner) MarshalJSON

func (*NullableContentV2ObjectParentAllGet200ResponseDataInner) Set

func (*NullableContentV2ObjectParentAllGet200ResponseDataInner) UnmarshalJSON

func (*NullableContentV2ObjectParentAllGet200ResponseDataInner) Unset

type NullableContentV2ObjectParentAllGet401Response

type NullableContentV2ObjectParentAllGet401Response struct {
	// contains filtered or unexported fields
}

func (NullableContentV2ObjectParentAllGet401Response) Get

func (NullableContentV2ObjectParentAllGet401Response) IsSet

func (NullableContentV2ObjectParentAllGet401Response) MarshalJSON

func (*NullableContentV2ObjectParentAllGet401Response) Set

func (*NullableContentV2ObjectParentAllGet401Response) UnmarshalJSON

func (*NullableContentV2ObjectParentAllGet401Response) Unset

type NullableContentV2TagIdPatchRequest

type NullableContentV2TagIdPatchRequest struct {
	// contains filtered or unexported fields
}

func (NullableContentV2TagIdPatchRequest) Get

func (NullableContentV2TagIdPatchRequest) IsSet

func (NullableContentV2TagIdPatchRequest) MarshalJSON

func (v NullableContentV2TagIdPatchRequest) MarshalJSON() ([]byte, error)

func (*NullableContentV2TagIdPatchRequest) Set

func (*NullableContentV2TagIdPatchRequest) UnmarshalJSON

func (v *NullableContentV2TagIdPatchRequest) UnmarshalJSON(src []byte) error

func (*NullableContentV2TagIdPatchRequest) Unset

type NullableContentV2TagNomenclatureLinkPostRequest

type NullableContentV2TagNomenclatureLinkPostRequest struct {
	// contains filtered or unexported fields
}

func (NullableContentV2TagNomenclatureLinkPostRequest) Get

func (NullableContentV2TagNomenclatureLinkPostRequest) IsSet

func (NullableContentV2TagNomenclatureLinkPostRequest) MarshalJSON

func (*NullableContentV2TagNomenclatureLinkPostRequest) Set

func (*NullableContentV2TagNomenclatureLinkPostRequest) UnmarshalJSON

func (*NullableContentV2TagNomenclatureLinkPostRequest) Unset

type NullableContentV2TagPostRequest

type NullableContentV2TagPostRequest struct {
	// contains filtered or unexported fields
}

func (NullableContentV2TagPostRequest) Get

func (NullableContentV2TagPostRequest) IsSet

func (NullableContentV2TagPostRequest) MarshalJSON

func (v NullableContentV2TagPostRequest) MarshalJSON() ([]byte, error)

func (*NullableContentV2TagPostRequest) Set

func (*NullableContentV2TagPostRequest) UnmarshalJSON

func (v *NullableContentV2TagPostRequest) UnmarshalJSON(src []byte) error

func (*NullableContentV2TagPostRequest) Unset

type NullableContentV2TagsGet200Response

type NullableContentV2TagsGet200Response struct {
	// contains filtered or unexported fields
}

func (NullableContentV2TagsGet200Response) Get

func (NullableContentV2TagsGet200Response) IsSet

func (NullableContentV2TagsGet200Response) MarshalJSON

func (v NullableContentV2TagsGet200Response) MarshalJSON() ([]byte, error)

func (*NullableContentV2TagsGet200Response) Set

func (*NullableContentV2TagsGet200Response) UnmarshalJSON

func (v *NullableContentV2TagsGet200Response) UnmarshalJSON(src []byte) error

func (*NullableContentV2TagsGet200Response) Unset

type NullableContentV2TagsGet200ResponseData

type NullableContentV2TagsGet200ResponseData struct {
	// contains filtered or unexported fields
}

func (NullableContentV2TagsGet200ResponseData) Get

func (NullableContentV2TagsGet200ResponseData) IsSet

func (NullableContentV2TagsGet200ResponseData) MarshalJSON

func (v NullableContentV2TagsGet200ResponseData) MarshalJSON() ([]byte, error)

func (*NullableContentV2TagsGet200ResponseData) Set

func (*NullableContentV2TagsGet200ResponseData) UnmarshalJSON

func (v *NullableContentV2TagsGet200ResponseData) UnmarshalJSON(src []byte) error

func (*NullableContentV2TagsGet200ResponseData) Unset

type NullableContentV2TagsGet402Response

type NullableContentV2TagsGet402Response struct {
	// contains filtered or unexported fields
}

func (NullableContentV2TagsGet402Response) Get

func (NullableContentV2TagsGet402Response) IsSet

func (NullableContentV2TagsGet402Response) MarshalJSON

func (v NullableContentV2TagsGet402Response) MarshalJSON() ([]byte, error)

func (*NullableContentV2TagsGet402Response) Set

func (*NullableContentV2TagsGet402Response) UnmarshalJSON

func (v *NullableContentV2TagsGet402Response) UnmarshalJSON(src []byte) error

func (*NullableContentV2TagsGet402Response) Unset

type NullableContentV3MediaFilePost200Response

type NullableContentV3MediaFilePost200Response struct {
	// contains filtered or unexported fields
}

func (NullableContentV3MediaFilePost200Response) Get

func (NullableContentV3MediaFilePost200Response) IsSet

func (NullableContentV3MediaFilePost200Response) MarshalJSON

func (*NullableContentV3MediaFilePost200Response) Set

func (*NullableContentV3MediaFilePost200Response) UnmarshalJSON

func (v *NullableContentV3MediaFilePost200Response) UnmarshalJSON(src []byte) error

func (*NullableContentV3MediaFilePost200Response) Unset

type NullableContentV3MediaSavePostRequest

type NullableContentV3MediaSavePostRequest struct {
	// contains filtered or unexported fields
}

func (NullableContentV3MediaSavePostRequest) Get

func (NullableContentV3MediaSavePostRequest) IsSet

func (NullableContentV3MediaSavePostRequest) MarshalJSON

func (v NullableContentV3MediaSavePostRequest) MarshalJSON() ([]byte, error)

func (*NullableContentV3MediaSavePostRequest) Set

func (*NullableContentV3MediaSavePostRequest) UnmarshalJSON

func (v *NullableContentV3MediaSavePostRequest) UnmarshalJSON(src []byte) error

func (*NullableContentV3MediaSavePostRequest) Unset

type NullableError

type NullableError struct {
	// contains filtered or unexported fields
}

func NewNullableError

func NewNullableError(val *Error) *NullableError

func (NullableError) Get

func (v NullableError) Get() *Error

func (NullableError) IsSet

func (v NullableError) IsSet() bool

func (NullableError) MarshalJSON

func (v NullableError) MarshalJSON() ([]byte, error)

func (*NullableError) Set

func (v *NullableError) Set(val *Error)

func (*NullableError) UnmarshalJSON

func (v *NullableError) UnmarshalJSON(src []byte) error

func (*NullableError) Unset

func (v *NullableError) Unset()

type NullableFloat32

type NullableFloat32 struct {
	// contains filtered or unexported fields
}

func NewNullableFloat32

func NewNullableFloat32(val *float32) *NullableFloat32

func (NullableFloat32) Get

func (v NullableFloat32) Get() *float32

func (NullableFloat32) IsSet

func (v NullableFloat32) IsSet() bool

func (NullableFloat32) MarshalJSON

func (v NullableFloat32) MarshalJSON() ([]byte, error)

func (*NullableFloat32) Set

func (v *NullableFloat32) Set(val *float32)

func (*NullableFloat32) UnmarshalJSON

func (v *NullableFloat32) UnmarshalJSON(src []byte) error

func (*NullableFloat32) Unset

func (v *NullableFloat32) Unset()

type NullableFloat64

type NullableFloat64 struct {
	// contains filtered or unexported fields
}

func NewNullableFloat64

func NewNullableFloat64(val *float64) *NullableFloat64

func (NullableFloat64) Get

func (v NullableFloat64) Get() *float64

func (NullableFloat64) IsSet

func (v NullableFloat64) IsSet() bool

func (NullableFloat64) MarshalJSON

func (v NullableFloat64) MarshalJSON() ([]byte, error)

func (*NullableFloat64) Set

func (v *NullableFloat64) Set(val *float64)

func (*NullableFloat64) UnmarshalJSON

func (v *NullableFloat64) UnmarshalJSON(src []byte) error

func (*NullableFloat64) Unset

func (v *NullableFloat64) Unset()

type NullableGood

type NullableGood struct {
	// contains filtered or unexported fields
}

func NewNullableGood

func NewNullableGood(val *Good) *NullableGood

func (NullableGood) Get

func (v NullableGood) Get() *Good

func (NullableGood) IsSet

func (v NullableGood) IsSet() bool

func (NullableGood) MarshalJSON

func (v NullableGood) MarshalJSON() ([]byte, error)

func (*NullableGood) Set

func (v *NullableGood) Set(val *Good)

func (*NullableGood) UnmarshalJSON

func (v *NullableGood) UnmarshalJSON(src []byte) error

func (*NullableGood) Unset

func (v *NullableGood) Unset()

type NullableGoodBufferHistory

type NullableGoodBufferHistory struct {
	// contains filtered or unexported fields
}

func NewNullableGoodBufferHistory

func NewNullableGoodBufferHistory(val *GoodBufferHistory) *NullableGoodBufferHistory

func (NullableGoodBufferHistory) Get

func (NullableGoodBufferHistory) IsSet

func (v NullableGoodBufferHistory) IsSet() bool

func (NullableGoodBufferHistory) MarshalJSON

func (v NullableGoodBufferHistory) MarshalJSON() ([]byte, error)

func (*NullableGoodBufferHistory) Set

func (*NullableGoodBufferHistory) UnmarshalJSON

func (v *NullableGoodBufferHistory) UnmarshalJSON(src []byte) error

func (*NullableGoodBufferHistory) Unset

func (v *NullableGoodBufferHistory) Unset()

type NullableGoodHistory

type NullableGoodHistory struct {
	// contains filtered or unexported fields
}

func NewNullableGoodHistory

func NewNullableGoodHistory(val *GoodHistory) *NullableGoodHistory

func (NullableGoodHistory) Get

func (NullableGoodHistory) IsSet

func (v NullableGoodHistory) IsSet() bool

func (NullableGoodHistory) MarshalJSON

func (v NullableGoodHistory) MarshalJSON() ([]byte, error)

func (*NullableGoodHistory) Set

func (v *NullableGoodHistory) Set(val *GoodHistory)

func (*NullableGoodHistory) UnmarshalJSON

func (v *NullableGoodHistory) UnmarshalJSON(src []byte) error

func (*NullableGoodHistory) Unset

func (v *NullableGoodHistory) Unset()

type NullableGoodsList

type NullableGoodsList struct {
	// contains filtered or unexported fields
}

func NewNullableGoodsList

func NewNullableGoodsList(val *GoodsList) *NullableGoodsList

func (NullableGoodsList) Get

func (v NullableGoodsList) Get() *GoodsList

func (NullableGoodsList) IsSet

func (v NullableGoodsList) IsSet() bool

func (NullableGoodsList) MarshalJSON

func (v NullableGoodsList) MarshalJSON() ([]byte, error)

func (*NullableGoodsList) Set

func (v *NullableGoodsList) Set(val *GoodsList)

func (*NullableGoodsList) UnmarshalJSON

func (v *NullableGoodsList) UnmarshalJSON(src []byte) error

func (*NullableGoodsList) Unset

func (v *NullableGoodsList) Unset()

type NullableGoodsListSizesInner

type NullableGoodsListSizesInner struct {
	// contains filtered or unexported fields
}

func NewNullableGoodsListSizesInner

func NewNullableGoodsListSizesInner(val *GoodsListSizesInner) *NullableGoodsListSizesInner

func (NullableGoodsListSizesInner) Get

func (NullableGoodsListSizesInner) IsSet

func (NullableGoodsListSizesInner) MarshalJSON

func (v NullableGoodsListSizesInner) MarshalJSON() ([]byte, error)

func (*NullableGoodsListSizesInner) Set

func (*NullableGoodsListSizesInner) UnmarshalJSON

func (v *NullableGoodsListSizesInner) UnmarshalJSON(src []byte) error

func (*NullableGoodsListSizesInner) Unset

func (v *NullableGoodsListSizesInner) Unset()

type NullableInt

type NullableInt struct {
	// contains filtered or unexported fields
}

func NewNullableInt

func NewNullableInt(val *int) *NullableInt

func (NullableInt) Get

func (v NullableInt) Get() *int

func (NullableInt) IsSet

func (v NullableInt) IsSet() bool

func (NullableInt) MarshalJSON

func (v NullableInt) MarshalJSON() ([]byte, error)

func (*NullableInt) Set

func (v *NullableInt) Set(val *int)

func (*NullableInt) UnmarshalJSON

func (v *NullableInt) UnmarshalJSON(src []byte) error

func (*NullableInt) Unset

func (v *NullableInt) Unset()

type NullableInt32

type NullableInt32 struct {
	// contains filtered or unexported fields
}

func NewNullableInt32

func NewNullableInt32(val *int32) *NullableInt32

func (NullableInt32) Get

func (v NullableInt32) Get() *int32

func (NullableInt32) IsSet

func (v NullableInt32) IsSet() bool

func (NullableInt32) MarshalJSON

func (v NullableInt32) MarshalJSON() ([]byte, error)

func (*NullableInt32) Set

func (v *NullableInt32) Set(val *int32)

func (*NullableInt32) UnmarshalJSON

func (v *NullableInt32) UnmarshalJSON(src []byte) error

func (*NullableInt32) Unset

func (v *NullableInt32) Unset()

type NullableInt64

type NullableInt64 struct {
	// contains filtered or unexported fields
}

func NewNullableInt64

func NewNullableInt64(val *int64) *NullableInt64

func (NullableInt64) Get

func (v NullableInt64) Get() *int64

func (NullableInt64) IsSet

func (v NullableInt64) IsSet() bool

func (NullableInt64) MarshalJSON

func (v NullableInt64) MarshalJSON() ([]byte, error)

func (*NullableInt64) Set

func (v *NullableInt64) Set(val *int64)

func (*NullableInt64) UnmarshalJSON

func (v *NullableInt64) UnmarshalJSON(src []byte) error

func (*NullableInt64) Unset

func (v *NullableInt64) Unset()

type NullableMediaErrors

type NullableMediaErrors struct {
	// contains filtered or unexported fields
}

func NewNullableMediaErrors

func NewNullableMediaErrors(val *MediaErrors) *NullableMediaErrors

func (NullableMediaErrors) Get

func (NullableMediaErrors) IsSet

func (v NullableMediaErrors) IsSet() bool

func (NullableMediaErrors) MarshalJSON

func (v NullableMediaErrors) MarshalJSON() ([]byte, error)

func (*NullableMediaErrors) Set

func (v *NullableMediaErrors) Set(val *MediaErrors)

func (*NullableMediaErrors) UnmarshalJSON

func (v *NullableMediaErrors) UnmarshalJSON(src []byte) error

func (*NullableMediaErrors) Unset

func (v *NullableMediaErrors) Unset()

type NullableModelsErrorBrand

type NullableModelsErrorBrand struct {
	// contains filtered or unexported fields
}

func NewNullableModelsErrorBrand

func NewNullableModelsErrorBrand(val *ModelsErrorBrand) *NullableModelsErrorBrand

func (NullableModelsErrorBrand) Get

func (NullableModelsErrorBrand) IsSet

func (v NullableModelsErrorBrand) IsSet() bool

func (NullableModelsErrorBrand) MarshalJSON

func (v NullableModelsErrorBrand) MarshalJSON() ([]byte, error)

func (*NullableModelsErrorBrand) Set

func (*NullableModelsErrorBrand) UnmarshalJSON

func (v *NullableModelsErrorBrand) UnmarshalJSON(src []byte) error

func (*NullableModelsErrorBrand) Unset

func (v *NullableModelsErrorBrand) Unset()

type NullableModelsErrorSubject

type NullableModelsErrorSubject struct {
	// contains filtered or unexported fields
}

func NewNullableModelsErrorSubject

func NewNullableModelsErrorSubject(val *ModelsErrorSubject) *NullableModelsErrorSubject

func (NullableModelsErrorSubject) Get

func (NullableModelsErrorSubject) IsSet

func (v NullableModelsErrorSubject) IsSet() bool

func (NullableModelsErrorSubject) MarshalJSON

func (v NullableModelsErrorSubject) MarshalJSON() ([]byte, error)

func (*NullableModelsErrorSubject) Set

func (*NullableModelsErrorSubject) UnmarshalJSON

func (v *NullableModelsErrorSubject) UnmarshalJSON(src []byte) error

func (*NullableModelsErrorSubject) Unset

func (v *NullableModelsErrorSubject) Unset()

type NullableModelsErrorTableListPublicRespV2

type NullableModelsErrorTableListPublicRespV2 struct {
	// contains filtered or unexported fields
}

func (NullableModelsErrorTableListPublicRespV2) Get

func (NullableModelsErrorTableListPublicRespV2) IsSet

func (NullableModelsErrorTableListPublicRespV2) MarshalJSON

func (*NullableModelsErrorTableListPublicRespV2) Set

func (*NullableModelsErrorTableListPublicRespV2) UnmarshalJSON

func (v *NullableModelsErrorTableListPublicRespV2) UnmarshalJSON(src []byte) error

func (*NullableModelsErrorTableListPublicRespV2) Unset

type NullableModelsErrorTableListPublicRespV2Item

type NullableModelsErrorTableListPublicRespV2Item struct {
	// contains filtered or unexported fields
}

func (NullableModelsErrorTableListPublicRespV2Item) Get

func (NullableModelsErrorTableListPublicRespV2Item) IsSet

func (NullableModelsErrorTableListPublicRespV2Item) MarshalJSON

func (*NullableModelsErrorTableListPublicRespV2Item) Set

func (*NullableModelsErrorTableListPublicRespV2Item) UnmarshalJSON

func (*NullableModelsErrorTableListPublicRespV2Item) Unset

type NullableOffice

type NullableOffice struct {
	// contains filtered or unexported fields
}

func NewNullableOffice

func NewNullableOffice(val *Office) *NullableOffice

func (NullableOffice) Get

func (v NullableOffice) Get() *Office

func (NullableOffice) IsSet

func (v NullableOffice) IsSet() bool

func (NullableOffice) MarshalJSON

func (v NullableOffice) MarshalJSON() ([]byte, error)

func (*NullableOffice) Set

func (v *NullableOffice) Set(val *Office)

func (*NullableOffice) UnmarshalJSON

func (v *NullableOffice) UnmarshalJSON(src []byte) error

func (*NullableOffice) Unset

func (v *NullableOffice) Unset()

type NullableQuarantineGoods

type NullableQuarantineGoods struct {
	// contains filtered or unexported fields
}

func NewNullableQuarantineGoods

func NewNullableQuarantineGoods(val *QuarantineGoods) *NullableQuarantineGoods

func (NullableQuarantineGoods) Get

func (NullableQuarantineGoods) IsSet

func (v NullableQuarantineGoods) IsSet() bool

func (NullableQuarantineGoods) MarshalJSON

func (v NullableQuarantineGoods) MarshalJSON() ([]byte, error)

func (*NullableQuarantineGoods) Set

func (*NullableQuarantineGoods) UnmarshalJSON

func (v *NullableQuarantineGoods) UnmarshalJSON(src []byte) error

func (*NullableQuarantineGoods) Unset

func (v *NullableQuarantineGoods) Unset()

type NullableRequestAlreadyExistsError

type NullableRequestAlreadyExistsError struct {
	// contains filtered or unexported fields
}

func (NullableRequestAlreadyExistsError) Get

func (NullableRequestAlreadyExistsError) IsSet

func (NullableRequestAlreadyExistsError) MarshalJSON

func (v NullableRequestAlreadyExistsError) MarshalJSON() ([]byte, error)

func (*NullableRequestAlreadyExistsError) Set

func (*NullableRequestAlreadyExistsError) UnmarshalJSON

func (v *NullableRequestAlreadyExistsError) UnmarshalJSON(src []byte) error

func (*NullableRequestAlreadyExistsError) Unset

type NullableRequestAlreadyExistsErrorData

type NullableRequestAlreadyExistsErrorData struct {
	// contains filtered or unexported fields
}

func (NullableRequestAlreadyExistsErrorData) Get

func (NullableRequestAlreadyExistsErrorData) IsSet

func (NullableRequestAlreadyExistsErrorData) MarshalJSON

func (v NullableRequestAlreadyExistsErrorData) MarshalJSON() ([]byte, error)

func (*NullableRequestAlreadyExistsErrorData) Set

func (*NullableRequestAlreadyExistsErrorData) UnmarshalJSON

func (v *NullableRequestAlreadyExistsErrorData) UnmarshalJSON(src []byte) error

func (*NullableRequestAlreadyExistsErrorData) Unset

type NullableRequestMoveNmsImtConn

type NullableRequestMoveNmsImtConn struct {
	// contains filtered or unexported fields
}

func (NullableRequestMoveNmsImtConn) Get

func (NullableRequestMoveNmsImtConn) IsSet

func (NullableRequestMoveNmsImtConn) MarshalJSON

func (v NullableRequestMoveNmsImtConn) MarshalJSON() ([]byte, error)

func (*NullableRequestMoveNmsImtConn) Set

func (*NullableRequestMoveNmsImtConn) UnmarshalJSON

func (v *NullableRequestMoveNmsImtConn) UnmarshalJSON(src []byte) error

func (*NullableRequestMoveNmsImtConn) Unset

func (v *NullableRequestMoveNmsImtConn) Unset()

type NullableRequestMoveNmsImtDisconn

type NullableRequestMoveNmsImtDisconn struct {
	// contains filtered or unexported fields
}

func (NullableRequestMoveNmsImtDisconn) Get

func (NullableRequestMoveNmsImtDisconn) IsSet

func (NullableRequestMoveNmsImtDisconn) MarshalJSON

func (v NullableRequestMoveNmsImtDisconn) MarshalJSON() ([]byte, error)

func (*NullableRequestMoveNmsImtDisconn) Set

func (*NullableRequestMoveNmsImtDisconn) UnmarshalJSON

func (v *NullableRequestMoveNmsImtDisconn) UnmarshalJSON(src []byte) error

func (*NullableRequestMoveNmsImtDisconn) Unset

type NullableRequestPublicViewerPublicErrorsTableListV2

type NullableRequestPublicViewerPublicErrorsTableListV2 struct {
	// contains filtered or unexported fields
}

func (NullableRequestPublicViewerPublicErrorsTableListV2) Get

func (NullableRequestPublicViewerPublicErrorsTableListV2) IsSet

func (NullableRequestPublicViewerPublicErrorsTableListV2) MarshalJSON

func (*NullableRequestPublicViewerPublicErrorsTableListV2) Set

func (*NullableRequestPublicViewerPublicErrorsTableListV2) UnmarshalJSON

func (*NullableRequestPublicViewerPublicErrorsTableListV2) Unset

type NullableResponseBodyContentError400

type NullableResponseBodyContentError400 struct {
	// contains filtered or unexported fields
}

func (NullableResponseBodyContentError400) Get

func (NullableResponseBodyContentError400) IsSet

func (NullableResponseBodyContentError400) MarshalJSON

func (v NullableResponseBodyContentError400) MarshalJSON() ([]byte, error)

func (*NullableResponseBodyContentError400) Set

func (*NullableResponseBodyContentError400) UnmarshalJSON

func (v *NullableResponseBodyContentError400) UnmarshalJSON(src []byte) error

func (*NullableResponseBodyContentError400) Unset

type NullableResponseBodyContentError403

type NullableResponseBodyContentError403 struct {
	// contains filtered or unexported fields
}

func (NullableResponseBodyContentError403) Get

func (NullableResponseBodyContentError403) IsSet

func (NullableResponseBodyContentError403) MarshalJSON

func (v NullableResponseBodyContentError403) MarshalJSON() ([]byte, error)

func (*NullableResponseBodyContentError403) Set

func (*NullableResponseBodyContentError403) UnmarshalJSON

func (v *NullableResponseBodyContentError403) UnmarshalJSON(src []byte) error

func (*NullableResponseBodyContentError403) Unset

type NullableResponseCardCreate

type NullableResponseCardCreate struct {
	// contains filtered or unexported fields
}

func NewNullableResponseCardCreate

func NewNullableResponseCardCreate(val *ResponseCardCreate) *NullableResponseCardCreate

func (NullableResponseCardCreate) Get

func (NullableResponseCardCreate) IsSet

func (v NullableResponseCardCreate) IsSet() bool

func (NullableResponseCardCreate) MarshalJSON

func (v NullableResponseCardCreate) MarshalJSON() ([]byte, error)

func (*NullableResponseCardCreate) Set

func (*NullableResponseCardCreate) UnmarshalJSON

func (v *NullableResponseCardCreate) UnmarshalJSON(src []byte) error

func (*NullableResponseCardCreate) Unset

func (v *NullableResponseCardCreate) Unset()

type NullableResponseCardCreateAdditionalErrors

type NullableResponseCardCreateAdditionalErrors struct {
	// contains filtered or unexported fields
}

func (NullableResponseCardCreateAdditionalErrors) Get

func (NullableResponseCardCreateAdditionalErrors) IsSet

func (NullableResponseCardCreateAdditionalErrors) MarshalJSON

func (*NullableResponseCardCreateAdditionalErrors) Set

func (*NullableResponseCardCreateAdditionalErrors) UnmarshalJSON

func (v *NullableResponseCardCreateAdditionalErrors) UnmarshalJSON(src []byte) error

func (*NullableResponseCardCreateAdditionalErrors) Unset

type NullableResponseCardCreateAdditionalErrorsOneOf

type NullableResponseCardCreateAdditionalErrorsOneOf struct {
	// contains filtered or unexported fields
}

func (NullableResponseCardCreateAdditionalErrorsOneOf) Get

func (NullableResponseCardCreateAdditionalErrorsOneOf) IsSet

func (NullableResponseCardCreateAdditionalErrorsOneOf) MarshalJSON

func (*NullableResponseCardCreateAdditionalErrorsOneOf) Set

func (*NullableResponseCardCreateAdditionalErrorsOneOf) UnmarshalJSON

func (*NullableResponseCardCreateAdditionalErrorsOneOf) Unset

type NullableResponseCardCreateAdditionalErrorsOneOf1

type NullableResponseCardCreateAdditionalErrorsOneOf1 struct {
	// contains filtered or unexported fields
}

func (NullableResponseCardCreateAdditionalErrorsOneOf1) Get

func (NullableResponseCardCreateAdditionalErrorsOneOf1) IsSet

func (NullableResponseCardCreateAdditionalErrorsOneOf1) MarshalJSON

func (*NullableResponseCardCreateAdditionalErrorsOneOf1) Set

func (*NullableResponseCardCreateAdditionalErrorsOneOf1) UnmarshalJSON

func (*NullableResponseCardCreateAdditionalErrorsOneOf1) Unset

type NullableResponseContentError

type NullableResponseContentError struct {
	// contains filtered or unexported fields
}

func NewNullableResponseContentError

func NewNullableResponseContentError(val *ResponseContentError) *NullableResponseContentError

func (NullableResponseContentError) Get

func (NullableResponseContentError) IsSet

func (NullableResponseContentError) MarshalJSON

func (v NullableResponseContentError) MarshalJSON() ([]byte, error)

func (*NullableResponseContentError) Set

func (*NullableResponseContentError) UnmarshalJSON

func (v *NullableResponseContentError) UnmarshalJSON(src []byte) error

func (*NullableResponseContentError) Unset

func (v *NullableResponseContentError) Unset()

type NullableResponseError

type NullableResponseError struct {
	// contains filtered or unexported fields
}

func NewNullableResponseError

func NewNullableResponseError(val *ResponseError) *NullableResponseError

func (NullableResponseError) Get

func (NullableResponseError) IsSet

func (v NullableResponseError) IsSet() bool

func (NullableResponseError) MarshalJSON

func (v NullableResponseError) MarshalJSON() ([]byte, error)

func (*NullableResponseError) Set

func (v *NullableResponseError) Set(val *ResponseError)

func (*NullableResponseError) UnmarshalJSON

func (v *NullableResponseError) UnmarshalJSON(src []byte) error

func (*NullableResponseError) Unset

func (v *NullableResponseError) Unset()

type NullableResponseIncorrectDate

type NullableResponseIncorrectDate struct {
	// contains filtered or unexported fields
}

func (NullableResponseIncorrectDate) Get

func (NullableResponseIncorrectDate) IsSet

func (NullableResponseIncorrectDate) MarshalJSON

func (v NullableResponseIncorrectDate) MarshalJSON() ([]byte, error)

func (*NullableResponseIncorrectDate) Set

func (*NullableResponseIncorrectDate) UnmarshalJSON

func (v *NullableResponseIncorrectDate) UnmarshalJSON(src []byte) error

func (*NullableResponseIncorrectDate) Unset

func (v *NullableResponseIncorrectDate) Unset()

type NullableResponsePublicViewerPublicErrorsTableListV2

type NullableResponsePublicViewerPublicErrorsTableListV2 struct {
	// contains filtered or unexported fields
}

func (NullableResponsePublicViewerPublicErrorsTableListV2) Get

func (NullableResponsePublicViewerPublicErrorsTableListV2) IsSet

func (NullableResponsePublicViewerPublicErrorsTableListV2) MarshalJSON

func (*NullableResponsePublicViewerPublicErrorsTableListV2) Set

func (*NullableResponsePublicViewerPublicErrorsTableListV2) UnmarshalJSON

func (*NullableResponsePublicViewerPublicErrorsTableListV2) Unset

type NullableSizeGood

type NullableSizeGood struct {
	// contains filtered or unexported fields
}

func NewNullableSizeGood

func NewNullableSizeGood(val *SizeGood) *NullableSizeGood

func (NullableSizeGood) Get

func (v NullableSizeGood) Get() *SizeGood

func (NullableSizeGood) IsSet

func (v NullableSizeGood) IsSet() bool

func (NullableSizeGood) MarshalJSON

func (v NullableSizeGood) MarshalJSON() ([]byte, error)

func (*NullableSizeGood) Set

func (v *NullableSizeGood) Set(val *SizeGood)

func (*NullableSizeGood) UnmarshalJSON

func (v *NullableSizeGood) UnmarshalJSON(src []byte) error

func (*NullableSizeGood) Unset

func (v *NullableSizeGood) Unset()

type NullableSizeGoodReq

type NullableSizeGoodReq struct {
	// contains filtered or unexported fields
}

func NewNullableSizeGoodReq

func NewNullableSizeGoodReq(val *SizeGoodReq) *NullableSizeGoodReq

func (NullableSizeGoodReq) Get

func (NullableSizeGoodReq) IsSet

func (v NullableSizeGoodReq) IsSet() bool

func (NullableSizeGoodReq) MarshalJSON

func (v NullableSizeGoodReq) MarshalJSON() ([]byte, error)

func (*NullableSizeGoodReq) Set

func (v *NullableSizeGoodReq) Set(val *SizeGoodReq)

func (*NullableSizeGoodReq) UnmarshalJSON

func (v *NullableSizeGoodReq) UnmarshalJSON(src []byte) error

func (*NullableSizeGoodReq) Unset

func (v *NullableSizeGoodReq) Unset()

type NullableStocksWarehouseErrorInner

type NullableStocksWarehouseErrorInner struct {
	// contains filtered or unexported fields
}

func (NullableStocksWarehouseErrorInner) Get

func (NullableStocksWarehouseErrorInner) IsSet

func (NullableStocksWarehouseErrorInner) MarshalJSON

func (v NullableStocksWarehouseErrorInner) MarshalJSON() ([]byte, error)

func (*NullableStocksWarehouseErrorInner) Set

func (*NullableStocksWarehouseErrorInner) UnmarshalJSON

func (v *NullableStocksWarehouseErrorInner) UnmarshalJSON(src []byte) error

func (*NullableStocksWarehouseErrorInner) Unset

type NullableStocksWarehouseErrorInnerDataInner

type NullableStocksWarehouseErrorInnerDataInner struct {
	// contains filtered or unexported fields
}

func (NullableStocksWarehouseErrorInnerDataInner) Get

func (NullableStocksWarehouseErrorInnerDataInner) IsSet

func (NullableStocksWarehouseErrorInnerDataInner) MarshalJSON

func (*NullableStocksWarehouseErrorInnerDataInner) Set

func (*NullableStocksWarehouseErrorInnerDataInner) UnmarshalJSON

func (v *NullableStocksWarehouseErrorInnerDataInner) UnmarshalJSON(src []byte) error

func (*NullableStocksWarehouseErrorInnerDataInner) Unset

type NullableStoreContactRequestBody

type NullableStoreContactRequestBody struct {
	// contains filtered or unexported fields
}

func (NullableStoreContactRequestBody) Get

func (NullableStoreContactRequestBody) IsSet

func (NullableStoreContactRequestBody) MarshalJSON

func (v NullableStoreContactRequestBody) MarshalJSON() ([]byte, error)

func (*NullableStoreContactRequestBody) Set

func (*NullableStoreContactRequestBody) UnmarshalJSON

func (v *NullableStoreContactRequestBody) UnmarshalJSON(src []byte) error

func (*NullableStoreContactRequestBody) Unset

type NullableStoreContactRequestBodyContactsInner

type NullableStoreContactRequestBodyContactsInner struct {
	// contains filtered or unexported fields
}

func (NullableStoreContactRequestBodyContactsInner) Get

func (NullableStoreContactRequestBodyContactsInner) IsSet

func (NullableStoreContactRequestBodyContactsInner) MarshalJSON

func (*NullableStoreContactRequestBodyContactsInner) Set

func (*NullableStoreContactRequestBodyContactsInner) UnmarshalJSON

func (*NullableStoreContactRequestBodyContactsInner) Unset

type NullableString

type NullableString struct {
	// contains filtered or unexported fields
}

func NewNullableString

func NewNullableString(val *string) *NullableString

func (NullableString) Get

func (v NullableString) Get() *string

func (NullableString) IsSet

func (v NullableString) IsSet() bool

func (NullableString) MarshalJSON

func (v NullableString) MarshalJSON() ([]byte, error)

func (*NullableString) Set

func (v *NullableString) Set(val *string)

func (*NullableString) UnmarshalJSON

func (v *NullableString) UnmarshalJSON(src []byte) error

func (*NullableString) Unset

func (v *NullableString) Unset()

type NullableSupplierTaskMetadata

type NullableSupplierTaskMetadata struct {
	// contains filtered or unexported fields
}

func NewNullableSupplierTaskMetadata

func NewNullableSupplierTaskMetadata(val *SupplierTaskMetadata) *NullableSupplierTaskMetadata

func (NullableSupplierTaskMetadata) Get

func (NullableSupplierTaskMetadata) IsSet

func (NullableSupplierTaskMetadata) MarshalJSON

func (v NullableSupplierTaskMetadata) MarshalJSON() ([]byte, error)

func (*NullableSupplierTaskMetadata) Set

func (*NullableSupplierTaskMetadata) UnmarshalJSON

func (v *NullableSupplierTaskMetadata) UnmarshalJSON(src []byte) error

func (*NullableSupplierTaskMetadata) Unset

func (v *NullableSupplierTaskMetadata) Unset()

type NullableSupplierTaskMetadataBuffer

type NullableSupplierTaskMetadataBuffer struct {
	// contains filtered or unexported fields
}

func (NullableSupplierTaskMetadataBuffer) Get

func (NullableSupplierTaskMetadataBuffer) IsSet

func (NullableSupplierTaskMetadataBuffer) MarshalJSON

func (v NullableSupplierTaskMetadataBuffer) MarshalJSON() ([]byte, error)

func (*NullableSupplierTaskMetadataBuffer) Set

func (*NullableSupplierTaskMetadataBuffer) UnmarshalJSON

func (v *NullableSupplierTaskMetadataBuffer) UnmarshalJSON(src []byte) error

func (*NullableSupplierTaskMetadataBuffer) Unset

type NullableSwaggerPublicErrorsCursorInput

type NullableSwaggerPublicErrorsCursorInput struct {
	// contains filtered or unexported fields
}

func (NullableSwaggerPublicErrorsCursorInput) Get

func (NullableSwaggerPublicErrorsCursorInput) IsSet

func (NullableSwaggerPublicErrorsCursorInput) MarshalJSON

func (v NullableSwaggerPublicErrorsCursorInput) MarshalJSON() ([]byte, error)

func (*NullableSwaggerPublicErrorsCursorInput) Set

func (*NullableSwaggerPublicErrorsCursorInput) UnmarshalJSON

func (v *NullableSwaggerPublicErrorsCursorInput) UnmarshalJSON(src []byte) error

func (*NullableSwaggerPublicErrorsCursorInput) Unset

type NullableSwaggerPublicErrorsOrderV2

type NullableSwaggerPublicErrorsOrderV2 struct {
	// contains filtered or unexported fields
}

func (NullableSwaggerPublicErrorsOrderV2) Get

func (NullableSwaggerPublicErrorsOrderV2) IsSet

func (NullableSwaggerPublicErrorsOrderV2) MarshalJSON

func (v NullableSwaggerPublicErrorsOrderV2) MarshalJSON() ([]byte, error)

func (*NullableSwaggerPublicErrorsOrderV2) Set

func (*NullableSwaggerPublicErrorsOrderV2) UnmarshalJSON

func (v *NullableSwaggerPublicErrorsOrderV2) UnmarshalJSON(src []byte) error

func (*NullableSwaggerPublicErrorsOrderV2) Unset

type NullableTaskCreated

type NullableTaskCreated struct {
	// contains filtered or unexported fields
}

func NewNullableTaskCreated

func NewNullableTaskCreated(val *TaskCreated) *NullableTaskCreated

func (NullableTaskCreated) Get

func (NullableTaskCreated) IsSet

func (v NullableTaskCreated) IsSet() bool

func (NullableTaskCreated) MarshalJSON

func (v NullableTaskCreated) MarshalJSON() ([]byte, error)

func (*NullableTaskCreated) Set

func (v *NullableTaskCreated) Set(val *TaskCreated)

func (*NullableTaskCreated) UnmarshalJSON

func (v *NullableTaskCreated) UnmarshalJSON(src []byte) error

func (*NullableTaskCreated) Unset

func (v *NullableTaskCreated) Unset()

type NullableTaskCreatedData

type NullableTaskCreatedData struct {
	// contains filtered or unexported fields
}

func NewNullableTaskCreatedData

func NewNullableTaskCreatedData(val *TaskCreatedData) *NullableTaskCreatedData

func (NullableTaskCreatedData) Get

func (NullableTaskCreatedData) IsSet

func (v NullableTaskCreatedData) IsSet() bool

func (NullableTaskCreatedData) MarshalJSON

func (v NullableTaskCreatedData) MarshalJSON() ([]byte, error)

func (*NullableTaskCreatedData) Set

func (*NullableTaskCreatedData) UnmarshalJSON

func (v *NullableTaskCreatedData) UnmarshalJSON(src []byte) error

func (*NullableTaskCreatedData) Unset

func (v *NullableTaskCreatedData) Unset()

type NullableTime

type NullableTime struct {
	// contains filtered or unexported fields
}

func NewNullableTime

func NewNullableTime(val *time.Time) *NullableTime

func (NullableTime) Get

func (v NullableTime) Get() *time.Time

func (NullableTime) IsSet

func (v NullableTime) IsSet() bool

func (NullableTime) MarshalJSON

func (v NullableTime) MarshalJSON() ([]byte, error)

func (*NullableTime) Set

func (v *NullableTime) Set(val *time.Time)

func (*NullableTime) UnmarshalJSON

func (v *NullableTime) UnmarshalJSON(src []byte) error

func (*NullableTime) Unset

func (v *NullableTime) Unset()

type NullableViewerContractPublicErrorsCursorOutput

type NullableViewerContractPublicErrorsCursorOutput struct {
	// contains filtered or unexported fields
}

func (NullableViewerContractPublicErrorsCursorOutput) Get

func (NullableViewerContractPublicErrorsCursorOutput) IsSet

func (NullableViewerContractPublicErrorsCursorOutput) MarshalJSON

func (*NullableViewerContractPublicErrorsCursorOutput) Set

func (*NullableViewerContractPublicErrorsCursorOutput) UnmarshalJSON

func (*NullableViewerContractPublicErrorsCursorOutput) Unset

type NullableWarehouse

type NullableWarehouse struct {
	// contains filtered or unexported fields
}

func NewNullableWarehouse

func NewNullableWarehouse(val *Warehouse) *NullableWarehouse

func (NullableWarehouse) Get

func (v NullableWarehouse) Get() *Warehouse

func (NullableWarehouse) IsSet

func (v NullableWarehouse) IsSet() bool

func (NullableWarehouse) MarshalJSON

func (v NullableWarehouse) MarshalJSON() ([]byte, error)

func (*NullableWarehouse) Set

func (v *NullableWarehouse) Set(val *Warehouse)

func (*NullableWarehouse) UnmarshalJSON

func (v *NullableWarehouse) UnmarshalJSON(src []byte) error

func (*NullableWarehouse) Unset

func (v *NullableWarehouse) Unset()

type Office

type Office struct {
	// Address
	Address *string `json:"address,omitempty"`
	// Name
	Name *string `json:"name,omitempty"`
	// City
	City *string `json:"city,omitempty"`
	// ID
	Id *int64 `json:"id,omitempty"`
	// Longitude
	Longitude *float32 `json:"longitude,omitempty"`
	// Latitude
	Latitude *float32 `json:"latitude,omitempty"`
	// The type of goods a warehouse can accept:   - `1` — small-sized goods   - `2` — over dimensional cargo (ODC)   - `3` — dimensional cargo+ (CD+)
	CargoType *int32 `json:"cargoType,omitempty"`
	// The type of deliveries:   - `1` — Fulfillment By Wildberries (FBS)   - `2` — Delivery By Supplier (DBS)   - `3` — Delivery by WB courier (DBW)   - `5` — In-Store Pickup (C&C)   - `6` — Express Delivery By Supplier (EDBS)
	DeliveryType *int32 `json:"deliveryType,omitempty"`
	// Federal district of the WB office. If `null`, the office is located outside the Russian Federation or the federal district is not specified
	FederalDistrict NullableString `json:"federalDistrict,omitempty"`
	// The flag indicating that the office has already been selected by the supplier
	Selected *bool `json:"selected,omitempty"`
}

Office Office details

func NewOffice

func NewOffice() *Office

NewOffice instantiates a new Office 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

func NewOfficeWithDefaults

func NewOfficeWithDefaults() *Office

NewOfficeWithDefaults instantiates a new Office 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

func (*Office) GetAddress

func (o *Office) GetAddress() string

GetAddress returns the Address field value if set, zero value otherwise.

func (*Office) GetAddressOk

func (o *Office) GetAddressOk() (*string, bool)

GetAddressOk returns a tuple with the Address field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Office) GetCargoType

func (o *Office) GetCargoType() int32

GetCargoType returns the CargoType field value if set, zero value otherwise.

func (*Office) GetCargoTypeOk

func (o *Office) GetCargoTypeOk() (*int32, bool)

GetCargoTypeOk returns a tuple with the CargoType field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Office) GetCity

func (o *Office) GetCity() string

GetCity returns the City field value if set, zero value otherwise.

func (*Office) GetCityOk

func (o *Office) GetCityOk() (*string, bool)

GetCityOk returns a tuple with the City field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Office) GetDeliveryType

func (o *Office) GetDeliveryType() int32

GetDeliveryType returns the DeliveryType field value if set, zero value otherwise.

func (*Office) GetDeliveryTypeOk

func (o *Office) GetDeliveryTypeOk() (*int32, bool)

GetDeliveryTypeOk returns a tuple with the DeliveryType field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Office) GetFederalDistrict

func (o *Office) GetFederalDistrict() string

GetFederalDistrict returns the FederalDistrict field value if set, zero value otherwise (both if not set or set to explicit null).

func (*Office) GetFederalDistrictOk

func (o *Office) GetFederalDistrictOk() (*string, bool)

GetFederalDistrictOk returns a tuple with the FederalDistrict field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*Office) GetId

func (o *Office) GetId() int64

GetId returns the Id field value if set, zero value otherwise.

func (*Office) GetIdOk

func (o *Office) GetIdOk() (*int64, bool)

GetIdOk returns a tuple with the Id field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Office) GetLatitude

func (o *Office) GetLatitude() float32

GetLatitude returns the Latitude field value if set, zero value otherwise.

func (*Office) GetLatitudeOk

func (o *Office) GetLatitudeOk() (*float32, bool)

GetLatitudeOk returns a tuple with the Latitude field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Office) GetLongitude

func (o *Office) GetLongitude() float32

GetLongitude returns the Longitude field value if set, zero value otherwise.

func (*Office) GetLongitudeOk

func (o *Office) GetLongitudeOk() (*float32, bool)

GetLongitudeOk returns a tuple with the Longitude field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Office) GetName

func (o *Office) GetName() string

GetName returns the Name field value if set, zero value otherwise.

func (*Office) GetNameOk

func (o *Office) GetNameOk() (*string, bool)

GetNameOk returns a tuple with the Name field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Office) GetSelected

func (o *Office) GetSelected() bool

GetSelected returns the Selected field value if set, zero value otherwise.

func (*Office) GetSelectedOk

func (o *Office) GetSelectedOk() (*bool, bool)

GetSelectedOk returns a tuple with the Selected field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Office) HasAddress

func (o *Office) HasAddress() bool

HasAddress returns a boolean if a field has been set.

func (*Office) HasCargoType

func (o *Office) HasCargoType() bool

HasCargoType returns a boolean if a field has been set.

func (*Office) HasCity

func (o *Office) HasCity() bool

HasCity returns a boolean if a field has been set.

func (*Office) HasDeliveryType

func (o *Office) HasDeliveryType() bool

HasDeliveryType returns a boolean if a field has been set.

func (*Office) HasFederalDistrict

func (o *Office) HasFederalDistrict() bool

HasFederalDistrict returns a boolean if a field has been set.

func (*Office) HasId

func (o *Office) HasId() bool

HasId returns a boolean if a field has been set.

func (*Office) HasLatitude

func (o *Office) HasLatitude() bool

HasLatitude returns a boolean if a field has been set.

func (*Office) HasLongitude

func (o *Office) HasLongitude() bool

HasLongitude returns a boolean if a field has been set.

func (*Office) HasName

func (o *Office) HasName() bool

HasName returns a boolean if a field has been set.

func (*Office) HasSelected

func (o *Office) HasSelected() bool

HasSelected returns a boolean if a field has been set.

func (Office) MarshalJSON

func (o Office) MarshalJSON() ([]byte, error)

func (*Office) SetAddress

func (o *Office) SetAddress(v string)

SetAddress gets a reference to the given string and assigns it to the Address field.

func (*Office) SetCargoType

func (o *Office) SetCargoType(v int32)

SetCargoType gets a reference to the given int32 and assigns it to the CargoType field.

func (*Office) SetCity

func (o *Office) SetCity(v string)

SetCity gets a reference to the given string and assigns it to the City field.

func (*Office) SetDeliveryType

func (o *Office) SetDeliveryType(v int32)

SetDeliveryType gets a reference to the given int32 and assigns it to the DeliveryType field.

func (*Office) SetFederalDistrict

func (o *Office) SetFederalDistrict(v string)

SetFederalDistrict gets a reference to the given NullableString and assigns it to the FederalDistrict field.

func (*Office) SetFederalDistrictNil

func (o *Office) SetFederalDistrictNil()

SetFederalDistrictNil sets the value for FederalDistrict to be an explicit nil

func (*Office) SetId

func (o *Office) SetId(v int64)

SetId gets a reference to the given int64 and assigns it to the Id field.

func (*Office) SetLatitude

func (o *Office) SetLatitude(v float32)

SetLatitude gets a reference to the given float32 and assigns it to the Latitude field.

func (*Office) SetLongitude

func (o *Office) SetLongitude(v float32)

SetLongitude gets a reference to the given float32 and assigns it to the Longitude field.

func (*Office) SetName

func (o *Office) SetName(v string)

SetName gets a reference to the given string and assigns it to the Name field.

func (*Office) SetSelected

func (o *Office) SetSelected(v bool)

SetSelected gets a reference to the given bool and assigns it to the Selected field.

func (Office) ToMap

func (o Office) ToMap() (map[string]interface{}, error)

func (*Office) UnsetFederalDistrict

func (o *Office) UnsetFederalDistrict()

UnsetFederalDistrict ensures that no value is present for FederalDistrict, not even an explicit nil

type PricesAndDiscountsAPIService

type PricesAndDiscountsAPIService service

PricesAndDiscountsAPIService PricesAndDiscountsAPI service

func (*PricesAndDiscountsAPIService) ApiV2BufferGoodsTaskGet

ApiV2BufferGoodsTaskGet Unprocessed Upload Details

Returns products in processing upload including product errors.

<div class="description_limit"> <a href="/openapi/api-information#tag/Introduction/Rate-Limits">Request limit</a> per one seller's account for all methods in the <strong>Prices and Discounts</strong> category:

| Type | Period | Limit | Interval | Burst | | --- | --- | --- | --- | --- | | Personal | 6 s | 10 requests | 600 ms | 5 requests | | Service | 6 s | 10 requests | 600 ms | 5 requests | | Base | 1 h | 4 requests | 15 min | 1 request | </div>

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiApiV2BufferGoodsTaskGetRequest

func (*PricesAndDiscountsAPIService) ApiV2BufferGoodsTaskGetExecute

Execute executes the request

@return ApiV2BufferGoodsTaskGet200Response

func (*PricesAndDiscountsAPIService) ApiV2BufferTasksGet

ApiV2BufferTasksGet Unprocessed Upload State

Returns the processing upload data.

<div class="description_limit"> <a href="/openapi/api-information#tag/Introduction/Rate-Limits">Request limit</a> per one seller's account for all methods in the <strong>Prices and Discounts</strong> category:

| Type | Period | Limit | Interval | Burst | | --- | --- | --- | --- | --- | | Personal | 6 s | 10 requests | 600 ms | 5 requests | | Service | 6 s | 10 requests | 600 ms | 5 requests | | Base | 1 h | 4 requests | 15 min | 1 request | </div>

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiApiV2BufferTasksGetRequest

func (*PricesAndDiscountsAPIService) ApiV2BufferTasksGetExecute

Execute executes the request

@return ApiV2BufferTasksGet200Response

func (*PricesAndDiscountsAPIService) ApiV2HistoryGoodsTaskGet

ApiV2HistoryGoodsTaskGet Processed Upload Details

Returns products in processed upload including product errors.

<div class="description_limit"> <a href="/openapi/api-information#tag/Introduction/Rate-Limits">Request limit</a> per one seller's account for all methods in the <strong>Prices and Discounts</strong> category:

| Type | Period | Limit | Interval | Burst | | --- | --- | --- | --- | --- | | Personal | 6 s | 10 requests | 600 ms | 5 requests | | Service | 6 s | 10 requests | 600 ms | 5 requests | | Base | 1 h | 4 requests | 15 min | 1 request | </div>

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiApiV2HistoryGoodsTaskGetRequest

func (*PricesAndDiscountsAPIService) ApiV2HistoryGoodsTaskGetExecute

Execute executes the request

@return ApiV2HistoryGoodsTaskGet200Response

func (*PricesAndDiscountsAPIService) ApiV2HistoryTasksGet

ApiV2HistoryTasksGet Processed Upload State

Returns the processed upload data.

<div class="description_limit"> <a href="/openapi/api-information#tag/Introduction/Rate-Limits">Request limit</a> per one seller's account for all methods in the <strong>Prices and Discounts</strong> category:

| Type | Period | Limit | Interval | Burst | | --- | --- | --- | --- | --- | | Personal | 6 s | 10 requests | 600 ms | 5 requests | | Service | 6 s | 10 requests | 600 ms | 5 requests | | Base | 1 h | 4 requests | 15 min | 1 request | </div>

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiApiV2HistoryTasksGetRequest

func (*PricesAndDiscountsAPIService) ApiV2HistoryTasksGetExecute

Execute executes the request

@return ApiV2HistoryTasksGet200Response

func (*PricesAndDiscountsAPIService) ApiV2ListGoodsFilterGet

ApiV2ListGoodsFilterGet Get Products with Prices

Returns product data. <br><br> You can specify only one article in one request. <br><br> To get data for all products, do not set the article, set `limit=1000`, and use the `offset` field to set the data offset. The offset should be calculated using the formula: `offset` plus `limit` from the previous request. Repeat the request until you receive a response with an empty array.<br><br> Use separate methods to get data:

  • for [more than one product by article](/openapi/work-with-products#tag/Prices-and-Discounts/paths/~1api~1v2~1list~1goods~1filter/post)
  • for [the size of the product](/openapi/work-with-products#tag/Prices-and-Discounts/paths/~1api~1v2~1list~1goods~1size~1nm/get)

<div class="description_limit"> <a href="/openapi/api-information#tag/Introduction/Rate-Limits">Request limit</a> per one seller's account for all methods in the <strong>Prices and Discounts</strong> category:

| Period | Limit | Interval | Burst | | --- | --- | --- | --- | | 6 s | 10 requests | 600 ms | 5 requests |

</div>

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiApiV2ListGoodsFilterGetRequest

func (*PricesAndDiscountsAPIService) ApiV2ListGoodsFilterGetExecute

Execute executes the request

@return ApiV2ListGoodsFilterGet200Response

func (*PricesAndDiscountsAPIService) ApiV2ListGoodsFilterPost

ApiV2ListGoodsFilterPost Get Products with Prices by Articles

Returns product data by its article. <br><br> You can specify more than one article in one request. <br><br> Use separate methods to get data:

  • for [all products without specifying articles](/openapi/work-with-products#tag/Prices-and-Discounts/paths/~1api~1v2~1list~1goods~1filter/get)
  • for [the size of the product](/openapi/work-with-products#tag/Prices-and-Discounts/paths/~1api~1v2~1list~1goods~1size~1nm/get).

<div class="description_limit"> <a href="/openapi/api-information#tag/Introduction/Rate-Limits">Request limit</a> per one seller's account for all methods in the <strong>Prices and Discounts</strong> category:

| Period | Limit | Interval | Burst | | --- | --- | --- | --- | | 6 s | 10 requests | 600 ms | 5 requests |

</div>

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiApiV2ListGoodsFilterPostRequest

func (*PricesAndDiscountsAPIService) ApiV2ListGoodsFilterPostExecute

Execute executes the request

@return ApiV2ListGoodsFilterGet200Response

func (*PricesAndDiscountsAPIService) ApiV2ListGoodsSizeNmGet

ApiV2ListGoodsSizeNmGet Get Product Sizes with Prices

Returns sizes data for the product. Only for products from categories where size price setting is available. For these products `"editableSizePrice":true`.

<div class="description_limit"> <a href="/openapi/api-information#tag/Introduction/Rate-Limits">Request limit</a> per one seller's account for all methods in the <strong>Prices and Discounts</strong> category:

| Type | Period | Limit | Interval | Burst | | --- | --- | --- | --- | --- | | Personal | 6 s | 10 requests | 600 ms | 5 requests | | Service | 6 s | 10 requests | 600 ms | 5 requests | | Base | 1 h | 4 requests | 15 min | 1 request | </div>

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiApiV2ListGoodsSizeNmGetRequest

func (*PricesAndDiscountsAPIService) ApiV2ListGoodsSizeNmGetExecute

Execute executes the request

@return ApiV2ListGoodsSizeNmGet200Response

func (*PricesAndDiscountsAPIService) ApiV2QuarantineGoodsGet

ApiV2QuarantineGoodsGet Get Products in Quarantine

Returns information about products in quarantine. <br><br> If the product new price with discount will be minimum 3 times less than the old price, the product will be placed in [quarantine](https://seller.wildberries.ru/discount-and-prices/quarantine) and will be sold at the old price. An error about this will be in the [upload states](/openapi/work-with-products#tag/Prices-and-Discounts/paths/~1api~1v2~1history~1tasks/get) method response. <br><br> You can change price or discount via API or release product from quarantine in [personal account](https://seller.wildberries.ru/discount-and-prices/quarantine). <br><br> For products with [size-based pricing](/openapi/work-with-products#tag/Prices-and-Discounts/paths/~1api~1v2~1upload~1task~1size/post), quarantine does not apply.

<div class="description_limit"> <a href="/openapi/api-information#tag/Introduction/Rate-Limits">Request limit</a> per one seller's account for all methods in the <strong>Prices and Discounts</strong> category:

| Type | Period | Limit | Interval | Burst | | --- | --- | --- | --- | --- | | Personal | 6 s | 10 requests | 600 ms | 5 requests | | Service | 6 s | 10 requests | 600 ms | 5 requests | | Base | 1 h | 4 requests | 15 min | 1 request | </div>

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiApiV2QuarantineGoodsGetRequest

func (*PricesAndDiscountsAPIService) ApiV2QuarantineGoodsGetExecute

Execute executes the request

@return ApiV2QuarantineGoodsGet200Response

func (*PricesAndDiscountsAPIService) ApiV2UploadTaskClubDiscountPost

ApiV2UploadTaskClubDiscountPost Set WB Club Discounts

Sets WB Club subscription discounts.

<div class="description_limit"> <a href="/openapi/api-information#tag/Introduction/Rate-Limits">Request limit</a> per one seller's account for all methods in the <strong>Prices and Discounts</strong> category:

| Type | Period | Limit | Interval | Burst | | --- | --- | --- | --- | --- | | Personal | 6 s | 10 requests | 600 ms | 5 requests | | Service | 6 s | 10 requests | 600 ms | 5 requests | | Base | 1 h | 4 requests | 15 min | 1 request | </div>

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiApiV2UploadTaskClubDiscountPostRequest

func (*PricesAndDiscountsAPIService) ApiV2UploadTaskClubDiscountPostExecute

func (a *PricesAndDiscountsAPIService) ApiV2UploadTaskClubDiscountPostExecute(r ApiApiV2UploadTaskClubDiscountPostRequest) (*TaskCreated, *http.Response, error)

Execute executes the request

@return TaskCreated

func (*PricesAndDiscountsAPIService) ApiV2UploadTaskPost

ApiV2UploadTaskPost Set Prices and Discounts

Sets prices and discounts.

<div class="description_limit"> <a href="/openapi/api-information#tag/Introduction/Rate-Limits">Request limit</a> per one seller's account for all methods in the <strong>Prices and Discounts</strong> category:

| Period | Limit | Interval | Burst | | --- | --- | --- | --- | | 6 s | 10 requests | 600 ms | 5 requests |

</div>

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiApiV2UploadTaskPostRequest

func (*PricesAndDiscountsAPIService) ApiV2UploadTaskPostExecute

Execute executes the request

@return TaskCreated

func (*PricesAndDiscountsAPIService) ApiV2UploadTaskSizePost

ApiV2UploadTaskSizePost Set Size Prices

Sets different prices for different sizes.

Only for products from categories where size price setting is available. For these products `"editableSizePrice":true` in [Get product sizes with prices](/openapi/work-with-products#tag/Prices-and-Discounts/paths/~1api~1v2~1list~1goods~1size~1nm/get) response.

<div class="description_limit"> <a href="/openapi/api-information#tag/Introduction/Rate-Limits">Request limit</a> per one seller's account for all methods in the <strong>Prices and Discounts</strong> category:

| Period | Limit | Interval | Burst | | --- | --- | --- | --- | | 6 s | 10 requests | 600 ms | 5 requests |

</div>

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiApiV2UploadTaskSizePostRequest

func (*PricesAndDiscountsAPIService) ApiV2UploadTaskSizePostExecute

Execute executes the request

@return TaskCreated

type ProductCardsAPIService

type ProductCardsAPIService service

ProductCardsAPIService ProductCardsAPI service

func (*ProductCardsAPIService) ContentV2CardsDeleteTrashPost

func (a *ProductCardsAPIService) ContentV2CardsDeleteTrashPost(ctx context.Context) ApiContentV2CardsDeleteTrashPostRequest

ContentV2CardsDeleteTrashPost Transfer Product Card to Trash

Transfers the product card to the trash. In doing so, the product card would not be deleted.

<div class="description_important">

When transferring product cards to the trash, this product card is removed from the product card, meaning it is assigned a new <code>imtID</code> — merged product cards ID

</div>

After 30 days in the trash the product card would be deleted automatically. The trash is cleared every night according to Moscow time.<br> The product card can be deleted at any time in [personal account](https://seller.wildberries.ru/new-goods/basket-cards). <br><br> A card will remain for sale as long as there is any inventory left, even if moved to the trash. To completely remove the card from sale, set its inventory to zero.

<div class="description_limit"> <a href="/openapi/api-information#tag/Introduction/Rate-Limits">Request limit</a> per one seller's account:

| Period | Limit | Interval | Burst | | --- | --- | --- | --- | | 1 min | 3 requests | 20 s | 5 requests | </div>

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiContentV2CardsDeleteTrashPostRequest

func (*ProductCardsAPIService) ContentV2CardsDeleteTrashPostExecute

Execute executes the request

@return ContentV2CardsDeleteTrashPost200Response

func (*ProductCardsAPIService) ContentV2CardsErrorListPost

ContentV2CardsErrorListPost List of Failed Product Cards with Errors

Returns the list of product cards ([drafts](https://seller.wildberries.ru/new-goods/error-cards)) and the list of errors encountered during product card creation or editing. <br><br> The data is returned in batches. One batch contains:

  • all errors for one `variants` array in one request during product cards [creation](/openapi/work-with-products#tag/Creating-Product-Cards/paths/~1content~1v2~1cards~1upload/post)
  • all errors in one request during product cards [creation with merge](/openapi/work-with-products#tag/Creating-Product-Cards/paths/~1content~1v2~1cards~1upload~1add/post) or [editing](/openapi/work-with-products#tag/Product-Cards/paths/~1content~1v2~1cards~1update/post).

<br><br> To get more than 100 batches, use pagination:

  1. Make first request: <br> <pre style="background-color: rgb(38 50 56 / 5%); color: #e53935"> { "cursor": { "limit": 100 }, "order": { "ascending": true } }</pre>
  2. Copy `"updatedAt":"***","batchUUID":"***"` from the response `cursor` and paste into the request `cursor`.
  3. Repeat the request.
  4. Repeat 2 and 3, until you receive in the response `"next":false`. This will mean that you have received all the batches.

<div class="description_important">

To delete product card from the errors list, repeat the request for creating or creating with merge and updating request with fixed errors

</div>

<div class="description_limit"> <a href="/openapi/api-information#tag/Introduction/Rate-Limits">Request limit</a> per one seller's account:

| Period | Limit | Interval | Burst | | --- | --- | --- | --- | | 1 min | 10 requests | 6 s | 5 requests | </div>

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiContentV2CardsErrorListPostRequest

func (*ProductCardsAPIService) ContentV2CardsErrorListPostExecute

Execute executes the request

@return ResponsePublicViewerPublicErrorsTableListV2

func (*ProductCardsAPIService) ContentV2CardsMoveNmPost

ContentV2CardsMoveNmPost Merging or Separating of Product Cards

The method merges and separates product cards. Product cards are merged if they have the same `imtID`.<br><br>

To merge product cards, make a request **specifying** the `imtID`. You can merge up to 30 product cards at a time.<br>

To separate product cards, make a request **without specifying** the `imtID`. New `imtID`s will be generated for the separated cards.<br><br>

If you separate multiple product cards simultaneously, these cards will merge into one and receive a new `imtID`.<br>

To assign a unique `imtID` to each product card, you need to send one product card per request.<br><br>

The maximum request size is 10 MB.

<div class="description_important">

It is possible to merge product cards containing only the same subjects

</div>

<div class="description_limit"> <a href="/openapi/api-information#tag/Introduction/Rate-Limits">Request limit</a> per one seller's account for all methods in the <strong>Content</strong> category:

| Period | Limit | Interval | Burst | | --- | --- | --- | --- | | 1 min | 100 requests | 600 ms | 5 requests |

Exceptions are the methods: <ul>

<li><a href="/openapi/work-with-products#tag/Creating-Product-Cards/paths/~1content~1v2~1cards~1upload/post">creating product cards</a></li>
<li><a href="/openapi/work-with-products#tag/Creating-Product-Cards/paths/~1content~1v2~1cards~1upload~1add/post">creating product cards with merge</a></li>
<li><a href="/openapi/work-with-products#tag/Product-Cards/paths/~1content~1v2~1cards~1update/post">editing product cards</a></li>
<li><a href="/openapi/work-with-products#tag/Product-Cards/paths/~1content~1v2~1cards~1error~1list/post">getting failed product cards with errors</a></li>
<li><a href="/openapi/work-with-products#tag/Product-Cards/paths/~1content~1v2~1cards~1delete~1trash/post">transfering product card to trash</a></li>
<li><a href="/openapi/work-with-products#tag/Product-Cards/paths/~1content~1v2~1cards~1recover/post">recovering product card from trash</a></li>

</ul> </div>

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiContentV2CardsMoveNmPostRequest

func (*ProductCardsAPIService) ContentV2CardsMoveNmPostExecute

Execute executes the request

@return ResponseCardCreate

func (*ProductCardsAPIService) ContentV2CardsRecoverPost

ContentV2CardsRecoverPost Recover Product Card from Trash

Returns the product card from trash

<div class="description_important">

When restoring the product card from the trash, its <code>imtID</code>  — merged product cards ID — doesn't remain the same as it was for the product card in the trash

</div>

<div class="description_limit"> <a href="/openapi/api-information#tag/Introduction/Rate-Limits">Request limit</a> per one seller's account:

| Type | Period | Limit | Interval | Burst | | --- | --- | --- | --- | --- | | Personal | 1 min | 3 requests | 20 s | 5 requests | | Service | 1 min | 3 requests | 20 s | 5 requests | | Base | 1 h | 2 requests | 30 min | 1 request | </div>

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiContentV2CardsRecoverPostRequest

func (*ProductCardsAPIService) ContentV2CardsRecoverPostExecute

Execute executes the request

@return ContentV2CardsRecoverPost200Response

func (*ProductCardsAPIService) ContentV2CardsUpdatePost

ContentV2CardsUpdatePost Update Product Cards

Edits product cards. Also use it to add new sizes.

<div class="description_important">

The product card is overwritten when updated. So the request must also include those card parameters that you are not going to update. To get their values, use <a href="/openapi/work-with-products#tag/Product-Cards/paths/~1content~1v2~1get~1cards~1list/post">Product Cards List</a> and <a href="/openapi/work-with-products#tag/Product-Cards/paths/~1content~1v2~1get~1cards~1trash/post">Product Cards in Trash List</a>.

</div>

You cannot use this method to update or delete:

  • product size barcodes. You can only add additional barcodes
  • the `photos`, `video` and `tags` parameters
  • prices of goods. The price can only be set if you add new sizes

When adding a new size, specify its price using the `price` parameter. If no `price` is specified in the request, the size price will be `0`. In this case, you can update it using the methods:

  • [Set Prices and Discounts](/openapi/work-with-products#tag/Prices-and-Discounts/paths/~1api~1v2~1upload~1task/post), if [product](/openapi/work-with-products#tag/Prices-and-Discounts/paths/~1api~1v2~1list~1goods~1filter/get) has `"editablePriceSize":false`
  • [Set Size Prices](/openapi/work-with-products#tag/Prices-and-Discounts/paths/~1api~1v2~1upload~1task~1size/post), if [product](/openapi/work-with-products#tag/Prices-and-Discounts/paths/~1api~1v2~1list~1goods~1filter/get) has `"editablePriceSize":true`

The dimensions of the products can only be specified in `centimeters`, and the weight of packed products must be specified in `kilograms`. <br><br> If this method response is Success (`200`) but product card was not updated, check errors using [list of failed product cards with errors](/openapi/work-with-products#tag/Product-Cards/paths/~1content~1v2~1cards~1error~1list/post).<br> With one request you can edit maximum 3000 product cards (`nmID`). Maximum request size is 10 Mb.<br> The process of synchronizing data with services may take up to 30 minutes. During this time, you can't add inventory to warehouses and set prices.

<div class="description_limit"> <a href="/openapi/api-information#tag/Introduction/Rate-Limits">Request limit</a> per one seller's account:

| Period | Limit | Interval | Burst | | --- | --- | --- | --- | | 1 min | 10 requests | 6 s | 5 requests | </div>

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiContentV2CardsUpdatePostRequest

func (*ProductCardsAPIService) ContentV2CardsUpdatePostExecute

Execute executes the request

@return ResponseCardCreate

func (*ProductCardsAPIService) ContentV2GetCardsListPost

ContentV2GetCardsListPost Product Cards List

<div class="description_auth">

The method is available with the <a href="/openapi/api-information#tag/Authorization/How-to-create-a-personal-access-base-or-test-token">token</a> of the <strong>Promotion</strong> category

</div>

Returns the list of created product cards.<br>

<div class="description_important">

Product cards from the trash are not provided in the method response. You can get these product cards via <a href="/openapi/work-with-products#tag/Product-Cards/paths/~1content~1v2~1get~1cards~1trash/post">different method</a>

</div>

To get **more than 100** product cards, use pagination:

  1. Make the first request: <pre> { "settings": { "sort": { "ascending": true }, "cursor": { "limit": 100 }, "filter": { "withPhoto": -1 } } }</pre> To get only new or updated product cards after data export, use ascending sorting: `"sort":{"ascending":true}`.
  2. Copy `"updatedAt": "***","nmID":"***"` from the `cursor` in the response and insert into the `cursor` of your next request.
  3. Make the next request.
  4. Repeat 2 and 3 until `total` value in the response is less than the `limit` value in the request. This will mean you got all cards.

To get only product cards that were created or updated after the previous data export:

  1. Save the `"cursor":{"updatedAt":"***","nmID":"***"}` fields from the last response of the previous data export. When exporting the data, use ascending sorting: `"sort":{"ascending":true}`.
  2. Specify the saved `"cursor":{"updatedAt":"***","nmID":"***"}` fields in the first request. Keep using ascending sorting.
  3. Save the `"cursor":{"updatedAt":"***","nmID":"***"}` fields from the last response of the current data export.

<div class="description_limit"> <a href="/openapi/api-information#tag/Introduction/Rate-Limits">Request limit</a> per one seller's account for all methods in the <strong>Content</strong> category:

| Period | Limit | Interval | Burst | | --- | --- | --- | --- | | 1 min | 100 requests | 600 ms | 5 requests |

Exceptions are the methods: <ul>

<li><a href="/openapi/work-with-products#tag/Creating-Product-Cards/paths/~1content~1v2~1cards~1upload/post">creating product cards</a></li>
<li><a href="/openapi/work-with-products#tag/Creating-Product-Cards/paths/~1content~1v2~1cards~1upload~1add/post">creating product cards with merge</a></li>
<li><a href="/openapi/work-with-products#tag/Product-Cards/paths/~1content~1v2~1cards~1update/post">editing product cards</a></li>
<li><a href="/openapi/work-with-products#tag/Product-Cards/paths/~1content~1v2~1cards~1error~1list/post">getting failed product cards with errors</a></li>
<li><a href="/openapi/work-with-products#tag/Product-Cards/paths/~1content~1v2~1cards~1delete~1trash/post">transfering product card to trash</a></li>
<li><a href="/openapi/work-with-products#tag/Product-Cards/paths/~1content~1v2~1cards~1recover/post">recovering product card from trash</a></li>

</ul> </div>

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiContentV2GetCardsListPostRequest

func (*ProductCardsAPIService) ContentV2GetCardsListPostExecute

Execute executes the request

@return ContentV2GetCardsListPost200Response

func (*ProductCardsAPIService) ContentV2GetCardsTrashPost

ContentV2GetCardsTrashPost Product Cards in Trash List

<div class="description_auth">

The method is available with the <a href="/openapi/api-information#tag/Authorization/How-to-create-a-personal-access-base-or-test-token">token</a> of the <strong>Promotion</strong> category

</div>

Returns list of product cards in trash.

To get **more than 100** product cards, use pagination.

  1. Make the first request: <br> <pre> { "settings": { "sort": { "ascending": true }, "cursor": { "limit": 100 } } }</pre> To get only product cards that were transferred to the trash after data export, use ascending sorting: `"sort":{"ascending":true}`.
  2. Copy `"trashedAt":"***","nmID":***` from the `cursor` in the response and insert into the `cursor` of your next request.
  3. Make the next request.
  4. Repeat 2 and 3 until `total` value in the response is less than the `limit` value in the request. This will mean you got all cards.

To get only product cards that were transferred to the trash after the previous data export:

  1. Save `"trashedAt":"***","nmID":***` from the `cursor` of the previous data export. When data export, use ascending sorting: `"sort":{"ascending":true}`.
  2. Specify the `"cursor":{"trashedAt":"***","nmID":"***"}` saved fields in the first request. Keep using ascending sorting.
  3. Save the `"cursor":{"trashedAt":"***","nmID":"***"}` fields from the last response of the current data export.

<div class="description_limit"> <a href="/openapi/api-information#tag/Introduction/Rate-Limits">Request limit</a> per one seller's account for all methods in the <strong>Content</strong> category:

| Period | Limit | Interval | Burst | | --- | --- | --- | --- | | 1 min | 100 requests | 600 ms | 5 requests |

Exceptions are the methods: <ul>

<li><a href="/openapi/work-with-products#tag/Creating-Product-Cards/paths/~1content~1v2~1cards~1upload/post">creating product cards</a></li>
<li><a href="/openapi/work-with-products#tag/Creating-Product-Cards/paths/~1content~1v2~1cards~1upload~1add/post">creating product cards with merge</a></li>
<li><a href="/openapi/work-with-products#tag/Product-Cards/paths/~1content~1v2~1cards~1update/post">editing product cards</a></li>
<li><a href="/openapi/work-with-products#tag/Product-Cards/paths/~1content~1v2~1cards~1error~1list/post">getting failed product cards with errors</a></li>
<li><a href="/openapi/work-with-products#tag/Product-Cards/paths/~1content~1v2~1cards~1delete~1trash/post">transfering product card to trash</a></li>
<li><a href="/openapi/work-with-products#tag/Product-Cards/paths/~1content~1v2~1cards~1recover/post">recovering product card from trash</a></li>

</ul> </div>

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiContentV2GetCardsTrashPostRequest

func (*ProductCardsAPIService) ContentV2GetCardsTrashPostExecute

Execute executes the request

@return ContentV2GetCardsTrashPost200Response

type QuarantineGoods

type QuarantineGoods struct {
	// WB article
	NmID *int32 `json:"nmID,omitempty"`
	// Not used
	SizeID NullableInt32 `json:"sizeID,omitempty"`
	// Not used
	TechSizeName *string `json:"techSizeName,omitempty"`
	// Currency, according to ISO 4217
	CurrencyIsoCode4217 *string `json:"currencyIsoCode4217,omitempty"`
	// New seller's price before discount
	NewPrice *float32 `json:"newPrice,omitempty"`
	// Current seller's price before discount
	OldPrice *float32 `json:"oldPrice,omitempty"`
	// New seller's discount, %
	NewDiscount *int32 `json:"newDiscount,omitempty"`
	// Current seller's discount, %
	OldDiscount *int32 `json:"oldDiscount,omitempty"`
	// Difference: `newPrice` * (1 - `newDiscount` / 100) - `oldPrice` * (1 - `oldDiscount` / 100)
	PriceDiff *float32 `json:"priceDiff,omitempty"`
}

QuarantineGoods struct for QuarantineGoods

func NewQuarantineGoods

func NewQuarantineGoods() *QuarantineGoods

NewQuarantineGoods instantiates a new QuarantineGoods 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

func NewQuarantineGoodsWithDefaults

func NewQuarantineGoodsWithDefaults() *QuarantineGoods

NewQuarantineGoodsWithDefaults instantiates a new QuarantineGoods 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

func (*QuarantineGoods) GetCurrencyIsoCode4217

func (o *QuarantineGoods) GetCurrencyIsoCode4217() string

GetCurrencyIsoCode4217 returns the CurrencyIsoCode4217 field value if set, zero value otherwise.

func (*QuarantineGoods) GetCurrencyIsoCode4217Ok

func (o *QuarantineGoods) GetCurrencyIsoCode4217Ok() (*string, bool)

GetCurrencyIsoCode4217Ok returns a tuple with the CurrencyIsoCode4217 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuarantineGoods) GetNewDiscount

func (o *QuarantineGoods) GetNewDiscount() int32

GetNewDiscount returns the NewDiscount field value if set, zero value otherwise.

func (*QuarantineGoods) GetNewDiscountOk

func (o *QuarantineGoods) GetNewDiscountOk() (*int32, bool)

GetNewDiscountOk returns a tuple with the NewDiscount field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuarantineGoods) GetNewPrice

func (o *QuarantineGoods) GetNewPrice() float32

GetNewPrice returns the NewPrice field value if set, zero value otherwise.

func (*QuarantineGoods) GetNewPriceOk

func (o *QuarantineGoods) GetNewPriceOk() (*float32, bool)

GetNewPriceOk returns a tuple with the NewPrice field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuarantineGoods) GetNmID

func (o *QuarantineGoods) GetNmID() int32

GetNmID returns the NmID field value if set, zero value otherwise.

func (*QuarantineGoods) GetNmIDOk

func (o *QuarantineGoods) GetNmIDOk() (*int32, bool)

GetNmIDOk returns a tuple with the NmID field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuarantineGoods) GetOldDiscount

func (o *QuarantineGoods) GetOldDiscount() int32

GetOldDiscount returns the OldDiscount field value if set, zero value otherwise.

func (*QuarantineGoods) GetOldDiscountOk

func (o *QuarantineGoods) GetOldDiscountOk() (*int32, bool)

GetOldDiscountOk returns a tuple with the OldDiscount field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuarantineGoods) GetOldPrice

func (o *QuarantineGoods) GetOldPrice() float32

GetOldPrice returns the OldPrice field value if set, zero value otherwise.

func (*QuarantineGoods) GetOldPriceOk

func (o *QuarantineGoods) GetOldPriceOk() (*float32, bool)

GetOldPriceOk returns a tuple with the OldPrice field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuarantineGoods) GetPriceDiff

func (o *QuarantineGoods) GetPriceDiff() float32

GetPriceDiff returns the PriceDiff field value if set, zero value otherwise.

func (*QuarantineGoods) GetPriceDiffOk

func (o *QuarantineGoods) GetPriceDiffOk() (*float32, bool)

GetPriceDiffOk returns a tuple with the PriceDiff field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuarantineGoods) GetSizeID

func (o *QuarantineGoods) GetSizeID() int32

GetSizeID returns the SizeID field value if set, zero value otherwise (both if not set or set to explicit null).

func (*QuarantineGoods) GetSizeIDOk

func (o *QuarantineGoods) GetSizeIDOk() (*int32, bool)

GetSizeIDOk returns a tuple with the SizeID field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*QuarantineGoods) GetTechSizeName

func (o *QuarantineGoods) GetTechSizeName() string

GetTechSizeName returns the TechSizeName field value if set, zero value otherwise.

func (*QuarantineGoods) GetTechSizeNameOk

func (o *QuarantineGoods) GetTechSizeNameOk() (*string, bool)

GetTechSizeNameOk returns a tuple with the TechSizeName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuarantineGoods) HasCurrencyIsoCode4217

func (o *QuarantineGoods) HasCurrencyIsoCode4217() bool

HasCurrencyIsoCode4217 returns a boolean if a field has been set.

func (*QuarantineGoods) HasNewDiscount

func (o *QuarantineGoods) HasNewDiscount() bool

HasNewDiscount returns a boolean if a field has been set.

func (*QuarantineGoods) HasNewPrice

func (o *QuarantineGoods) HasNewPrice() bool

HasNewPrice returns a boolean if a field has been set.

func (*QuarantineGoods) HasNmID

func (o *QuarantineGoods) HasNmID() bool

HasNmID returns a boolean if a field has been set.

func (*QuarantineGoods) HasOldDiscount

func (o *QuarantineGoods) HasOldDiscount() bool

HasOldDiscount returns a boolean if a field has been set.

func (*QuarantineGoods) HasOldPrice

func (o *QuarantineGoods) HasOldPrice() bool

HasOldPrice returns a boolean if a field has been set.

func (*QuarantineGoods) HasPriceDiff

func (o *QuarantineGoods) HasPriceDiff() bool

HasPriceDiff returns a boolean if a field has been set.

func (*QuarantineGoods) HasSizeID

func (o *QuarantineGoods) HasSizeID() bool

HasSizeID returns a boolean if a field has been set.

func (*QuarantineGoods) HasTechSizeName

func (o *QuarantineGoods) HasTechSizeName() bool

HasTechSizeName returns a boolean if a field has been set.

func (QuarantineGoods) MarshalJSON

func (o QuarantineGoods) MarshalJSON() ([]byte, error)

func (*QuarantineGoods) SetCurrencyIsoCode4217

func (o *QuarantineGoods) SetCurrencyIsoCode4217(v string)

SetCurrencyIsoCode4217 gets a reference to the given string and assigns it to the CurrencyIsoCode4217 field.

func (*QuarantineGoods) SetNewDiscount

func (o *QuarantineGoods) SetNewDiscount(v int32)

SetNewDiscount gets a reference to the given int32 and assigns it to the NewDiscount field.

func (*QuarantineGoods) SetNewPrice

func (o *QuarantineGoods) SetNewPrice(v float32)

SetNewPrice gets a reference to the given float32 and assigns it to the NewPrice field.

func (*QuarantineGoods) SetNmID

func (o *QuarantineGoods) SetNmID(v int32)

SetNmID gets a reference to the given int32 and assigns it to the NmID field.

func (*QuarantineGoods) SetOldDiscount

func (o *QuarantineGoods) SetOldDiscount(v int32)

SetOldDiscount gets a reference to the given int32 and assigns it to the OldDiscount field.

func (*QuarantineGoods) SetOldPrice

func (o *QuarantineGoods) SetOldPrice(v float32)

SetOldPrice gets a reference to the given float32 and assigns it to the OldPrice field.

func (*QuarantineGoods) SetPriceDiff

func (o *QuarantineGoods) SetPriceDiff(v float32)

SetPriceDiff gets a reference to the given float32 and assigns it to the PriceDiff field.

func (*QuarantineGoods) SetSizeID

func (o *QuarantineGoods) SetSizeID(v int32)

SetSizeID gets a reference to the given NullableInt32 and assigns it to the SizeID field.

func (*QuarantineGoods) SetSizeIDNil

func (o *QuarantineGoods) SetSizeIDNil()

SetSizeIDNil sets the value for SizeID to be an explicit nil

func (*QuarantineGoods) SetTechSizeName

func (o *QuarantineGoods) SetTechSizeName(v string)

SetTechSizeName gets a reference to the given string and assigns it to the TechSizeName field.

func (QuarantineGoods) ToMap

func (o QuarantineGoods) ToMap() (map[string]interface{}, error)

func (*QuarantineGoods) UnsetSizeID

func (o *QuarantineGoods) UnsetSizeID()

UnsetSizeID ensures that no value is present for SizeID, not even an explicit nil

type RequestAlreadyExistsError

type RequestAlreadyExistsError struct {
	Data *RequestAlreadyExistsErrorData `json:"data,omitempty"`
	// Error flag
	Error *bool `json:"error,omitempty"`
	// Error text
	ErrorText *string `json:"errorText,omitempty"`
}

RequestAlreadyExistsError struct for RequestAlreadyExistsError

func NewRequestAlreadyExistsError

func NewRequestAlreadyExistsError() *RequestAlreadyExistsError

NewRequestAlreadyExistsError instantiates a new RequestAlreadyExistsError 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

func NewRequestAlreadyExistsErrorWithDefaults

func NewRequestAlreadyExistsErrorWithDefaults() *RequestAlreadyExistsError

NewRequestAlreadyExistsErrorWithDefaults instantiates a new RequestAlreadyExistsError 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

func (*RequestAlreadyExistsError) GetData

GetData returns the Data field value if set, zero value otherwise.

func (*RequestAlreadyExistsError) GetDataOk

GetDataOk returns a tuple with the Data field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RequestAlreadyExistsError) GetError

func (o *RequestAlreadyExistsError) GetError() bool

GetError returns the Error field value if set, zero value otherwise.

func (*RequestAlreadyExistsError) GetErrorOk

func (o *RequestAlreadyExistsError) GetErrorOk() (*bool, bool)

GetErrorOk returns a tuple with the Error field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RequestAlreadyExistsError) GetErrorText

func (o *RequestAlreadyExistsError) GetErrorText() string

GetErrorText returns the ErrorText field value if set, zero value otherwise.

func (*RequestAlreadyExistsError) GetErrorTextOk

func (o *RequestAlreadyExistsError) GetErrorTextOk() (*string, bool)

GetErrorTextOk returns a tuple with the ErrorText field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RequestAlreadyExistsError) HasData

func (o *RequestAlreadyExistsError) HasData() bool

HasData returns a boolean if a field has been set.

func (*RequestAlreadyExistsError) HasError

func (o *RequestAlreadyExistsError) HasError() bool

HasError returns a boolean if a field has been set.

func (*RequestAlreadyExistsError) HasErrorText

func (o *RequestAlreadyExistsError) HasErrorText() bool

HasErrorText returns a boolean if a field has been set.

func (RequestAlreadyExistsError) MarshalJSON

func (o RequestAlreadyExistsError) MarshalJSON() ([]byte, error)

func (*RequestAlreadyExistsError) SetData

SetData gets a reference to the given RequestAlreadyExistsErrorData and assigns it to the Data field.

func (*RequestAlreadyExistsError) SetError

func (o *RequestAlreadyExistsError) SetError(v bool)

SetError gets a reference to the given bool and assigns it to the Error field.

func (*RequestAlreadyExistsError) SetErrorText

func (o *RequestAlreadyExistsError) SetErrorText(v string)

SetErrorText gets a reference to the given string and assigns it to the ErrorText field.

func (RequestAlreadyExistsError) ToMap

func (o RequestAlreadyExistsError) ToMap() (map[string]interface{}, error)

type RequestAlreadyExistsErrorData

type RequestAlreadyExistsErrorData struct {
	// Upload ID
	Id *int32 `json:"id,omitempty"`
	// Upload duplication: `true` — upload already exists
	AlreadyExists *bool `json:"alreadyExists,omitempty"`
}

RequestAlreadyExistsErrorData Response data

func NewRequestAlreadyExistsErrorData

func NewRequestAlreadyExistsErrorData() *RequestAlreadyExistsErrorData

NewRequestAlreadyExistsErrorData instantiates a new RequestAlreadyExistsErrorData 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

func NewRequestAlreadyExistsErrorDataWithDefaults

func NewRequestAlreadyExistsErrorDataWithDefaults() *RequestAlreadyExistsErrorData

NewRequestAlreadyExistsErrorDataWithDefaults instantiates a new RequestAlreadyExistsErrorData 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

func (*RequestAlreadyExistsErrorData) GetAlreadyExists

func (o *RequestAlreadyExistsErrorData) GetAlreadyExists() bool

GetAlreadyExists returns the AlreadyExists field value if set, zero value otherwise.

func (*RequestAlreadyExistsErrorData) GetAlreadyExistsOk

func (o *RequestAlreadyExistsErrorData) GetAlreadyExistsOk() (*bool, bool)

GetAlreadyExistsOk returns a tuple with the AlreadyExists field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RequestAlreadyExistsErrorData) GetId

GetId returns the Id field value if set, zero value otherwise.

func (*RequestAlreadyExistsErrorData) GetIdOk

func (o *RequestAlreadyExistsErrorData) GetIdOk() (*int32, bool)

GetIdOk returns a tuple with the Id field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RequestAlreadyExistsErrorData) HasAlreadyExists

func (o *RequestAlreadyExistsErrorData) HasAlreadyExists() bool

HasAlreadyExists returns a boolean if a field has been set.

func (*RequestAlreadyExistsErrorData) HasId

HasId returns a boolean if a field has been set.

func (RequestAlreadyExistsErrorData) MarshalJSON

func (o RequestAlreadyExistsErrorData) MarshalJSON() ([]byte, error)

func (*RequestAlreadyExistsErrorData) SetAlreadyExists

func (o *RequestAlreadyExistsErrorData) SetAlreadyExists(v bool)

SetAlreadyExists gets a reference to the given bool and assigns it to the AlreadyExists field.

func (*RequestAlreadyExistsErrorData) SetId

SetId gets a reference to the given int32 and assigns it to the Id field.

func (RequestAlreadyExistsErrorData) ToMap

func (o RequestAlreadyExistsErrorData) ToMap() (map[string]interface{}, error)

type RequestMoveNmsImtConn

type RequestMoveNmsImtConn struct {
	// Existing `imtID`, in which product cards have to be merged
	TargetIMT int32 `json:"targetIMT"`
	// `nmID` to be merged
	NmIDs []int32 `json:"nmIDs"`
}

RequestMoveNmsImtConn struct for RequestMoveNmsImtConn

func NewRequestMoveNmsImtConn

func NewRequestMoveNmsImtConn(targetIMT int32, nmIDs []int32) *RequestMoveNmsImtConn

NewRequestMoveNmsImtConn instantiates a new RequestMoveNmsImtConn 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

func NewRequestMoveNmsImtConnWithDefaults

func NewRequestMoveNmsImtConnWithDefaults() *RequestMoveNmsImtConn

NewRequestMoveNmsImtConnWithDefaults instantiates a new RequestMoveNmsImtConn 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

func (*RequestMoveNmsImtConn) GetNmIDs

func (o *RequestMoveNmsImtConn) GetNmIDs() []int32

GetNmIDs returns the NmIDs field value

func (*RequestMoveNmsImtConn) GetNmIDsOk

func (o *RequestMoveNmsImtConn) GetNmIDsOk() ([]int32, bool)

GetNmIDsOk returns a tuple with the NmIDs field value and a boolean to check if the value has been set.

func (*RequestMoveNmsImtConn) GetTargetIMT

func (o *RequestMoveNmsImtConn) GetTargetIMT() int32

GetTargetIMT returns the TargetIMT field value

func (*RequestMoveNmsImtConn) GetTargetIMTOk

func (o *RequestMoveNmsImtConn) GetTargetIMTOk() (*int32, bool)

GetTargetIMTOk returns a tuple with the TargetIMT field value and a boolean to check if the value has been set.

func (RequestMoveNmsImtConn) MarshalJSON

func (o RequestMoveNmsImtConn) MarshalJSON() ([]byte, error)

func (*RequestMoveNmsImtConn) SetNmIDs

func (o *RequestMoveNmsImtConn) SetNmIDs(v []int32)

SetNmIDs sets field value

func (*RequestMoveNmsImtConn) SetTargetIMT

func (o *RequestMoveNmsImtConn) SetTargetIMT(v int32)

SetTargetIMT sets field value

func (RequestMoveNmsImtConn) ToMap

func (o RequestMoveNmsImtConn) ToMap() (map[string]interface{}, error)

func (*RequestMoveNmsImtConn) UnmarshalJSON

func (o *RequestMoveNmsImtConn) UnmarshalJSON(data []byte) (err error)

type RequestMoveNmsImtDisconn

type RequestMoveNmsImtDisconn struct {
	// `nmID` to be separated
	NmIDs []int32 `json:"nmIDs"`
}

RequestMoveNmsImtDisconn struct for RequestMoveNmsImtDisconn

func NewRequestMoveNmsImtDisconn

func NewRequestMoveNmsImtDisconn(nmIDs []int32) *RequestMoveNmsImtDisconn

NewRequestMoveNmsImtDisconn instantiates a new RequestMoveNmsImtDisconn 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

func NewRequestMoveNmsImtDisconnWithDefaults

func NewRequestMoveNmsImtDisconnWithDefaults() *RequestMoveNmsImtDisconn

NewRequestMoveNmsImtDisconnWithDefaults instantiates a new RequestMoveNmsImtDisconn 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

func (*RequestMoveNmsImtDisconn) GetNmIDs

func (o *RequestMoveNmsImtDisconn) GetNmIDs() []int32

GetNmIDs returns the NmIDs field value

func (*RequestMoveNmsImtDisconn) GetNmIDsOk

func (o *RequestMoveNmsImtDisconn) GetNmIDsOk() ([]int32, bool)

GetNmIDsOk returns a tuple with the NmIDs field value and a boolean to check if the value has been set.

func (RequestMoveNmsImtDisconn) MarshalJSON

func (o RequestMoveNmsImtDisconn) MarshalJSON() ([]byte, error)

func (*RequestMoveNmsImtDisconn) SetNmIDs

func (o *RequestMoveNmsImtDisconn) SetNmIDs(v []int32)

SetNmIDs sets field value

func (RequestMoveNmsImtDisconn) ToMap

func (o RequestMoveNmsImtDisconn) ToMap() (map[string]interface{}, error)

func (*RequestMoveNmsImtDisconn) UnmarshalJSON

func (o *RequestMoveNmsImtDisconn) UnmarshalJSON(data []byte) (err error)

type RequestPublicViewerPublicErrorsTableListV2

type RequestPublicViewerPublicErrorsTableListV2 struct {
	Cursor *SwaggerPublicErrorsCursorInput `json:"cursor,omitempty"`
	Order  *SwaggerPublicErrorsOrderV2     `json:"order,omitempty"`
}

RequestPublicViewerPublicErrorsTableListV2 struct for RequestPublicViewerPublicErrorsTableListV2

func NewRequestPublicViewerPublicErrorsTableListV2

func NewRequestPublicViewerPublicErrorsTableListV2() *RequestPublicViewerPublicErrorsTableListV2

NewRequestPublicViewerPublicErrorsTableListV2 instantiates a new RequestPublicViewerPublicErrorsTableListV2 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

func NewRequestPublicViewerPublicErrorsTableListV2WithDefaults

func NewRequestPublicViewerPublicErrorsTableListV2WithDefaults() *RequestPublicViewerPublicErrorsTableListV2

NewRequestPublicViewerPublicErrorsTableListV2WithDefaults instantiates a new RequestPublicViewerPublicErrorsTableListV2 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

func (*RequestPublicViewerPublicErrorsTableListV2) GetCursor

GetCursor returns the Cursor field value if set, zero value otherwise.

func (*RequestPublicViewerPublicErrorsTableListV2) GetCursorOk

GetCursorOk returns a tuple with the Cursor field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RequestPublicViewerPublicErrorsTableListV2) GetOrder

GetOrder returns the Order field value if set, zero value otherwise.

func (*RequestPublicViewerPublicErrorsTableListV2) GetOrderOk

GetOrderOk returns a tuple with the Order field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RequestPublicViewerPublicErrorsTableListV2) HasCursor

HasCursor returns a boolean if a field has been set.

func (*RequestPublicViewerPublicErrorsTableListV2) HasOrder

HasOrder returns a boolean if a field has been set.

func (RequestPublicViewerPublicErrorsTableListV2) MarshalJSON

func (*RequestPublicViewerPublicErrorsTableListV2) SetCursor

SetCursor gets a reference to the given SwaggerPublicErrorsCursorInput and assigns it to the Cursor field.

func (*RequestPublicViewerPublicErrorsTableListV2) SetOrder

SetOrder gets a reference to the given SwaggerPublicErrorsOrderV2 and assigns it to the Order field.

func (RequestPublicViewerPublicErrorsTableListV2) ToMap

func (o RequestPublicViewerPublicErrorsTableListV2) ToMap() (map[string]interface{}, error)

type ResponseBodyContentError400

type ResponseBodyContentError400 struct {
	// Error data
	Data map[string]interface{} `json:"data,omitempty"`
	// Error flag
	Error *bool `json:"error,omitempty"`
	// Error text
	ErrorText *string `json:"errorText,omitempty"`
	// Additional errors
	AdditionalErrors map[string]interface{} `json:"additionalErrors,omitempty"`
}

ResponseBodyContentError400 struct for ResponseBodyContentError400

func NewResponseBodyContentError400

func NewResponseBodyContentError400() *ResponseBodyContentError400

NewResponseBodyContentError400 instantiates a new ResponseBodyContentError400 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

func NewResponseBodyContentError400WithDefaults

func NewResponseBodyContentError400WithDefaults() *ResponseBodyContentError400

NewResponseBodyContentError400WithDefaults instantiates a new ResponseBodyContentError400 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

func (*ResponseBodyContentError400) GetAdditionalErrors

func (o *ResponseBodyContentError400) GetAdditionalErrors() map[string]interface{}

GetAdditionalErrors returns the AdditionalErrors field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ResponseBodyContentError400) GetAdditionalErrorsOk

func (o *ResponseBodyContentError400) GetAdditionalErrorsOk() (map[string]interface{}, bool)

GetAdditionalErrorsOk returns a tuple with the AdditionalErrors field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*ResponseBodyContentError400) GetData

func (o *ResponseBodyContentError400) GetData() map[string]interface{}

GetData returns the Data field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ResponseBodyContentError400) GetDataOk

func (o *ResponseBodyContentError400) GetDataOk() (map[string]interface{}, bool)

GetDataOk returns a tuple with the Data field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*ResponseBodyContentError400) GetError

func (o *ResponseBodyContentError400) GetError() bool

GetError returns the Error field value if set, zero value otherwise.

func (*ResponseBodyContentError400) GetErrorOk

func (o *ResponseBodyContentError400) GetErrorOk() (*bool, bool)

GetErrorOk returns a tuple with the Error field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResponseBodyContentError400) GetErrorText

func (o *ResponseBodyContentError400) GetErrorText() string

GetErrorText returns the ErrorText field value if set, zero value otherwise.

func (*ResponseBodyContentError400) GetErrorTextOk

func (o *ResponseBodyContentError400) GetErrorTextOk() (*string, bool)

GetErrorTextOk returns a tuple with the ErrorText field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResponseBodyContentError400) HasAdditionalErrors

func (o *ResponseBodyContentError400) HasAdditionalErrors() bool

HasAdditionalErrors returns a boolean if a field has been set.

func (*ResponseBodyContentError400) HasData

func (o *ResponseBodyContentError400) HasData() bool

HasData returns a boolean if a field has been set.

func (*ResponseBodyContentError400) HasError

func (o *ResponseBodyContentError400) HasError() bool

HasError returns a boolean if a field has been set.

func (*ResponseBodyContentError400) HasErrorText

func (o *ResponseBodyContentError400) HasErrorText() bool

HasErrorText returns a boolean if a field has been set.

func (ResponseBodyContentError400) MarshalJSON

func (o ResponseBodyContentError400) MarshalJSON() ([]byte, error)

func (*ResponseBodyContentError400) SetAdditionalErrors

func (o *ResponseBodyContentError400) SetAdditionalErrors(v map[string]interface{})

SetAdditionalErrors gets a reference to the given map[string]interface{} and assigns it to the AdditionalErrors field.

func (*ResponseBodyContentError400) SetData

func (o *ResponseBodyContentError400) SetData(v map[string]interface{})

SetData gets a reference to the given map[string]interface{} and assigns it to the Data field.

func (*ResponseBodyContentError400) SetError

func (o *ResponseBodyContentError400) SetError(v bool)

SetError gets a reference to the given bool and assigns it to the Error field.

func (*ResponseBodyContentError400) SetErrorText

func (o *ResponseBodyContentError400) SetErrorText(v string)

SetErrorText gets a reference to the given string and assigns it to the ErrorText field.

func (ResponseBodyContentError400) ToMap

func (o ResponseBodyContentError400) ToMap() (map[string]interface{}, error)

type ResponseBodyContentError403

type ResponseBodyContentError403 struct {
	// Error data
	Data map[string]interface{} `json:"data,omitempty"`
	// Error flag
	Error *bool `json:"error,omitempty"`
	// Error text
	ErrorText *string `json:"errorText,omitempty"`
	// Additional errors
	AdditionalErrors NullableString `json:"additionalErrors,omitempty"`
}

ResponseBodyContentError403 struct for ResponseBodyContentError403

func NewResponseBodyContentError403

func NewResponseBodyContentError403() *ResponseBodyContentError403

NewResponseBodyContentError403 instantiates a new ResponseBodyContentError403 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

func NewResponseBodyContentError403WithDefaults

func NewResponseBodyContentError403WithDefaults() *ResponseBodyContentError403

NewResponseBodyContentError403WithDefaults instantiates a new ResponseBodyContentError403 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

func (*ResponseBodyContentError403) GetAdditionalErrors

func (o *ResponseBodyContentError403) GetAdditionalErrors() string

GetAdditionalErrors returns the AdditionalErrors field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ResponseBodyContentError403) GetAdditionalErrorsOk

func (o *ResponseBodyContentError403) GetAdditionalErrorsOk() (*string, bool)

GetAdditionalErrorsOk returns a tuple with the AdditionalErrors field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*ResponseBodyContentError403) GetData

func (o *ResponseBodyContentError403) GetData() map[string]interface{}

GetData returns the Data field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ResponseBodyContentError403) GetDataOk

func (o *ResponseBodyContentError403) GetDataOk() (map[string]interface{}, bool)

GetDataOk returns a tuple with the Data field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*ResponseBodyContentError403) GetError

func (o *ResponseBodyContentError403) GetError() bool

GetError returns the Error field value if set, zero value otherwise.

func (*ResponseBodyContentError403) GetErrorOk

func (o *ResponseBodyContentError403) GetErrorOk() (*bool, bool)

GetErrorOk returns a tuple with the Error field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResponseBodyContentError403) GetErrorText

func (o *ResponseBodyContentError403) GetErrorText() string

GetErrorText returns the ErrorText field value if set, zero value otherwise.

func (*ResponseBodyContentError403) GetErrorTextOk

func (o *ResponseBodyContentError403) GetErrorTextOk() (*string, bool)

GetErrorTextOk returns a tuple with the ErrorText field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResponseBodyContentError403) HasAdditionalErrors

func (o *ResponseBodyContentError403) HasAdditionalErrors() bool

HasAdditionalErrors returns a boolean if a field has been set.

func (*ResponseBodyContentError403) HasData

func (o *ResponseBodyContentError403) HasData() bool

HasData returns a boolean if a field has been set.

func (*ResponseBodyContentError403) HasError

func (o *ResponseBodyContentError403) HasError() bool

HasError returns a boolean if a field has been set.

func (*ResponseBodyContentError403) HasErrorText

func (o *ResponseBodyContentError403) HasErrorText() bool

HasErrorText returns a boolean if a field has been set.

func (ResponseBodyContentError403) MarshalJSON

func (o ResponseBodyContentError403) MarshalJSON() ([]byte, error)

func (*ResponseBodyContentError403) SetAdditionalErrors

func (o *ResponseBodyContentError403) SetAdditionalErrors(v string)

SetAdditionalErrors gets a reference to the given NullableString and assigns it to the AdditionalErrors field.

func (*ResponseBodyContentError403) SetAdditionalErrorsNil

func (o *ResponseBodyContentError403) SetAdditionalErrorsNil()

SetAdditionalErrorsNil sets the value for AdditionalErrors to be an explicit nil

func (*ResponseBodyContentError403) SetData

func (o *ResponseBodyContentError403) SetData(v map[string]interface{})

SetData gets a reference to the given map[string]interface{} and assigns it to the Data field.

func (*ResponseBodyContentError403) SetError

func (o *ResponseBodyContentError403) SetError(v bool)

SetError gets a reference to the given bool and assigns it to the Error field.

func (*ResponseBodyContentError403) SetErrorText

func (o *ResponseBodyContentError403) SetErrorText(v string)

SetErrorText gets a reference to the given string and assigns it to the ErrorText field.

func (ResponseBodyContentError403) ToMap

func (o ResponseBodyContentError403) ToMap() (map[string]interface{}, error)

func (*ResponseBodyContentError403) UnsetAdditionalErrors

func (o *ResponseBodyContentError403) UnsetAdditionalErrors()

UnsetAdditionalErrors ensures that no value is present for AdditionalErrors, not even an explicit nil

type ResponseCardCreate

type ResponseCardCreate struct {
	// Response data
	Data map[string]interface{} `json:"data,omitempty"`
	// Error flag
	Error *bool `json:"error,omitempty"`
	// Error description
	ErrorText        *string                             `json:"errorText,omitempty"`
	AdditionalErrors *ResponseCardCreateAdditionalErrors `json:"additionalErrors,omitempty"`
}

ResponseCardCreate struct for ResponseCardCreate

func NewResponseCardCreate

func NewResponseCardCreate() *ResponseCardCreate

NewResponseCardCreate instantiates a new ResponseCardCreate 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

func NewResponseCardCreateWithDefaults

func NewResponseCardCreateWithDefaults() *ResponseCardCreate

NewResponseCardCreateWithDefaults instantiates a new ResponseCardCreate 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

func (*ResponseCardCreate) GetAdditionalErrors

func (o *ResponseCardCreate) GetAdditionalErrors() ResponseCardCreateAdditionalErrors

GetAdditionalErrors returns the AdditionalErrors field value if set, zero value otherwise.

func (*ResponseCardCreate) GetAdditionalErrorsOk

func (o *ResponseCardCreate) GetAdditionalErrorsOk() (*ResponseCardCreateAdditionalErrors, bool)

GetAdditionalErrorsOk returns a tuple with the AdditionalErrors field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResponseCardCreate) GetData

func (o *ResponseCardCreate) GetData() map[string]interface{}

GetData returns the Data field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ResponseCardCreate) GetDataOk

func (o *ResponseCardCreate) GetDataOk() (map[string]interface{}, bool)

GetDataOk returns a tuple with the Data field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*ResponseCardCreate) GetError

func (o *ResponseCardCreate) GetError() bool

GetError returns the Error field value if set, zero value otherwise.

func (*ResponseCardCreate) GetErrorOk

func (o *ResponseCardCreate) GetErrorOk() (*bool, bool)

GetErrorOk returns a tuple with the Error field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResponseCardCreate) GetErrorText

func (o *ResponseCardCreate) GetErrorText() string

GetErrorText returns the ErrorText field value if set, zero value otherwise.

func (*ResponseCardCreate) GetErrorTextOk

func (o *ResponseCardCreate) GetErrorTextOk() (*string, bool)

GetErrorTextOk returns a tuple with the ErrorText field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResponseCardCreate) HasAdditionalErrors

func (o *ResponseCardCreate) HasAdditionalErrors() bool

HasAdditionalErrors returns a boolean if a field has been set.

func (*ResponseCardCreate) HasData

func (o *ResponseCardCreate) HasData() bool

HasData returns a boolean if a field has been set.

func (*ResponseCardCreate) HasError

func (o *ResponseCardCreate) HasError() bool

HasError returns a boolean if a field has been set.

func (*ResponseCardCreate) HasErrorText

func (o *ResponseCardCreate) HasErrorText() bool

HasErrorText returns a boolean if a field has been set.

func (ResponseCardCreate) MarshalJSON

func (o ResponseCardCreate) MarshalJSON() ([]byte, error)

func (*ResponseCardCreate) SetAdditionalErrors

func (o *ResponseCardCreate) SetAdditionalErrors(v ResponseCardCreateAdditionalErrors)

SetAdditionalErrors gets a reference to the given ResponseCardCreateAdditionalErrors and assigns it to the AdditionalErrors field.

func (*ResponseCardCreate) SetData

func (o *ResponseCardCreate) SetData(v map[string]interface{})

SetData gets a reference to the given map[string]interface{} and assigns it to the Data field.

func (*ResponseCardCreate) SetError

func (o *ResponseCardCreate) SetError(v bool)

SetError gets a reference to the given bool and assigns it to the Error field.

func (*ResponseCardCreate) SetErrorText

func (o *ResponseCardCreate) SetErrorText(v string)

SetErrorText gets a reference to the given string and assigns it to the ErrorText field.

func (ResponseCardCreate) ToMap

func (o ResponseCardCreate) ToMap() (map[string]interface{}, error)

type ResponseCardCreateAdditionalErrors

type ResponseCardCreateAdditionalErrors struct {
	ResponseCardCreateAdditionalErrorsOneOf  *ResponseCardCreateAdditionalErrorsOneOf
	ResponseCardCreateAdditionalErrorsOneOf1 *ResponseCardCreateAdditionalErrorsOneOf1
	String                                   *string
}

ResponseCardCreateAdditionalErrors - Any additional errors

func ResponseCardCreateAdditionalErrorsOneOf1AsResponseCardCreateAdditionalErrors

func ResponseCardCreateAdditionalErrorsOneOf1AsResponseCardCreateAdditionalErrors(v *ResponseCardCreateAdditionalErrorsOneOf1) ResponseCardCreateAdditionalErrors

ResponseCardCreateAdditionalErrorsOneOf1AsResponseCardCreateAdditionalErrors is a convenience function that returns ResponseCardCreateAdditionalErrorsOneOf1 wrapped in ResponseCardCreateAdditionalErrors

func ResponseCardCreateAdditionalErrorsOneOfAsResponseCardCreateAdditionalErrors

func ResponseCardCreateAdditionalErrorsOneOfAsResponseCardCreateAdditionalErrors(v *ResponseCardCreateAdditionalErrorsOneOf) ResponseCardCreateAdditionalErrors

ResponseCardCreateAdditionalErrorsOneOfAsResponseCardCreateAdditionalErrors is a convenience function that returns ResponseCardCreateAdditionalErrorsOneOf wrapped in ResponseCardCreateAdditionalErrors

func StringAsResponseCardCreateAdditionalErrors

func StringAsResponseCardCreateAdditionalErrors(v *string) ResponseCardCreateAdditionalErrors

stringAsResponseCardCreateAdditionalErrors is a convenience function that returns string wrapped in ResponseCardCreateAdditionalErrors

func (*ResponseCardCreateAdditionalErrors) GetActualInstance

func (obj *ResponseCardCreateAdditionalErrors) GetActualInstance() interface{}

Get the actual instance

func (ResponseCardCreateAdditionalErrors) GetActualInstanceValue

func (obj ResponseCardCreateAdditionalErrors) GetActualInstanceValue() interface{}

Get the actual instance value

func (ResponseCardCreateAdditionalErrors) MarshalJSON

func (src ResponseCardCreateAdditionalErrors) MarshalJSON() ([]byte, error)

Marshal data from the first non-nil pointers in the struct to JSON

func (*ResponseCardCreateAdditionalErrors) UnmarshalJSON

func (dst *ResponseCardCreateAdditionalErrors) UnmarshalJSON(data []byte) error

Unmarshal JSON data into one of the pointers in the struct

type ResponseCardCreateAdditionalErrorsOneOf

type ResponseCardCreateAdditionalErrorsOneOf struct {
	String *string `json:"string,omitempty"`
}

ResponseCardCreateAdditionalErrorsOneOf struct for ResponseCardCreateAdditionalErrorsOneOf

func NewResponseCardCreateAdditionalErrorsOneOf

func NewResponseCardCreateAdditionalErrorsOneOf() *ResponseCardCreateAdditionalErrorsOneOf

NewResponseCardCreateAdditionalErrorsOneOf instantiates a new ResponseCardCreateAdditionalErrorsOneOf 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

func NewResponseCardCreateAdditionalErrorsOneOfWithDefaults

func NewResponseCardCreateAdditionalErrorsOneOfWithDefaults() *ResponseCardCreateAdditionalErrorsOneOf

NewResponseCardCreateAdditionalErrorsOneOfWithDefaults instantiates a new ResponseCardCreateAdditionalErrorsOneOf 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

func (*ResponseCardCreateAdditionalErrorsOneOf) GetString

GetString returns the String field value if set, zero value otherwise.

func (*ResponseCardCreateAdditionalErrorsOneOf) GetStringOk

GetStringOk returns a tuple with the String field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResponseCardCreateAdditionalErrorsOneOf) HasString

HasString returns a boolean if a field has been set.

func (ResponseCardCreateAdditionalErrorsOneOf) MarshalJSON

func (o ResponseCardCreateAdditionalErrorsOneOf) MarshalJSON() ([]byte, error)

func (*ResponseCardCreateAdditionalErrorsOneOf) SetString

SetString gets a reference to the given string and assigns it to the String field.

func (ResponseCardCreateAdditionalErrorsOneOf) ToMap

func (o ResponseCardCreateAdditionalErrorsOneOf) ToMap() (map[string]interface{}, error)

type ResponseCardCreateAdditionalErrorsOneOf1

type ResponseCardCreateAdditionalErrorsOneOf1 struct {
	Error string `json:"error"`
}

ResponseCardCreateAdditionalErrorsOneOf1 struct for ResponseCardCreateAdditionalErrorsOneOf1

func NewResponseCardCreateAdditionalErrorsOneOf1

func NewResponseCardCreateAdditionalErrorsOneOf1(error_ string) *ResponseCardCreateAdditionalErrorsOneOf1

NewResponseCardCreateAdditionalErrorsOneOf1 instantiates a new ResponseCardCreateAdditionalErrorsOneOf1 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

func NewResponseCardCreateAdditionalErrorsOneOf1WithDefaults

func NewResponseCardCreateAdditionalErrorsOneOf1WithDefaults() *ResponseCardCreateAdditionalErrorsOneOf1

NewResponseCardCreateAdditionalErrorsOneOf1WithDefaults instantiates a new ResponseCardCreateAdditionalErrorsOneOf1 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

func (*ResponseCardCreateAdditionalErrorsOneOf1) GetError

GetError returns the Error field value

func (*ResponseCardCreateAdditionalErrorsOneOf1) GetErrorOk

GetErrorOk returns a tuple with the Error field value and a boolean to check if the value has been set.

func (ResponseCardCreateAdditionalErrorsOneOf1) MarshalJSON

func (*ResponseCardCreateAdditionalErrorsOneOf1) SetError

SetError sets field value

func (ResponseCardCreateAdditionalErrorsOneOf1) ToMap

func (o ResponseCardCreateAdditionalErrorsOneOf1) ToMap() (map[string]interface{}, error)

func (*ResponseCardCreateAdditionalErrorsOneOf1) UnmarshalJSON

func (o *ResponseCardCreateAdditionalErrorsOneOf1) UnmarshalJSON(data []byte) (err error)

type ResponseContentError

type ResponseContentError struct {
	// Error data
	Data map[string]interface{} `json:"data,omitempty"`
	// Error flag
	Error *bool `json:"error,omitempty"`
	// Error text
	ErrorText *string `json:"errorText,omitempty"`
	// Additional errors
	AdditionalErrors NullableString `json:"additionalErrors,omitempty"`
}

ResponseContentError struct for ResponseContentError

func NewResponseContentError

func NewResponseContentError() *ResponseContentError

NewResponseContentError instantiates a new ResponseContentError 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

func NewResponseContentErrorWithDefaults

func NewResponseContentErrorWithDefaults() *ResponseContentError

NewResponseContentErrorWithDefaults instantiates a new ResponseContentError 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

func (*ResponseContentError) GetAdditionalErrors

func (o *ResponseContentError) GetAdditionalErrors() string

GetAdditionalErrors returns the AdditionalErrors field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ResponseContentError) GetAdditionalErrorsOk

func (o *ResponseContentError) GetAdditionalErrorsOk() (*string, bool)

GetAdditionalErrorsOk returns a tuple with the AdditionalErrors field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*ResponseContentError) GetData

func (o *ResponseContentError) GetData() map[string]interface{}

GetData returns the Data field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ResponseContentError) GetDataOk

func (o *ResponseContentError) GetDataOk() (map[string]interface{}, bool)

GetDataOk returns a tuple with the Data field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*ResponseContentError) GetError

func (o *ResponseContentError) GetError() bool

GetError returns the Error field value if set, zero value otherwise.

func (*ResponseContentError) GetErrorOk

func (o *ResponseContentError) GetErrorOk() (*bool, bool)

GetErrorOk returns a tuple with the Error field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResponseContentError) GetErrorText

func (o *ResponseContentError) GetErrorText() string

GetErrorText returns the ErrorText field value if set, zero value otherwise.

func (*ResponseContentError) GetErrorTextOk

func (o *ResponseContentError) GetErrorTextOk() (*string, bool)

GetErrorTextOk returns a tuple with the ErrorText field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResponseContentError) HasAdditionalErrors

func (o *ResponseContentError) HasAdditionalErrors() bool

HasAdditionalErrors returns a boolean if a field has been set.

func (*ResponseContentError) HasData

func (o *ResponseContentError) HasData() bool

HasData returns a boolean if a field has been set.

func (*ResponseContentError) HasError

func (o *ResponseContentError) HasError() bool

HasError returns a boolean if a field has been set.

func (*ResponseContentError) HasErrorText

func (o *ResponseContentError) HasErrorText() bool

HasErrorText returns a boolean if a field has been set.

func (ResponseContentError) MarshalJSON

func (o ResponseContentError) MarshalJSON() ([]byte, error)

func (*ResponseContentError) SetAdditionalErrors

func (o *ResponseContentError) SetAdditionalErrors(v string)

SetAdditionalErrors gets a reference to the given NullableString and assigns it to the AdditionalErrors field.

func (*ResponseContentError) SetAdditionalErrorsNil

func (o *ResponseContentError) SetAdditionalErrorsNil()

SetAdditionalErrorsNil sets the value for AdditionalErrors to be an explicit nil

func (*ResponseContentError) SetData

func (o *ResponseContentError) SetData(v map[string]interface{})

SetData gets a reference to the given map[string]interface{} and assigns it to the Data field.

func (*ResponseContentError) SetError

func (o *ResponseContentError) SetError(v bool)

SetError gets a reference to the given bool and assigns it to the Error field.

func (*ResponseContentError) SetErrorText

func (o *ResponseContentError) SetErrorText(v string)

SetErrorText gets a reference to the given string and assigns it to the ErrorText field.

func (ResponseContentError) ToMap

func (o ResponseContentError) ToMap() (map[string]interface{}, error)

func (*ResponseContentError) UnsetAdditionalErrors

func (o *ResponseContentError) UnsetAdditionalErrors()

UnsetAdditionalErrors ensures that no value is present for AdditionalErrors, not even an explicit nil

type ResponseError

type ResponseError struct {
	// Error data
	Data map[string]interface{} `json:"data,omitempty"`
	// Error flag
	Error *bool `json:"error,omitempty"`
	// Error text
	ErrorText *string `json:"errorText,omitempty"`
}

ResponseError struct for ResponseError

func NewResponseError

func NewResponseError() *ResponseError

NewResponseError instantiates a new ResponseError 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

func NewResponseErrorWithDefaults

func NewResponseErrorWithDefaults() *ResponseError

NewResponseErrorWithDefaults instantiates a new ResponseError 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

func (*ResponseError) GetData

func (o *ResponseError) GetData() map[string]interface{}

GetData returns the Data field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ResponseError) GetDataOk

func (o *ResponseError) GetDataOk() (map[string]interface{}, bool)

GetDataOk returns a tuple with the Data field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*ResponseError) GetError

func (o *ResponseError) GetError() bool

GetError returns the Error field value if set, zero value otherwise.

func (*ResponseError) GetErrorOk

func (o *ResponseError) GetErrorOk() (*bool, bool)

GetErrorOk returns a tuple with the Error field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResponseError) GetErrorText

func (o *ResponseError) GetErrorText() string

GetErrorText returns the ErrorText field value if set, zero value otherwise.

func (*ResponseError) GetErrorTextOk

func (o *ResponseError) GetErrorTextOk() (*string, bool)

GetErrorTextOk returns a tuple with the ErrorText field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResponseError) HasData

func (o *ResponseError) HasData() bool

HasData returns a boolean if a field has been set.

func (*ResponseError) HasError

func (o *ResponseError) HasError() bool

HasError returns a boolean if a field has been set.

func (*ResponseError) HasErrorText

func (o *ResponseError) HasErrorText() bool

HasErrorText returns a boolean if a field has been set.

func (ResponseError) MarshalJSON

func (o ResponseError) MarshalJSON() ([]byte, error)

func (*ResponseError) SetData

func (o *ResponseError) SetData(v map[string]interface{})

SetData gets a reference to the given map[string]interface{} and assigns it to the Data field.

func (*ResponseError) SetError

func (o *ResponseError) SetError(v bool)

SetError gets a reference to the given bool and assigns it to the Error field.

func (*ResponseError) SetErrorText

func (o *ResponseError) SetErrorText(v string)

SetErrorText gets a reference to the given string and assigns it to the ErrorText field.

func (ResponseError) ToMap

func (o ResponseError) ToMap() (map[string]interface{}, error)

type ResponseIncorrectDate

type ResponseIncorrectDate struct {
	Error *string `json:"error,omitempty"`
}

ResponseIncorrectDate struct for ResponseIncorrectDate

func NewResponseIncorrectDate

func NewResponseIncorrectDate() *ResponseIncorrectDate

NewResponseIncorrectDate instantiates a new ResponseIncorrectDate 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

func NewResponseIncorrectDateWithDefaults

func NewResponseIncorrectDateWithDefaults() *ResponseIncorrectDate

NewResponseIncorrectDateWithDefaults instantiates a new ResponseIncorrectDate 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

func (*ResponseIncorrectDate) GetError

func (o *ResponseIncorrectDate) GetError() string

GetError returns the Error field value if set, zero value otherwise.

func (*ResponseIncorrectDate) GetErrorOk

func (o *ResponseIncorrectDate) GetErrorOk() (*string, bool)

GetErrorOk returns a tuple with the Error field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResponseIncorrectDate) HasError

func (o *ResponseIncorrectDate) HasError() bool

HasError returns a boolean if a field has been set.

func (ResponseIncorrectDate) MarshalJSON

func (o ResponseIncorrectDate) MarshalJSON() ([]byte, error)

func (*ResponseIncorrectDate) SetError

func (o *ResponseIncorrectDate) SetError(v string)

SetError gets a reference to the given string and assigns it to the Error field.

func (ResponseIncorrectDate) ToMap

func (o ResponseIncorrectDate) ToMap() (map[string]interface{}, error)

type ResponsePublicViewerPublicErrorsTableListV2

type ResponsePublicViewerPublicErrorsTableListV2 struct {
	Data ModelsErrorTableListPublicRespV2 `json:"data"`
	// Error flag
	Error bool `json:"error"`
	// Error text
	ErrorText string `json:"errorText"`
	// Additional errors
	AdditionalErrors map[string]interface{} `json:"additionalErrors"`
}

ResponsePublicViewerPublicErrorsTableListV2 struct for ResponsePublicViewerPublicErrorsTableListV2

func NewResponsePublicViewerPublicErrorsTableListV2

func NewResponsePublicViewerPublicErrorsTableListV2(data ModelsErrorTableListPublicRespV2, error_ bool, errorText string, additionalErrors map[string]interface{}) *ResponsePublicViewerPublicErrorsTableListV2

NewResponsePublicViewerPublicErrorsTableListV2 instantiates a new ResponsePublicViewerPublicErrorsTableListV2 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

func NewResponsePublicViewerPublicErrorsTableListV2WithDefaults

func NewResponsePublicViewerPublicErrorsTableListV2WithDefaults() *ResponsePublicViewerPublicErrorsTableListV2

NewResponsePublicViewerPublicErrorsTableListV2WithDefaults instantiates a new ResponsePublicViewerPublicErrorsTableListV2 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

func (*ResponsePublicViewerPublicErrorsTableListV2) GetAdditionalErrors

func (o *ResponsePublicViewerPublicErrorsTableListV2) GetAdditionalErrors() map[string]interface{}

GetAdditionalErrors returns the AdditionalErrors field value If the value is explicit nil, the zero value for map[string]interface{} will be returned

func (*ResponsePublicViewerPublicErrorsTableListV2) GetAdditionalErrorsOk

func (o *ResponsePublicViewerPublicErrorsTableListV2) GetAdditionalErrorsOk() (map[string]interface{}, bool)

GetAdditionalErrorsOk returns a tuple with the AdditionalErrors field value and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*ResponsePublicViewerPublicErrorsTableListV2) GetData

GetData returns the Data field value

func (*ResponsePublicViewerPublicErrorsTableListV2) GetDataOk

GetDataOk returns a tuple with the Data field value and a boolean to check if the value has been set.

func (*ResponsePublicViewerPublicErrorsTableListV2) GetError

GetError returns the Error field value

func (*ResponsePublicViewerPublicErrorsTableListV2) GetErrorOk

GetErrorOk returns a tuple with the Error field value and a boolean to check if the value has been set.

func (*ResponsePublicViewerPublicErrorsTableListV2) GetErrorText

GetErrorText returns the ErrorText field value

func (*ResponsePublicViewerPublicErrorsTableListV2) GetErrorTextOk

GetErrorTextOk returns a tuple with the ErrorText field value and a boolean to check if the value has been set.

func (ResponsePublicViewerPublicErrorsTableListV2) MarshalJSON

func (*ResponsePublicViewerPublicErrorsTableListV2) SetAdditionalErrors

func (o *ResponsePublicViewerPublicErrorsTableListV2) SetAdditionalErrors(v map[string]interface{})

SetAdditionalErrors sets field value

func (*ResponsePublicViewerPublicErrorsTableListV2) SetData

SetData sets field value

func (*ResponsePublicViewerPublicErrorsTableListV2) SetError

SetError sets field value

func (*ResponsePublicViewerPublicErrorsTableListV2) SetErrorText

SetErrorText sets field value

func (ResponsePublicViewerPublicErrorsTableListV2) ToMap

func (o ResponsePublicViewerPublicErrorsTableListV2) ToMap() (map[string]interface{}, error)

func (*ResponsePublicViewerPublicErrorsTableListV2) UnmarshalJSON

func (o *ResponsePublicViewerPublicErrorsTableListV2) UnmarshalJSON(data []byte) (err error)

type SellerWarehousesAPIService

type SellerWarehousesAPIService service

SellerWarehousesAPIService SellerWarehousesAPI service

func (*SellerWarehousesAPIService) ApiV3DbwWarehousesWarehouseIdContactsGet

func (a *SellerWarehousesAPIService) ApiV3DbwWarehousesWarehouseIdContactsGet(ctx context.Context, warehouseId int64) ApiApiV3DbwWarehousesWarehouseIdContactsGetRequest

ApiV3DbwWarehousesWarehouseIdContactsGet Contacts List

Returns a list of contacts linked to the seller's warehouse. <br> Only for warehouses with delivery type `3` — Delivery by WB courier (DBW).

<div class="description_limit"> <a href="/openapi/api-information#tag/Introduction/Rate-Limits">Request limit</a> per one seller's account for DBW methods: <ul>

<li>for getting and updating contact lists</li>
<li>for getting and deleting metadata</li>
<li>assembly orders</li>

</ul>

| Period | Limit | Interval | Burst | | --- | --- | --- | --- | | 1 min | 300 requests | 200 ms | 20 requests |

</div>

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param warehouseId The seller's warehouse ID
@return ApiApiV3DbwWarehousesWarehouseIdContactsGetRequest

func (*SellerWarehousesAPIService) ApiV3DbwWarehousesWarehouseIdContactsGetExecute

Execute executes the request

@return ApiV3DbwWarehousesWarehouseIdContactsGet200Response

func (*SellerWarehousesAPIService) ApiV3DbwWarehousesWarehouseIdContactsPut

func (a *SellerWarehousesAPIService) ApiV3DbwWarehousesWarehouseIdContactsPut(ctx context.Context, warehouseId int64) ApiApiV3DbwWarehousesWarehouseIdContactsPutRequest

ApiV3DbwWarehousesWarehouseIdContactsPut Update Contacts List

Updates the seller's warehouse contact list. <br>

<div class="description_important">

The contact list is overwritten upon update. Therefore, you need to include <strong>all</strong> contact list parameters in the request, including those you do not intend to update.

</div>

Only for warehouses with delivery type `3` — WB courier (DBW).<br>

A maximum of 5 contacts can be added to the warehouse. To delete contacts, send an empty `contacts` array.

<div class="description_limit"> <a href="/openapi/api-information#tag/Introduction/Rate-Limits">Request limit</a> per one seller's account for DBW methods: <ul>

<li>for getting and updating contact lists</li>
<li>for getting and deleting metadata</li>
<li>assembly orders</li>

</ul>

| Period | Limit | Interval | Burst | | --- | --- | --- | --- | | 1 min | 300 requests | 200 ms | 20 requests |

</div>

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param warehouseId The seller's warehouse ID
@return ApiApiV3DbwWarehousesWarehouseIdContactsPutRequest

func (*SellerWarehousesAPIService) ApiV3DbwWarehousesWarehouseIdContactsPutExecute

func (a *SellerWarehousesAPIService) ApiV3DbwWarehousesWarehouseIdContactsPutExecute(r ApiApiV3DbwWarehousesWarehouseIdContactsPutRequest) (*http.Response, error)

Execute executes the request

func (*SellerWarehousesAPIService) ApiV3OfficesGet

ApiV3OfficesGet Get Offices

Returns a list of all offices to link to seller warehouse.

<div class="description_limit"> <a href="/openapi/api-information#tag/Introduction/Rate-Limits">Request limit</a> per one seller's account for all <strong>seller warehouses</strong> methods:

| Period | Limit | Interval | Burst | | --- | --- | --- | --- | | 1 min | 300 requests | 200 ms | 20 requests |

One request with a response code of <code>409</code> is counted as 10 requests </div>

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiApiV3OfficesGetRequest

func (*SellerWarehousesAPIService) ApiV3OfficesGetExecute

func (a *SellerWarehousesAPIService) ApiV3OfficesGetExecute(r ApiApiV3OfficesGetRequest) ([]Office, *http.Response, error)

Execute executes the request

@return []Office

func (*SellerWarehousesAPIService) ApiV3WarehousesGet

ApiV3WarehousesGet Get Warehouses

Returns a list of all seller's warehouses.

<div class="description_limit"> <a href="/openapi/api-information#tag/Introduction/Rate-Limits">Request limit</a> per one seller's account for all <strong>seller warehouses</strong> methods:

| Period | Limit | Interval | Burst | | --- | --- | --- | --- | | 1 min | 300 requests | 200 ms | 20 requests |

One request with a response code of <code>409</code> is counted as 10 requests </div>

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiApiV3WarehousesGetRequest

func (*SellerWarehousesAPIService) ApiV3WarehousesGetExecute

Execute executes the request

@return []Warehouse

func (*SellerWarehousesAPIService) ApiV3WarehousesPost

ApiV3WarehousesPost Create Warehouse

Creates a seller's warehouse. You cannot link an office that is already in use.

<div class="description_limit"> <a href="/openapi/api-information#tag/Introduction/Rate-Limits">Request limit</a> per one seller's account for all <strong>seller warehouses</strong> methods:

| Period | Limit | Interval | Burst | | --- | --- | --- | --- | | 1 min | 300 requests | 200 ms | 20 requests |

One request with a response code of <code>409</code> is counted as 10 requests </div>

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiApiV3WarehousesPostRequest

func (*SellerWarehousesAPIService) ApiV3WarehousesPostExecute

Execute executes the request

@return ApiV3WarehousesPost201Response

func (*SellerWarehousesAPIService) ApiV3WarehousesWarehouseIdDelete

func (a *SellerWarehousesAPIService) ApiV3WarehousesWarehouseIdDelete(ctx context.Context, warehouseId int64) ApiApiV3WarehousesWarehouseIdDeleteRequest

ApiV3WarehousesWarehouseIdDelete Delete Warehouse

Deletes the seller's warehouse.

<div class="description_limit"> <a href="/openapi/api-information#tag/Introduction/Rate-Limits">Request limit</a> per one seller's account for all <strong>seller warehouses</strong> methods:

| Period | Limit | Interval | Burst | | --- | --- | --- | --- | | 1 min | 300 requests | 200 ms | 20 requests |

One request with a response code of <code>409</code> is counted as 10 requests </div>

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param warehouseId The seller's warehouse ID
@return ApiApiV3WarehousesWarehouseIdDeleteRequest

func (*SellerWarehousesAPIService) ApiV3WarehousesWarehouseIdDeleteExecute

func (a *SellerWarehousesAPIService) ApiV3WarehousesWarehouseIdDeleteExecute(r ApiApiV3WarehousesWarehouseIdDeleteRequest) (*http.Response, error)

Execute executes the request

func (*SellerWarehousesAPIService) ApiV3WarehousesWarehouseIdPut

func (a *SellerWarehousesAPIService) ApiV3WarehousesWarehouseIdPut(ctx context.Context, warehouseId int64) ApiApiV3WarehousesWarehouseIdPutRequest

ApiV3WarehousesWarehouseIdPut Update Warehouse

Updates the seller's warehouse details. Changing the linked office is allowed once per day. You cannot link an office that is already in use.

<div class="description_limit"> <a href="/openapi/api-information#tag/Introduction/Rate-Limits">Request limit</a> per one seller's account for all <strong>seller warehouses</strong> methods:

| Period | Limit | Interval | Burst | | --- | --- | --- | --- | | 1 min | 300 requests | 200 ms | 20 requests |

One request with a response code of <code>409</code> is counted as 10 requests </div>

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param warehouseId The seller's warehouse ID
@return ApiApiV3WarehousesWarehouseIdPutRequest

func (*SellerWarehousesAPIService) ApiV3WarehousesWarehouseIdPutExecute

func (a *SellerWarehousesAPIService) ApiV3WarehousesWarehouseIdPutExecute(r ApiApiV3WarehousesWarehouseIdPutRequest) (*http.Response, error)

Execute executes the request

type SellerWarehousesInventoryAPIService

type SellerWarehousesInventoryAPIService service

SellerWarehousesInventoryAPIService SellerWarehousesInventoryAPI service

func (*SellerWarehousesInventoryAPIService) ApiV3StocksWarehouseIdDelete

func (a *SellerWarehousesInventoryAPIService) ApiV3StocksWarehouseIdDelete(ctx context.Context, warehouseId int64) ApiApiV3StocksWarehouseIdDeleteRequest

ApiV3StocksWarehouseIdDelete Delete Inventory

Deletes product inventory.

<div class="description_important">

<strong>This action is irreversible</strong>. Deleted stock will require re-uploading to continue sales

</div>

<div class="description_limit"> <a href="/openapi/api-information#tag/Introduction/Rate-Limits">Request limit</a> per one seller's account for all <strong>inventory</strong> methods:

| Period | Limit | Interval | Burst | | --- | --- | --- | --- | | 1 min | 10 requests | 6 s | 2 requests |

One request with a response code of <code>409</code> is counted as 10 requests </div>

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param warehouseId The seller's warehouse ID
@return ApiApiV3StocksWarehouseIdDeleteRequest

func (*SellerWarehousesInventoryAPIService) ApiV3StocksWarehouseIdDeleteExecute

Execute executes the request

func (*SellerWarehousesInventoryAPIService) ApiV3StocksWarehouseIdPost

func (a *SellerWarehousesInventoryAPIService) ApiV3StocksWarehouseIdPost(ctx context.Context, warehouseId int64) ApiApiV3StocksWarehouseIdPostRequest

ApiV3StocksWarehouseIdPost Get Inventory

Returns product inventory.

<div class="description_limit"> <a href="/openapi/api-information#tag/Introduction/Rate-Limits">Request limit</a> per one seller's account for all <strong>inventory</strong> methods:

| Period | Limit | Interval | Burst | | --- | --- | --- | --- | | 1 min | 300 requests | 200 ms | 20 requests |

One request with a response code of <code>409</code> is counted as 10 requests </div>

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param warehouseId The seller's warehouse ID
@return ApiApiV3StocksWarehouseIdPostRequest

func (*SellerWarehousesInventoryAPIService) ApiV3StocksWarehouseIdPostExecute

Execute executes the request

@return ApiV3StocksWarehouseIdPost200Response

func (*SellerWarehousesInventoryAPIService) ApiV3StocksWarehouseIdPut

func (a *SellerWarehousesInventoryAPIService) ApiV3StocksWarehouseIdPut(ctx context.Context, warehouseId int64) ApiApiV3StocksWarehouseIdPutRequest

ApiV3StocksWarehouseIdPut Update Inventory

Updates product inventory.

<div class="description_important">

The names of the query parameters are not validated. If invalid names are sent, the response will be successful(204), but the remaining amounts will not be updated.

</div>

<div class="description_limit"> <a href="/openapi/api-information#tag/Introduction/Rate-Limits">Request limit</a> per one seller's account for all <strong>inventory</strong> methods:

| Period | Limit | Interval | Burst | | --- | --- | --- | --- | | 1 min | 300 requests | 200 ms | 20 requests |

One request with a response code of <code>409</code> is counted as 10 requests </div>

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param warehouseId The seller's warehouse ID
@return ApiApiV3StocksWarehouseIdPutRequest

func (*SellerWarehousesInventoryAPIService) ApiV3StocksWarehouseIdPutExecute

Execute executes the request

type ServerConfiguration

type ServerConfiguration struct {
	URL         string
	Description string
	Variables   map[string]ServerVariable
}

ServerConfiguration stores the information about a server

type ServerConfigurations

type ServerConfigurations []ServerConfiguration

ServerConfigurations stores multiple ServerConfiguration items

func (ServerConfigurations) URL

func (sc ServerConfigurations) URL(index int, variables map[string]string) (string, error)

URL formats template on a index using given variables

type ServerVariable

type ServerVariable struct {
	Description  string
	DefaultValue string
	EnumValues   []string
}

ServerVariable stores the information about a server variable

type SizeGood

type SizeGood struct {
	// WB article
	NmID *int32 `json:"nmID,omitempty"`
	// Size ID. You can get this ID with the [Get products](./work-with-products#tag/Prices-and-Discounts/paths/~1api~1v2~1list~1goods~1filter/get) method, the `sizeID` field. In the Content methods this is the `chrtID` field
	SizeID *int32 `json:"sizeID,omitempty"`
	// Seller's article
	VendorCode *string `json:"vendorCode,omitempty"`
	// Price
	Price *int32 `json:"price,omitempty"`
	// Currency, according to ISO 4217
	CurrencyIsoCode4217 *string `json:"currencyIsoCode4217,omitempty"`
	// Price with discount
	DiscountedPrice *float32 `json:"discountedPrice,omitempty"`
	// Price with discount including WB Club discount
	ClubDiscountedPrice *float32 `json:"clubDiscountedPrice,omitempty"`
	// Discount, %
	Discount *int32 `json:"discount,omitempty"`
	// WB Club discount, %
	ClubDiscount *int32 `json:"clubDiscount,omitempty"`
	// Size
	TechSizeName *string `json:"techSizeName,omitempty"`
	// Setting of size prices (depends on product category):   - `true` — available   - `false` — unavailable
	EditableSizePrice *bool `json:"editableSizePrice,omitempty"`
	// Flag of non-liquid product:   - `true` — non-liquid product with a low inventory index   - The field is absent — it's a liquid product
	IsBadTurnover *bool `json:"isBadTurnover,omitempty"`
}

SizeGood Size information

func NewSizeGood

func NewSizeGood() *SizeGood

NewSizeGood instantiates a new SizeGood 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

func NewSizeGoodWithDefaults

func NewSizeGoodWithDefaults() *SizeGood

NewSizeGoodWithDefaults instantiates a new SizeGood 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

func (*SizeGood) GetClubDiscount

func (o *SizeGood) GetClubDiscount() int32

GetClubDiscount returns the ClubDiscount field value if set, zero value otherwise.

func (*SizeGood) GetClubDiscountOk

func (o *SizeGood) GetClubDiscountOk() (*int32, bool)

GetClubDiscountOk returns a tuple with the ClubDiscount field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SizeGood) GetClubDiscountedPrice

func (o *SizeGood) GetClubDiscountedPrice() float32

GetClubDiscountedPrice returns the ClubDiscountedPrice field value if set, zero value otherwise.

func (*SizeGood) GetClubDiscountedPriceOk

func (o *SizeGood) GetClubDiscountedPriceOk() (*float32, bool)

GetClubDiscountedPriceOk returns a tuple with the ClubDiscountedPrice field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SizeGood) GetCurrencyIsoCode4217

func (o *SizeGood) GetCurrencyIsoCode4217() string

GetCurrencyIsoCode4217 returns the CurrencyIsoCode4217 field value if set, zero value otherwise.

func (*SizeGood) GetCurrencyIsoCode4217Ok

func (o *SizeGood) GetCurrencyIsoCode4217Ok() (*string, bool)

GetCurrencyIsoCode4217Ok returns a tuple with the CurrencyIsoCode4217 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SizeGood) GetDiscount

func (o *SizeGood) GetDiscount() int32

GetDiscount returns the Discount field value if set, zero value otherwise.

func (*SizeGood) GetDiscountOk

func (o *SizeGood) GetDiscountOk() (*int32, bool)

GetDiscountOk returns a tuple with the Discount field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SizeGood) GetDiscountedPrice

func (o *SizeGood) GetDiscountedPrice() float32

GetDiscountedPrice returns the DiscountedPrice field value if set, zero value otherwise.

func (*SizeGood) GetDiscountedPriceOk

func (o *SizeGood) GetDiscountedPriceOk() (*float32, bool)

GetDiscountedPriceOk returns a tuple with the DiscountedPrice field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SizeGood) GetEditableSizePrice

func (o *SizeGood) GetEditableSizePrice() bool

GetEditableSizePrice returns the EditableSizePrice field value if set, zero value otherwise.

func (*SizeGood) GetEditableSizePriceOk

func (o *SizeGood) GetEditableSizePriceOk() (*bool, bool)

GetEditableSizePriceOk returns a tuple with the EditableSizePrice field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SizeGood) GetIsBadTurnover

func (o *SizeGood) GetIsBadTurnover() bool

GetIsBadTurnover returns the IsBadTurnover field value if set, zero value otherwise.

func (*SizeGood) GetIsBadTurnoverOk

func (o *SizeGood) GetIsBadTurnoverOk() (*bool, bool)

GetIsBadTurnoverOk returns a tuple with the IsBadTurnover field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SizeGood) GetNmID

func (o *SizeGood) GetNmID() int32

GetNmID returns the NmID field value if set, zero value otherwise.

func (*SizeGood) GetNmIDOk

func (o *SizeGood) GetNmIDOk() (*int32, bool)

GetNmIDOk returns a tuple with the NmID field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SizeGood) GetPrice

func (o *SizeGood) GetPrice() int32

GetPrice returns the Price field value if set, zero value otherwise.

func (*SizeGood) GetPriceOk

func (o *SizeGood) GetPriceOk() (*int32, bool)

GetPriceOk returns a tuple with the Price field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SizeGood) GetSizeID

func (o *SizeGood) GetSizeID() int32

GetSizeID returns the SizeID field value if set, zero value otherwise.

func (*SizeGood) GetSizeIDOk

func (o *SizeGood) GetSizeIDOk() (*int32, bool)

GetSizeIDOk returns a tuple with the SizeID field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SizeGood) GetTechSizeName

func (o *SizeGood) GetTechSizeName() string

GetTechSizeName returns the TechSizeName field value if set, zero value otherwise.

func (*SizeGood) GetTechSizeNameOk

func (o *SizeGood) GetTechSizeNameOk() (*string, bool)

GetTechSizeNameOk returns a tuple with the TechSizeName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SizeGood) GetVendorCode

func (o *SizeGood) GetVendorCode() string

GetVendorCode returns the VendorCode field value if set, zero value otherwise.

func (*SizeGood) GetVendorCodeOk

func (o *SizeGood) GetVendorCodeOk() (*string, bool)

GetVendorCodeOk returns a tuple with the VendorCode field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SizeGood) HasClubDiscount

func (o *SizeGood) HasClubDiscount() bool

HasClubDiscount returns a boolean if a field has been set.

func (*SizeGood) HasClubDiscountedPrice

func (o *SizeGood) HasClubDiscountedPrice() bool

HasClubDiscountedPrice returns a boolean if a field has been set.

func (*SizeGood) HasCurrencyIsoCode4217

func (o *SizeGood) HasCurrencyIsoCode4217() bool

HasCurrencyIsoCode4217 returns a boolean if a field has been set.

func (*SizeGood) HasDiscount

func (o *SizeGood) HasDiscount() bool

HasDiscount returns a boolean if a field has been set.

func (*SizeGood) HasDiscountedPrice

func (o *SizeGood) HasDiscountedPrice() bool

HasDiscountedPrice returns a boolean if a field has been set.

func (*SizeGood) HasEditableSizePrice

func (o *SizeGood) HasEditableSizePrice() bool

HasEditableSizePrice returns a boolean if a field has been set.

func (*SizeGood) HasIsBadTurnover

func (o *SizeGood) HasIsBadTurnover() bool

HasIsBadTurnover returns a boolean if a field has been set.

func (*SizeGood) HasNmID

func (o *SizeGood) HasNmID() bool

HasNmID returns a boolean if a field has been set.

func (*SizeGood) HasPrice

func (o *SizeGood) HasPrice() bool

HasPrice returns a boolean if a field has been set.

func (*SizeGood) HasSizeID

func (o *SizeGood) HasSizeID() bool

HasSizeID returns a boolean if a field has been set.

func (*SizeGood) HasTechSizeName

func (o *SizeGood) HasTechSizeName() bool

HasTechSizeName returns a boolean if a field has been set.

func (*SizeGood) HasVendorCode

func (o *SizeGood) HasVendorCode() bool

HasVendorCode returns a boolean if a field has been set.

func (SizeGood) MarshalJSON

func (o SizeGood) MarshalJSON() ([]byte, error)

func (*SizeGood) SetClubDiscount

func (o *SizeGood) SetClubDiscount(v int32)

SetClubDiscount gets a reference to the given int32 and assigns it to the ClubDiscount field.

func (*SizeGood) SetClubDiscountedPrice

func (o *SizeGood) SetClubDiscountedPrice(v float32)

SetClubDiscountedPrice gets a reference to the given float32 and assigns it to the ClubDiscountedPrice field.

func (*SizeGood) SetCurrencyIsoCode4217

func (o *SizeGood) SetCurrencyIsoCode4217(v string)

SetCurrencyIsoCode4217 gets a reference to the given string and assigns it to the CurrencyIsoCode4217 field.

func (*SizeGood) SetDiscount

func (o *SizeGood) SetDiscount(v int32)

SetDiscount gets a reference to the given int32 and assigns it to the Discount field.

func (*SizeGood) SetDiscountedPrice

func (o *SizeGood) SetDiscountedPrice(v float32)

SetDiscountedPrice gets a reference to the given float32 and assigns it to the DiscountedPrice field.

func (*SizeGood) SetEditableSizePrice

func (o *SizeGood) SetEditableSizePrice(v bool)

SetEditableSizePrice gets a reference to the given bool and assigns it to the EditableSizePrice field.

func (*SizeGood) SetIsBadTurnover

func (o *SizeGood) SetIsBadTurnover(v bool)

SetIsBadTurnover gets a reference to the given bool and assigns it to the IsBadTurnover field.

func (*SizeGood) SetNmID

func (o *SizeGood) SetNmID(v int32)

SetNmID gets a reference to the given int32 and assigns it to the NmID field.

func (*SizeGood) SetPrice

func (o *SizeGood) SetPrice(v int32)

SetPrice gets a reference to the given int32 and assigns it to the Price field.

func (*SizeGood) SetSizeID

func (o *SizeGood) SetSizeID(v int32)

SetSizeID gets a reference to the given int32 and assigns it to the SizeID field.

func (*SizeGood) SetTechSizeName

func (o *SizeGood) SetTechSizeName(v string)

SetTechSizeName gets a reference to the given string and assigns it to the TechSizeName field.

func (*SizeGood) SetVendorCode

func (o *SizeGood) SetVendorCode(v string)

SetVendorCode gets a reference to the given string and assigns it to the VendorCode field.

func (SizeGood) ToMap

func (o SizeGood) ToMap() (map[string]interface{}, error)

type SizeGoodReq

type SizeGoodReq struct {
	// WB article
	NmID int32 `json:"nmID"`
	// Size ID. You can get the ID with the [Get products with prices](./work-with-products#tag/Prices-and-Discounts/paths/~1api~1v2~1list~1goods~1filter/get) and [Get products with prices by articles](./work-with-products#tag/Prices-and-Discounts/paths/~1api~1v2~1list~1goods~1filter/post) methods, the `sizeID` field. In the Content methods this is `chrtID` field
	SizeID int32 `json:"sizeID"`
	// Price. You can get the currency with the [Get products with prices](./work-with-products#tag/Prices-and-Discounts/paths/~1api~1v2~1list~1goods~1filter/get) and [Get products with prices by articles](./work-with-products#tag/Prices-and-Discounts/paths/~1api~1v2~1list~1goods~1filter/post) methods, the `currencyIsoCode4217` field
	Price int32 `json:"price"`
}

SizeGoodReq struct for SizeGoodReq

func NewSizeGoodReq

func NewSizeGoodReq(nmID int32, sizeID int32, price int32) *SizeGoodReq

NewSizeGoodReq instantiates a new SizeGoodReq 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

func NewSizeGoodReqWithDefaults

func NewSizeGoodReqWithDefaults() *SizeGoodReq

NewSizeGoodReqWithDefaults instantiates a new SizeGoodReq 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

func (*SizeGoodReq) GetNmID

func (o *SizeGoodReq) GetNmID() int32

GetNmID returns the NmID field value

func (*SizeGoodReq) GetNmIDOk

func (o *SizeGoodReq) GetNmIDOk() (*int32, bool)

GetNmIDOk returns a tuple with the NmID field value and a boolean to check if the value has been set.

func (*SizeGoodReq) GetPrice

func (o *SizeGoodReq) GetPrice() int32

GetPrice returns the Price field value

func (*SizeGoodReq) GetPriceOk

func (o *SizeGoodReq) GetPriceOk() (*int32, bool)

GetPriceOk returns a tuple with the Price field value and a boolean to check if the value has been set.

func (*SizeGoodReq) GetSizeID

func (o *SizeGoodReq) GetSizeID() int32

GetSizeID returns the SizeID field value

func (*SizeGoodReq) GetSizeIDOk

func (o *SizeGoodReq) GetSizeIDOk() (*int32, bool)

GetSizeIDOk returns a tuple with the SizeID field value and a boolean to check if the value has been set.

func (SizeGoodReq) MarshalJSON

func (o SizeGoodReq) MarshalJSON() ([]byte, error)

func (*SizeGoodReq) SetNmID

func (o *SizeGoodReq) SetNmID(v int32)

SetNmID sets field value

func (*SizeGoodReq) SetPrice

func (o *SizeGoodReq) SetPrice(v int32)

SetPrice sets field value

func (*SizeGoodReq) SetSizeID

func (o *SizeGoodReq) SetSizeID(v int32)

SetSizeID sets field value

func (SizeGoodReq) ToMap

func (o SizeGoodReq) ToMap() (map[string]interface{}, error)

func (*SizeGoodReq) UnmarshalJSON

func (o *SizeGoodReq) UnmarshalJSON(data []byte) (err error)

type StocksWarehouseErrorInner

type StocksWarehouseErrorInner struct {
	// Additional data enriching the error
	Data []StocksWarehouseErrorInnerDataInner `json:"data,omitempty"`
	// Error code
	Code *string `json:"code,omitempty"`
	// Error description
	Message *string `json:"message,omitempty"`
}

StocksWarehouseErrorInner struct for StocksWarehouseErrorInner

func NewStocksWarehouseErrorInner

func NewStocksWarehouseErrorInner() *StocksWarehouseErrorInner

NewStocksWarehouseErrorInner instantiates a new StocksWarehouseErrorInner 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

func NewStocksWarehouseErrorInnerWithDefaults

func NewStocksWarehouseErrorInnerWithDefaults() *StocksWarehouseErrorInner

NewStocksWarehouseErrorInnerWithDefaults instantiates a new StocksWarehouseErrorInner 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

func (*StocksWarehouseErrorInner) GetCode

func (o *StocksWarehouseErrorInner) GetCode() string

GetCode returns the Code field value if set, zero value otherwise.

func (*StocksWarehouseErrorInner) GetCodeOk

func (o *StocksWarehouseErrorInner) GetCodeOk() (*string, bool)

GetCodeOk returns a tuple with the Code field value if set, nil otherwise and a boolean to check if the value has been set.

func (*StocksWarehouseErrorInner) GetData

GetData returns the Data field value if set, zero value otherwise (both if not set or set to explicit null).

func (*StocksWarehouseErrorInner) GetDataOk

GetDataOk returns a tuple with the Data field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*StocksWarehouseErrorInner) GetMessage

func (o *StocksWarehouseErrorInner) GetMessage() string

GetMessage returns the Message field value if set, zero value otherwise.

func (*StocksWarehouseErrorInner) GetMessageOk

func (o *StocksWarehouseErrorInner) GetMessageOk() (*string, bool)

GetMessageOk returns a tuple with the Message field value if set, nil otherwise and a boolean to check if the value has been set.

func (*StocksWarehouseErrorInner) HasCode

func (o *StocksWarehouseErrorInner) HasCode() bool

HasCode returns a boolean if a field has been set.

func (*StocksWarehouseErrorInner) HasData

func (o *StocksWarehouseErrorInner) HasData() bool

HasData returns a boolean if a field has been set.

func (*StocksWarehouseErrorInner) HasMessage

func (o *StocksWarehouseErrorInner) HasMessage() bool

HasMessage returns a boolean if a field has been set.

func (StocksWarehouseErrorInner) MarshalJSON

func (o StocksWarehouseErrorInner) MarshalJSON() ([]byte, error)

func (*StocksWarehouseErrorInner) SetCode

func (o *StocksWarehouseErrorInner) SetCode(v string)

SetCode gets a reference to the given string and assigns it to the Code field.

func (*StocksWarehouseErrorInner) SetData

SetData gets a reference to the given []StocksWarehouseErrorInnerDataInner and assigns it to the Data field.

func (*StocksWarehouseErrorInner) SetMessage

func (o *StocksWarehouseErrorInner) SetMessage(v string)

SetMessage gets a reference to the given string and assigns it to the Message field.

func (StocksWarehouseErrorInner) ToMap

func (o StocksWarehouseErrorInner) ToMap() (map[string]interface{}, error)

type StocksWarehouseErrorInnerDataInner

type StocksWarehouseErrorInnerDataInner struct {
	// SKU
	Sku *string `json:"sku,omitempty"`
	// Size ID
	ChrtId *int32 `json:"chrtId,omitempty"`
	// Stock
	Amount *int32 `json:"amount,omitempty"`
}

StocksWarehouseErrorInnerDataInner struct for StocksWarehouseErrorInnerDataInner

func NewStocksWarehouseErrorInnerDataInner

func NewStocksWarehouseErrorInnerDataInner() *StocksWarehouseErrorInnerDataInner

NewStocksWarehouseErrorInnerDataInner instantiates a new StocksWarehouseErrorInnerDataInner 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

func NewStocksWarehouseErrorInnerDataInnerWithDefaults

func NewStocksWarehouseErrorInnerDataInnerWithDefaults() *StocksWarehouseErrorInnerDataInner

NewStocksWarehouseErrorInnerDataInnerWithDefaults instantiates a new StocksWarehouseErrorInnerDataInner 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

func (*StocksWarehouseErrorInnerDataInner) GetAmount

GetAmount returns the Amount field value if set, zero value otherwise.

func (*StocksWarehouseErrorInnerDataInner) GetAmountOk

func (o *StocksWarehouseErrorInnerDataInner) GetAmountOk() (*int32, bool)

GetAmountOk returns a tuple with the Amount field value if set, nil otherwise and a boolean to check if the value has been set.

func (*StocksWarehouseErrorInnerDataInner) GetChrtId

GetChrtId returns the ChrtId field value if set, zero value otherwise.

func (*StocksWarehouseErrorInnerDataInner) GetChrtIdOk

func (o *StocksWarehouseErrorInnerDataInner) GetChrtIdOk() (*int32, bool)

GetChrtIdOk returns a tuple with the ChrtId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*StocksWarehouseErrorInnerDataInner) GetSku

GetSku returns the Sku field value if set, zero value otherwise.

func (*StocksWarehouseErrorInnerDataInner) GetSkuOk

GetSkuOk returns a tuple with the Sku field value if set, nil otherwise and a boolean to check if the value has been set.

func (*StocksWarehouseErrorInnerDataInner) HasAmount

HasAmount returns a boolean if a field has been set.

func (*StocksWarehouseErrorInnerDataInner) HasChrtId

HasChrtId returns a boolean if a field has been set.

func (*StocksWarehouseErrorInnerDataInner) HasSku

HasSku returns a boolean if a field has been set.

func (StocksWarehouseErrorInnerDataInner) MarshalJSON

func (o StocksWarehouseErrorInnerDataInner) MarshalJSON() ([]byte, error)

func (*StocksWarehouseErrorInnerDataInner) SetAmount

func (o *StocksWarehouseErrorInnerDataInner) SetAmount(v int32)

SetAmount gets a reference to the given int32 and assigns it to the Amount field.

func (*StocksWarehouseErrorInnerDataInner) SetChrtId

func (o *StocksWarehouseErrorInnerDataInner) SetChrtId(v int32)

SetChrtId gets a reference to the given int32 and assigns it to the ChrtId field.

func (*StocksWarehouseErrorInnerDataInner) SetSku

SetSku gets a reference to the given string and assigns it to the Sku field.

func (StocksWarehouseErrorInnerDataInner) ToMap

func (o StocksWarehouseErrorInnerDataInner) ToMap() (map[string]interface{}, error)

type StoreContactRequestBody

type StoreContactRequestBody struct {
	Contacts []StoreContactRequestBodyContactsInner `json:"contacts,omitempty"`
}

StoreContactRequestBody Seller's warehouse contacts

func NewStoreContactRequestBody

func NewStoreContactRequestBody() *StoreContactRequestBody

NewStoreContactRequestBody instantiates a new StoreContactRequestBody 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

func NewStoreContactRequestBodyWithDefaults

func NewStoreContactRequestBodyWithDefaults() *StoreContactRequestBody

NewStoreContactRequestBodyWithDefaults instantiates a new StoreContactRequestBody 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

func (*StoreContactRequestBody) GetContacts

GetContacts returns the Contacts field value if set, zero value otherwise.

func (*StoreContactRequestBody) GetContactsOk

GetContactsOk returns a tuple with the Contacts field value if set, nil otherwise and a boolean to check if the value has been set.

func (*StoreContactRequestBody) HasContacts

func (o *StoreContactRequestBody) HasContacts() bool

HasContacts returns a boolean if a field has been set.

func (StoreContactRequestBody) MarshalJSON

func (o StoreContactRequestBody) MarshalJSON() ([]byte, error)

func (*StoreContactRequestBody) SetContacts

SetContacts gets a reference to the given []StoreContactRequestBodyContactsInner and assigns it to the Contacts field.

func (StoreContactRequestBody) ToMap

func (o StoreContactRequestBody) ToMap() (map[string]interface{}, error)

type StoreContactRequestBodyContactsInner

type StoreContactRequestBodyContactsInner struct {
	// Comment
	Comment *string `json:"comment,omitempty"`
	// Phone number.<br>Supported country codes:   - `+7` — Russia, Kazakhstan   - `+374` — Armenia   - `+375` — Belarus   - `+996` — Kyrgyzstan
	Phone *string `json:"phone,omitempty"`
}

StoreContactRequestBodyContactsInner struct for StoreContactRequestBodyContactsInner

func NewStoreContactRequestBodyContactsInner

func NewStoreContactRequestBodyContactsInner() *StoreContactRequestBodyContactsInner

NewStoreContactRequestBodyContactsInner instantiates a new StoreContactRequestBodyContactsInner 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

func NewStoreContactRequestBodyContactsInnerWithDefaults

func NewStoreContactRequestBodyContactsInnerWithDefaults() *StoreContactRequestBodyContactsInner

NewStoreContactRequestBodyContactsInnerWithDefaults instantiates a new StoreContactRequestBodyContactsInner 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

func (*StoreContactRequestBodyContactsInner) GetComment

GetComment returns the Comment field value if set, zero value otherwise.

func (*StoreContactRequestBodyContactsInner) GetCommentOk

func (o *StoreContactRequestBodyContactsInner) GetCommentOk() (*string, bool)

GetCommentOk returns a tuple with the Comment field value if set, nil otherwise and a boolean to check if the value has been set.

func (*StoreContactRequestBodyContactsInner) GetPhone

GetPhone returns the Phone field value if set, zero value otherwise.

func (*StoreContactRequestBodyContactsInner) GetPhoneOk

func (o *StoreContactRequestBodyContactsInner) GetPhoneOk() (*string, bool)

GetPhoneOk returns a tuple with the Phone field value if set, nil otherwise and a boolean to check if the value has been set.

func (*StoreContactRequestBodyContactsInner) HasComment

HasComment returns a boolean if a field has been set.

func (*StoreContactRequestBodyContactsInner) HasPhone

HasPhone returns a boolean if a field has been set.

func (StoreContactRequestBodyContactsInner) MarshalJSON

func (o StoreContactRequestBodyContactsInner) MarshalJSON() ([]byte, error)

func (*StoreContactRequestBodyContactsInner) SetComment

SetComment gets a reference to the given string and assigns it to the Comment field.

func (*StoreContactRequestBodyContactsInner) SetPhone

SetPhone gets a reference to the given string and assigns it to the Phone field.

func (StoreContactRequestBodyContactsInner) ToMap

func (o StoreContactRequestBodyContactsInner) ToMap() (map[string]interface{}, error)

type SupplierTaskMetadata

type SupplierTaskMetadata struct {
	// Upload ID
	UploadID *int32 `json:"uploadID,omitempty"`
	// Upload status:   * `3` — processed, no errors in products, prices and discounts were updated   * `4` — canceled   * `5` — processed, but some product have errors. For other products prices and discounts were updated. You can get errors with the [Processed upload details](./work-with-products#tag/Prices-and-Discounts/paths/~1api~1v2~1history~1goods~1task/get) method   * `6` — processed, but all product have errors. You can get them with the [Processed upload details](./work-with-products#tag/Prices-and-Discounts/paths/~1api~1v2~1history~1goods~1task/get) method
	Status *int32 `json:"status,omitempty"`
	// Date and time of the upload creation
	UploadDate *time.Time `json:"uploadDate,omitempty"`
	// Date and time when the upload processing was started
	ActivationDate *time.Time `json:"activationDate,omitempty"`
	// Total number of products
	OverAllGoodsNumber *int32 `json:"overAllGoodsNumber,omitempty"`
	// Number products without errors
	SuccessGoodsNumber *int32 `json:"successGoodsNumber,omitempty"`
}

SupplierTaskMetadata Response data

func NewSupplierTaskMetadata

func NewSupplierTaskMetadata() *SupplierTaskMetadata

NewSupplierTaskMetadata instantiates a new SupplierTaskMetadata 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

func NewSupplierTaskMetadataWithDefaults

func NewSupplierTaskMetadataWithDefaults() *SupplierTaskMetadata

NewSupplierTaskMetadataWithDefaults instantiates a new SupplierTaskMetadata 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

func (*SupplierTaskMetadata) GetActivationDate

func (o *SupplierTaskMetadata) GetActivationDate() time.Time

GetActivationDate returns the ActivationDate field value if set, zero value otherwise.

func (*SupplierTaskMetadata) GetActivationDateOk

func (o *SupplierTaskMetadata) GetActivationDateOk() (*time.Time, bool)

GetActivationDateOk returns a tuple with the ActivationDate field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SupplierTaskMetadata) GetOverAllGoodsNumber

func (o *SupplierTaskMetadata) GetOverAllGoodsNumber() int32

GetOverAllGoodsNumber returns the OverAllGoodsNumber field value if set, zero value otherwise.

func (*SupplierTaskMetadata) GetOverAllGoodsNumberOk

func (o *SupplierTaskMetadata) GetOverAllGoodsNumberOk() (*int32, bool)

GetOverAllGoodsNumberOk returns a tuple with the OverAllGoodsNumber field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SupplierTaskMetadata) GetStatus

func (o *SupplierTaskMetadata) GetStatus() int32

GetStatus returns the Status field value if set, zero value otherwise.

func (*SupplierTaskMetadata) GetStatusOk

func (o *SupplierTaskMetadata) GetStatusOk() (*int32, bool)

GetStatusOk returns a tuple with the Status field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SupplierTaskMetadata) GetSuccessGoodsNumber

func (o *SupplierTaskMetadata) GetSuccessGoodsNumber() int32

GetSuccessGoodsNumber returns the SuccessGoodsNumber field value if set, zero value otherwise.

func (*SupplierTaskMetadata) GetSuccessGoodsNumberOk

func (o *SupplierTaskMetadata) GetSuccessGoodsNumberOk() (*int32, bool)

GetSuccessGoodsNumberOk returns a tuple with the SuccessGoodsNumber field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SupplierTaskMetadata) GetUploadDate

func (o *SupplierTaskMetadata) GetUploadDate() time.Time

GetUploadDate returns the UploadDate field value if set, zero value otherwise.

func (*SupplierTaskMetadata) GetUploadDateOk

func (o *SupplierTaskMetadata) GetUploadDateOk() (*time.Time, bool)

GetUploadDateOk returns a tuple with the UploadDate field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SupplierTaskMetadata) GetUploadID

func (o *SupplierTaskMetadata) GetUploadID() int32

GetUploadID returns the UploadID field value if set, zero value otherwise.

func (*SupplierTaskMetadata) GetUploadIDOk

func (o *SupplierTaskMetadata) GetUploadIDOk() (*int32, bool)

GetUploadIDOk returns a tuple with the UploadID field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SupplierTaskMetadata) HasActivationDate

func (o *SupplierTaskMetadata) HasActivationDate() bool

HasActivationDate returns a boolean if a field has been set.

func (*SupplierTaskMetadata) HasOverAllGoodsNumber

func (o *SupplierTaskMetadata) HasOverAllGoodsNumber() bool

HasOverAllGoodsNumber returns a boolean if a field has been set.

func (*SupplierTaskMetadata) HasStatus

func (o *SupplierTaskMetadata) HasStatus() bool

HasStatus returns a boolean if a field has been set.

func (*SupplierTaskMetadata) HasSuccessGoodsNumber

func (o *SupplierTaskMetadata) HasSuccessGoodsNumber() bool

HasSuccessGoodsNumber returns a boolean if a field has been set.

func (*SupplierTaskMetadata) HasUploadDate

func (o *SupplierTaskMetadata) HasUploadDate() bool

HasUploadDate returns a boolean if a field has been set.

func (*SupplierTaskMetadata) HasUploadID

func (o *SupplierTaskMetadata) HasUploadID() bool

HasUploadID returns a boolean if a field has been set.

func (SupplierTaskMetadata) MarshalJSON

func (o SupplierTaskMetadata) MarshalJSON() ([]byte, error)

func (*SupplierTaskMetadata) SetActivationDate

func (o *SupplierTaskMetadata) SetActivationDate(v time.Time)

SetActivationDate gets a reference to the given time.Time and assigns it to the ActivationDate field.

func (*SupplierTaskMetadata) SetOverAllGoodsNumber

func (o *SupplierTaskMetadata) SetOverAllGoodsNumber(v int32)

SetOverAllGoodsNumber gets a reference to the given int32 and assigns it to the OverAllGoodsNumber field.

func (*SupplierTaskMetadata) SetStatus

func (o *SupplierTaskMetadata) SetStatus(v int32)

SetStatus gets a reference to the given int32 and assigns it to the Status field.

func (*SupplierTaskMetadata) SetSuccessGoodsNumber

func (o *SupplierTaskMetadata) SetSuccessGoodsNumber(v int32)

SetSuccessGoodsNumber gets a reference to the given int32 and assigns it to the SuccessGoodsNumber field.

func (*SupplierTaskMetadata) SetUploadDate

func (o *SupplierTaskMetadata) SetUploadDate(v time.Time)

SetUploadDate gets a reference to the given time.Time and assigns it to the UploadDate field.

func (*SupplierTaskMetadata) SetUploadID

func (o *SupplierTaskMetadata) SetUploadID(v int32)

SetUploadID gets a reference to the given int32 and assigns it to the UploadID field.

func (SupplierTaskMetadata) ToMap

func (o SupplierTaskMetadata) ToMap() (map[string]interface{}, error)

type SupplierTaskMetadataBuffer

type SupplierTaskMetadataBuffer struct {
	// Upload ID
	UploadID *int32 `json:"uploadID,omitempty"`
	// Upload status: `1` — processing
	Status *int32 `json:"status,omitempty"`
	// Date and time of the upload creation
	UploadDate *time.Time `json:"uploadDate,omitempty"`
	// Date and time when the upload processing was started
	ActivationDate *time.Time `json:"activationDate,omitempty"`
	// Total number of products
	OverAllGoodsNumber *int32 `json:"overAllGoodsNumber,omitempty"`
	// Number products without errors (`0` because the upload is processing)
	SuccessGoodsNumber *int32 `json:"successGoodsNumber,omitempty"`
}

SupplierTaskMetadataBuffer Response data

func NewSupplierTaskMetadataBuffer

func NewSupplierTaskMetadataBuffer() *SupplierTaskMetadataBuffer

NewSupplierTaskMetadataBuffer instantiates a new SupplierTaskMetadataBuffer 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

func NewSupplierTaskMetadataBufferWithDefaults

func NewSupplierTaskMetadataBufferWithDefaults() *SupplierTaskMetadataBuffer

NewSupplierTaskMetadataBufferWithDefaults instantiates a new SupplierTaskMetadataBuffer 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

func (*SupplierTaskMetadataBuffer) GetActivationDate

func (o *SupplierTaskMetadataBuffer) GetActivationDate() time.Time

GetActivationDate returns the ActivationDate field value if set, zero value otherwise.

func (*SupplierTaskMetadataBuffer) GetActivationDateOk

func (o *SupplierTaskMetadataBuffer) GetActivationDateOk() (*time.Time, bool)

GetActivationDateOk returns a tuple with the ActivationDate field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SupplierTaskMetadataBuffer) GetOverAllGoodsNumber

func (o *SupplierTaskMetadataBuffer) GetOverAllGoodsNumber() int32

GetOverAllGoodsNumber returns the OverAllGoodsNumber field value if set, zero value otherwise.

func (*SupplierTaskMetadataBuffer) GetOverAllGoodsNumberOk

func (o *SupplierTaskMetadataBuffer) GetOverAllGoodsNumberOk() (*int32, bool)

GetOverAllGoodsNumberOk returns a tuple with the OverAllGoodsNumber field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SupplierTaskMetadataBuffer) GetStatus

func (o *SupplierTaskMetadataBuffer) GetStatus() int32

GetStatus returns the Status field value if set, zero value otherwise.

func (*SupplierTaskMetadataBuffer) GetStatusOk

func (o *SupplierTaskMetadataBuffer) GetStatusOk() (*int32, bool)

GetStatusOk returns a tuple with the Status field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SupplierTaskMetadataBuffer) GetSuccessGoodsNumber

func (o *SupplierTaskMetadataBuffer) GetSuccessGoodsNumber() int32

GetSuccessGoodsNumber returns the SuccessGoodsNumber field value if set, zero value otherwise.

func (*SupplierTaskMetadataBuffer) GetSuccessGoodsNumberOk

func (o *SupplierTaskMetadataBuffer) GetSuccessGoodsNumberOk() (*int32, bool)

GetSuccessGoodsNumberOk returns a tuple with the SuccessGoodsNumber field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SupplierTaskMetadataBuffer) GetUploadDate

func (o *SupplierTaskMetadataBuffer) GetUploadDate() time.Time

GetUploadDate returns the UploadDate field value if set, zero value otherwise.

func (*SupplierTaskMetadataBuffer) GetUploadDateOk

func (o *SupplierTaskMetadataBuffer) GetUploadDateOk() (*time.Time, bool)

GetUploadDateOk returns a tuple with the UploadDate field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SupplierTaskMetadataBuffer) GetUploadID

func (o *SupplierTaskMetadataBuffer) GetUploadID() int32

GetUploadID returns the UploadID field value if set, zero value otherwise.

func (*SupplierTaskMetadataBuffer) GetUploadIDOk

func (o *SupplierTaskMetadataBuffer) GetUploadIDOk() (*int32, bool)

GetUploadIDOk returns a tuple with the UploadID field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SupplierTaskMetadataBuffer) HasActivationDate

func (o *SupplierTaskMetadataBuffer) HasActivationDate() bool

HasActivationDate returns a boolean if a field has been set.

func (*SupplierTaskMetadataBuffer) HasOverAllGoodsNumber

func (o *SupplierTaskMetadataBuffer) HasOverAllGoodsNumber() bool

HasOverAllGoodsNumber returns a boolean if a field has been set.

func (*SupplierTaskMetadataBuffer) HasStatus

func (o *SupplierTaskMetadataBuffer) HasStatus() bool

HasStatus returns a boolean if a field has been set.

func (*SupplierTaskMetadataBuffer) HasSuccessGoodsNumber

func (o *SupplierTaskMetadataBuffer) HasSuccessGoodsNumber() bool

HasSuccessGoodsNumber returns a boolean if a field has been set.

func (*SupplierTaskMetadataBuffer) HasUploadDate

func (o *SupplierTaskMetadataBuffer) HasUploadDate() bool

HasUploadDate returns a boolean if a field has been set.

func (*SupplierTaskMetadataBuffer) HasUploadID

func (o *SupplierTaskMetadataBuffer) HasUploadID() bool

HasUploadID returns a boolean if a field has been set.

func (SupplierTaskMetadataBuffer) MarshalJSON

func (o SupplierTaskMetadataBuffer) MarshalJSON() ([]byte, error)

func (*SupplierTaskMetadataBuffer) SetActivationDate

func (o *SupplierTaskMetadataBuffer) SetActivationDate(v time.Time)

SetActivationDate gets a reference to the given time.Time and assigns it to the ActivationDate field.

func (*SupplierTaskMetadataBuffer) SetOverAllGoodsNumber

func (o *SupplierTaskMetadataBuffer) SetOverAllGoodsNumber(v int32)

SetOverAllGoodsNumber gets a reference to the given int32 and assigns it to the OverAllGoodsNumber field.

func (*SupplierTaskMetadataBuffer) SetStatus

func (o *SupplierTaskMetadataBuffer) SetStatus(v int32)

SetStatus gets a reference to the given int32 and assigns it to the Status field.

func (*SupplierTaskMetadataBuffer) SetSuccessGoodsNumber

func (o *SupplierTaskMetadataBuffer) SetSuccessGoodsNumber(v int32)

SetSuccessGoodsNumber gets a reference to the given int32 and assigns it to the SuccessGoodsNumber field.

func (*SupplierTaskMetadataBuffer) SetUploadDate

func (o *SupplierTaskMetadataBuffer) SetUploadDate(v time.Time)

SetUploadDate gets a reference to the given time.Time and assigns it to the UploadDate field.

func (*SupplierTaskMetadataBuffer) SetUploadID

func (o *SupplierTaskMetadataBuffer) SetUploadID(v int32)

SetUploadID gets a reference to the given int32 and assigns it to the UploadID field.

func (SupplierTaskMetadataBuffer) ToMap

func (o SupplierTaskMetadataBuffer) ToMap() (map[string]interface{}, error)

type SwaggerPublicErrorsCursorInput

type SwaggerPublicErrorsCursorInput struct {
	// Number of batches in the response
	Limit *float32 `json:"limit,omitempty"`
	// Date and time of generation of the last batch in the response to the previous request
	UpdatedAt *time.Time `json:"updatedAt,omitempty"`
	// The ID of the last batch in the response to the previous request
	BatchUUID *string `json:"batchUUID,omitempty"`
}

SwaggerPublicErrorsCursorInput Paginator

func NewSwaggerPublicErrorsCursorInput

func NewSwaggerPublicErrorsCursorInput() *SwaggerPublicErrorsCursorInput

NewSwaggerPublicErrorsCursorInput instantiates a new SwaggerPublicErrorsCursorInput 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

func NewSwaggerPublicErrorsCursorInputWithDefaults

func NewSwaggerPublicErrorsCursorInputWithDefaults() *SwaggerPublicErrorsCursorInput

NewSwaggerPublicErrorsCursorInputWithDefaults instantiates a new SwaggerPublicErrorsCursorInput 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

func (*SwaggerPublicErrorsCursorInput) GetBatchUUID

func (o *SwaggerPublicErrorsCursorInput) GetBatchUUID() string

GetBatchUUID returns the BatchUUID field value if set, zero value otherwise.

func (*SwaggerPublicErrorsCursorInput) GetBatchUUIDOk

func (o *SwaggerPublicErrorsCursorInput) GetBatchUUIDOk() (*string, bool)

GetBatchUUIDOk returns a tuple with the BatchUUID field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SwaggerPublicErrorsCursorInput) GetLimit

GetLimit returns the Limit field value if set, zero value otherwise.

func (*SwaggerPublicErrorsCursorInput) GetLimitOk

func (o *SwaggerPublicErrorsCursorInput) GetLimitOk() (*float32, bool)

GetLimitOk returns a tuple with the Limit field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SwaggerPublicErrorsCursorInput) GetUpdatedAt

func (o *SwaggerPublicErrorsCursorInput) GetUpdatedAt() time.Time

GetUpdatedAt returns the UpdatedAt field value if set, zero value otherwise.

func (*SwaggerPublicErrorsCursorInput) GetUpdatedAtOk

func (o *SwaggerPublicErrorsCursorInput) GetUpdatedAtOk() (*time.Time, bool)

GetUpdatedAtOk returns a tuple with the UpdatedAt field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SwaggerPublicErrorsCursorInput) HasBatchUUID

func (o *SwaggerPublicErrorsCursorInput) HasBatchUUID() bool

HasBatchUUID returns a boolean if a field has been set.

func (*SwaggerPublicErrorsCursorInput) HasLimit

func (o *SwaggerPublicErrorsCursorInput) HasLimit() bool

HasLimit returns a boolean if a field has been set.

func (*SwaggerPublicErrorsCursorInput) HasUpdatedAt

func (o *SwaggerPublicErrorsCursorInput) HasUpdatedAt() bool

HasUpdatedAt returns a boolean if a field has been set.

func (SwaggerPublicErrorsCursorInput) MarshalJSON

func (o SwaggerPublicErrorsCursorInput) MarshalJSON() ([]byte, error)

func (*SwaggerPublicErrorsCursorInput) SetBatchUUID

func (o *SwaggerPublicErrorsCursorInput) SetBatchUUID(v string)

SetBatchUUID gets a reference to the given string and assigns it to the BatchUUID field.

func (*SwaggerPublicErrorsCursorInput) SetLimit

func (o *SwaggerPublicErrorsCursorInput) SetLimit(v float32)

SetLimit gets a reference to the given float32 and assigns it to the Limit field.

func (*SwaggerPublicErrorsCursorInput) SetUpdatedAt

func (o *SwaggerPublicErrorsCursorInput) SetUpdatedAt(v time.Time)

SetUpdatedAt gets a reference to the given time.Time and assigns it to the UpdatedAt field.

func (SwaggerPublicErrorsCursorInput) ToMap

func (o SwaggerPublicErrorsCursorInput) ToMap() (map[string]interface{}, error)

type SwaggerPublicErrorsOrderV2

type SwaggerPublicErrorsOrderV2 struct {
	// - `false` — sort in descending - `true` — sort in ascending
	Ascending *bool `json:"ascending,omitempty"`
}

SwaggerPublicErrorsOrderV2 The order of return of batches

func NewSwaggerPublicErrorsOrderV2

func NewSwaggerPublicErrorsOrderV2() *SwaggerPublicErrorsOrderV2

NewSwaggerPublicErrorsOrderV2 instantiates a new SwaggerPublicErrorsOrderV2 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

func NewSwaggerPublicErrorsOrderV2WithDefaults

func NewSwaggerPublicErrorsOrderV2WithDefaults() *SwaggerPublicErrorsOrderV2

NewSwaggerPublicErrorsOrderV2WithDefaults instantiates a new SwaggerPublicErrorsOrderV2 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

func (*SwaggerPublicErrorsOrderV2) GetAscending

func (o *SwaggerPublicErrorsOrderV2) GetAscending() bool

GetAscending returns the Ascending field value if set, zero value otherwise.

func (*SwaggerPublicErrorsOrderV2) GetAscendingOk

func (o *SwaggerPublicErrorsOrderV2) GetAscendingOk() (*bool, bool)

GetAscendingOk returns a tuple with the Ascending field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SwaggerPublicErrorsOrderV2) HasAscending

func (o *SwaggerPublicErrorsOrderV2) HasAscending() bool

HasAscending returns a boolean if a field has been set.

func (SwaggerPublicErrorsOrderV2) MarshalJSON

func (o SwaggerPublicErrorsOrderV2) MarshalJSON() ([]byte, error)

func (*SwaggerPublicErrorsOrderV2) SetAscending

func (o *SwaggerPublicErrorsOrderV2) SetAscending(v bool)

SetAscending gets a reference to the given bool and assigns it to the Ascending field.

func (SwaggerPublicErrorsOrderV2) ToMap

func (o SwaggerPublicErrorsOrderV2) ToMap() (map[string]interface{}, error)

type TagsAPIService

type TagsAPIService service

TagsAPIService TagsAPI service

func (*TagsAPIService) ContentV2TagIdDelete

func (a *TagsAPIService) ContentV2TagIdDelete(ctx context.Context, id int32) ApiContentV2TagIdDeleteRequest

ContentV2TagIdDelete Delete the Tag

Deletes the tag

<div class="description_limit"> <a href="/openapi/api-information#tag/Introduction/Rate-Limits">Request limit</a> per one seller's account for all methods in the <strong>Content</strong> category:

| Period | Limit | Interval | Burst | | --- | --- | --- | --- | | 1 min | 100 requests | 600 ms | 5 requests |

Exceptions are the methods: <ul>

<li><a href="/openapi/work-with-products#tag/Creating-Product-Cards/paths/~1content~1v2~1cards~1upload/post">creating product cards</a></li>
<li><a href="/openapi/work-with-products#tag/Creating-Product-Cards/paths/~1content~1v2~1cards~1upload~1add/post">creating product cards with merge</a></li>
<li><a href="/openapi/work-with-products#tag/Product-Cards/paths/~1content~1v2~1cards~1update/post">editing product cards</a></li>
<li><a href="/openapi/work-with-products#tag/Product-Cards/paths/~1content~1v2~1cards~1error~1list/post">getting failed product cards with errors</a></li>
<li><a href="/openapi/work-with-products#tag/Product-Cards/paths/~1content~1v2~1cards~1delete~1trash/post">transfering product card to trash</a></li>
<li><a href="/openapi/work-with-products#tag/Product-Cards/paths/~1content~1v2~1cards~1recover/post">recovering product card from trash</a></li>

</ul> </div>

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id Numeric tag ID
@return ApiContentV2TagIdDeleteRequest

func (*TagsAPIService) ContentV2TagIdDeleteExecute

func (a *TagsAPIService) ContentV2TagIdDeleteExecute(r ApiContentV2TagIdDeleteRequest) (*ResponseContentError, *http.Response, error)

Execute executes the request

@return ResponseContentError

func (*TagsAPIService) ContentV2TagIdPatch

func (a *TagsAPIService) ContentV2TagIdPatch(ctx context.Context, id int32) ApiContentV2TagIdPatchRequest

ContentV2TagIdPatch Update the Tag

Changes tag data: name and color

<div class="description_limit"> <a href="/openapi/api-information#tag/Introduction/Rate-Limits">Request limit</a> per one seller's account for all methods in the <strong>Content</strong> category:

| Period | Limit | Interval | Burst | | --- | --- | --- | --- | | 1 min | 100 requests | 600 ms | 5 requests |

Exceptions are the methods: <ul>

<li><a href="/openapi/work-with-products#tag/Creating-Product-Cards/paths/~1content~1v2~1cards~1upload/post">creating product cards</a></li>
<li><a href="/openapi/work-with-products#tag/Creating-Product-Cards/paths/~1content~1v2~1cards~1upload~1add/post">creating product cards with merge</a></li>
<li><a href="/openapi/work-with-products#tag/Product-Cards/paths/~1content~1v2~1cards~1update/post">editing product cards</a></li>
<li><a href="/openapi/work-with-products#tag/Product-Cards/paths/~1content~1v2~1cards~1error~1list/post">getting failed product cards with errors</a></li>
<li><a href="/openapi/work-with-products#tag/Product-Cards/paths/~1content~1v2~1cards~1delete~1trash/post">transfering product card to trash</a></li>
<li><a href="/openapi/work-with-products#tag/Product-Cards/paths/~1content~1v2~1cards~1recover/post">recovering product card from trash</a></li>

</ul> </div>

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id Numeric tag ID
@return ApiContentV2TagIdPatchRequest

func (*TagsAPIService) ContentV2TagIdPatchExecute

Execute executes the request

@return ResponseContentError

func (*TagsAPIService) ContentV2TagNomenclatureLinkPost

func (a *TagsAPIService) ContentV2TagNomenclatureLinkPost(ctx context.Context) ApiContentV2TagNomenclatureLinkPostRequest

ContentV2TagNomenclatureLinkPost Tag Management in the Product Card

The method allows to add tags to the product card and remove tags from the product card.<br> When removing a tag from a product card, the tag itself is not removed.<br> It is possible to add 15 tags to a product card.

<div class="description_limit"> <a href="/openapi/api-information#tag/Introduction/Rate-Limits">Request limit</a> per one seller's account for all methods in the <strong>Content</strong> category:

| Period | Limit | Interval | Burst | | --- | --- | --- | --- | | 1 min | 100 requests | 600 ms | 5 requests |

Exceptions are the methods: <ul>

<li><a href="/openapi/work-with-products#tag/Creating-Product-Cards/paths/~1content~1v2~1cards~1upload/post">creating product cards</a></li>
<li><a href="/openapi/work-with-products#tag/Creating-Product-Cards/paths/~1content~1v2~1cards~1upload~1add/post">creating product cards with merge</a></li>
<li><a href="/openapi/work-with-products#tag/Product-Cards/paths/~1content~1v2~1cards~1update/post">editing product cards</a></li>
<li><a href="/openapi/work-with-products#tag/Product-Cards/paths/~1content~1v2~1cards~1error~1list/post">getting failed product cards with errors</a></li>
<li><a href="/openapi/work-with-products#tag/Product-Cards/paths/~1content~1v2~1cards~1delete~1trash/post">transfering product card to trash</a></li>
<li><a href="/openapi/work-with-products#tag/Product-Cards/paths/~1content~1v2~1cards~1recover/post">recovering product card from trash</a></li>

</ul> </div>

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiContentV2TagNomenclatureLinkPostRequest

func (*TagsAPIService) ContentV2TagNomenclatureLinkPostExecute

func (a *TagsAPIService) ContentV2TagNomenclatureLinkPostExecute(r ApiContentV2TagNomenclatureLinkPostRequest) (*ResponseContentError, *http.Response, error)

Execute executes the request

@return ResponseContentError

func (*TagsAPIService) ContentV2TagPost

func (a *TagsAPIService) ContentV2TagPost(ctx context.Context) ApiContentV2TagPostRequest

ContentV2TagPost Create a Tag

Creates a tag.

It is possible to create 15 tags.

The maximum length of a tag is 15 characters

<div class="description_limit"> <a href="/openapi/api-information#tag/Introduction/Rate-Limits">Request limit</a> per one seller's account for all methods in the <strong>Content</strong> category:

| Period | Limit | Interval | Burst | | --- | --- | --- | --- | | 1 min | 100 requests | 600 ms | 5 requests |

Exceptions are the methods: <ul>

<li><a href="/openapi/work-with-products#tag/Creating-Product-Cards/paths/~1content~1v2~1cards~1upload/post">creating product cards</a></li>
<li><a href="/openapi/work-with-products#tag/Creating-Product-Cards/paths/~1content~1v2~1cards~1upload~1add/post">creating product cards with merge</a></li>
<li><a href="/openapi/work-with-products#tag/Product-Cards/paths/~1content~1v2~1cards~1update/post">editing product cards</a></li>
<li><a href="/openapi/work-with-products#tag/Product-Cards/paths/~1content~1v2~1cards~1error~1list/post">getting failed product cards with errors</a></li>
<li><a href="/openapi/work-with-products#tag/Product-Cards/paths/~1content~1v2~1cards~1delete~1trash/post">transfering product card to trash</a></li>
<li><a href="/openapi/work-with-products#tag/Product-Cards/paths/~1content~1v2~1cards~1recover/post">recovering product card from trash</a></li>

</ul> </div>

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiContentV2TagPostRequest

func (*TagsAPIService) ContentV2TagPostExecute

Execute executes the request

@return ResponseContentError

func (*TagsAPIService) ContentV2TagsGet

func (a *TagsAPIService) ContentV2TagsGet(ctx context.Context) ApiContentV2TagsGetRequest

ContentV2TagsGet Tags List

Returns seller's tags list

<div class="description_limit"> <a href="/openapi/api-information#tag/Introduction/Rate-Limits">Request limit</a> per one seller's account for all methods in the <strong>Content</strong> category:

| Period | Limit | Interval | Burst | | --- | --- | --- | --- | | 1 min | 100 requests | 600 ms | 5 requests |

Exceptions are the methods: <ul>

<li><a href="/openapi/work-with-products#tag/Creating-Product-Cards/paths/~1content~1v2~1cards~1upload/post">creating product cards</a></li>
<li><a href="/openapi/work-with-products#tag/Creating-Product-Cards/paths/~1content~1v2~1cards~1upload~1add/post">creating product cards with merge</a></li>
<li><a href="/openapi/work-with-products#tag/Product-Cards/paths/~1content~1v2~1cards~1update/post">editing product cards</a></li>
<li><a href="/openapi/work-with-products#tag/Product-Cards/paths/~1content~1v2~1cards~1error~1list/post">getting failed product cards with errors</a></li>
<li><a href="/openapi/work-with-products#tag/Product-Cards/paths/~1content~1v2~1cards~1delete~1trash/post">transfering product card to trash</a></li>
<li><a href="/openapi/work-with-products#tag/Product-Cards/paths/~1content~1v2~1cards~1recover/post">recovering product card from trash</a></li>

</ul> </div>

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiContentV2TagsGetRequest

func (*TagsAPIService) ContentV2TagsGetExecute

Execute executes the request

@return ContentV2TagsGet200Response

type TaskCreated

type TaskCreated struct {
	Data *TaskCreatedData `json:"data,omitempty"`
	// Error flag
	Error *bool `json:"error,omitempty"`
	// Error text
	ErrorText *string `json:"errorText,omitempty"`
}

TaskCreated struct for TaskCreated

func NewTaskCreated

func NewTaskCreated() *TaskCreated

NewTaskCreated instantiates a new TaskCreated 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

func NewTaskCreatedWithDefaults

func NewTaskCreatedWithDefaults() *TaskCreated

NewTaskCreatedWithDefaults instantiates a new TaskCreated 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

func (*TaskCreated) GetData

func (o *TaskCreated) GetData() TaskCreatedData

GetData returns the Data field value if set, zero value otherwise.

func (*TaskCreated) GetDataOk

func (o *TaskCreated) GetDataOk() (*TaskCreatedData, bool)

GetDataOk returns a tuple with the Data field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TaskCreated) GetError

func (o *TaskCreated) GetError() bool

GetError returns the Error field value if set, zero value otherwise.

func (*TaskCreated) GetErrorOk

func (o *TaskCreated) GetErrorOk() (*bool, bool)

GetErrorOk returns a tuple with the Error field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TaskCreated) GetErrorText

func (o *TaskCreated) GetErrorText() string

GetErrorText returns the ErrorText field value if set, zero value otherwise.

func (*TaskCreated) GetErrorTextOk

func (o *TaskCreated) GetErrorTextOk() (*string, bool)

GetErrorTextOk returns a tuple with the ErrorText field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TaskCreated) HasData

func (o *TaskCreated) HasData() bool

HasData returns a boolean if a field has been set.

func (*TaskCreated) HasError

func (o *TaskCreated) HasError() bool

HasError returns a boolean if a field has been set.

func (*TaskCreated) HasErrorText

func (o *TaskCreated) HasErrorText() bool

HasErrorText returns a boolean if a field has been set.

func (TaskCreated) MarshalJSON

func (o TaskCreated) MarshalJSON() ([]byte, error)

func (*TaskCreated) SetData

func (o *TaskCreated) SetData(v TaskCreatedData)

SetData gets a reference to the given TaskCreatedData and assigns it to the Data field.

func (*TaskCreated) SetError

func (o *TaskCreated) SetError(v bool)

SetError gets a reference to the given bool and assigns it to the Error field.

func (*TaskCreated) SetErrorText

func (o *TaskCreated) SetErrorText(v string)

SetErrorText gets a reference to the given string and assigns it to the ErrorText field.

func (TaskCreated) ToMap

func (o TaskCreated) ToMap() (map[string]interface{}, error)

type TaskCreatedData

type TaskCreatedData struct {
	// Upload ID
	Id *int32 `json:"id,omitempty"`
	// Upload duplication: `true` — upload already exists
	AlreadyExists *bool `json:"alreadyExists,omitempty"`
}

TaskCreatedData Response data

func NewTaskCreatedData

func NewTaskCreatedData() *TaskCreatedData

NewTaskCreatedData instantiates a new TaskCreatedData 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

func NewTaskCreatedDataWithDefaults

func NewTaskCreatedDataWithDefaults() *TaskCreatedData

NewTaskCreatedDataWithDefaults instantiates a new TaskCreatedData 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

func (*TaskCreatedData) GetAlreadyExists

func (o *TaskCreatedData) GetAlreadyExists() bool

GetAlreadyExists returns the AlreadyExists field value if set, zero value otherwise.

func (*TaskCreatedData) GetAlreadyExistsOk

func (o *TaskCreatedData) GetAlreadyExistsOk() (*bool, bool)

GetAlreadyExistsOk returns a tuple with the AlreadyExists field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TaskCreatedData) GetId

func (o *TaskCreatedData) GetId() int32

GetId returns the Id field value if set, zero value otherwise.

func (*TaskCreatedData) GetIdOk

func (o *TaskCreatedData) GetIdOk() (*int32, bool)

GetIdOk returns a tuple with the Id field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TaskCreatedData) HasAlreadyExists

func (o *TaskCreatedData) HasAlreadyExists() bool

HasAlreadyExists returns a boolean if a field has been set.

func (*TaskCreatedData) HasId

func (o *TaskCreatedData) HasId() bool

HasId returns a boolean if a field has been set.

func (TaskCreatedData) MarshalJSON

func (o TaskCreatedData) MarshalJSON() ([]byte, error)

func (*TaskCreatedData) SetAlreadyExists

func (o *TaskCreatedData) SetAlreadyExists(v bool)

SetAlreadyExists gets a reference to the given bool and assigns it to the AlreadyExists field.

func (*TaskCreatedData) SetId

func (o *TaskCreatedData) SetId(v int32)

SetId gets a reference to the given int32 and assigns it to the Id field.

func (TaskCreatedData) ToMap

func (o TaskCreatedData) ToMap() (map[string]interface{}, error)

type ViewerContractPublicErrorsCursorOutput

type ViewerContractPublicErrorsCursorOutput struct {
	// Are there any more drafts:   - `false` — no   - `true` — yes
	Next bool `json:"next"`
	// Date and time of generation of the last batch in the response
	UpdatedAt time.Time `json:"updatedAt"`
	// The ID of the last batch in the response
	BatchUUID string `json:"batchUUID"`
}

ViewerContractPublicErrorsCursorOutput Paginator

func NewViewerContractPublicErrorsCursorOutput

func NewViewerContractPublicErrorsCursorOutput(next bool, updatedAt time.Time, batchUUID string) *ViewerContractPublicErrorsCursorOutput

NewViewerContractPublicErrorsCursorOutput instantiates a new ViewerContractPublicErrorsCursorOutput 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

func NewViewerContractPublicErrorsCursorOutputWithDefaults

func NewViewerContractPublicErrorsCursorOutputWithDefaults() *ViewerContractPublicErrorsCursorOutput

NewViewerContractPublicErrorsCursorOutputWithDefaults instantiates a new ViewerContractPublicErrorsCursorOutput 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

func (*ViewerContractPublicErrorsCursorOutput) GetBatchUUID

GetBatchUUID returns the BatchUUID field value

func (*ViewerContractPublicErrorsCursorOutput) GetBatchUUIDOk

func (o *ViewerContractPublicErrorsCursorOutput) GetBatchUUIDOk() (*string, bool)

GetBatchUUIDOk returns a tuple with the BatchUUID field value and a boolean to check if the value has been set.

func (*ViewerContractPublicErrorsCursorOutput) GetNext

GetNext returns the Next field value

func (*ViewerContractPublicErrorsCursorOutput) GetNextOk

GetNextOk returns a tuple with the Next field value and a boolean to check if the value has been set.

func (*ViewerContractPublicErrorsCursorOutput) GetUpdatedAt

GetUpdatedAt returns the UpdatedAt field value

func (*ViewerContractPublicErrorsCursorOutput) GetUpdatedAtOk

func (o *ViewerContractPublicErrorsCursorOutput) GetUpdatedAtOk() (*time.Time, bool)

GetUpdatedAtOk returns a tuple with the UpdatedAt field value and a boolean to check if the value has been set.

func (ViewerContractPublicErrorsCursorOutput) MarshalJSON

func (o ViewerContractPublicErrorsCursorOutput) MarshalJSON() ([]byte, error)

func (*ViewerContractPublicErrorsCursorOutput) SetBatchUUID

SetBatchUUID sets field value

func (*ViewerContractPublicErrorsCursorOutput) SetNext

SetNext sets field value

func (*ViewerContractPublicErrorsCursorOutput) SetUpdatedAt

SetUpdatedAt sets field value

func (ViewerContractPublicErrorsCursorOutput) ToMap

func (o ViewerContractPublicErrorsCursorOutput) ToMap() (map[string]interface{}, error)

func (*ViewerContractPublicErrorsCursorOutput) UnmarshalJSON

func (o *ViewerContractPublicErrorsCursorOutput) UnmarshalJSON(data []byte) (err error)

type Warehouse

type Warehouse struct {
	// Name
	Name *string `json:"name,omitempty"`
	// Office ID
	OfficeId *int64 `json:"officeId,omitempty"`
	// ID
	Id *int64 `json:"id,omitempty"`
	// The type of goods:   - `1` — small-sized goods   - `2` — over dimensional cargo (ODC)   - `3` — dimensional cargo+ (CD+)
	CargoType *int32 `json:"cargoType,omitempty"`
	// The type of deliveries:   - `1` — Fulfillment By Wildberries (FBS)   - `2` — Delivery By Supplier (DBS)   - `3` — Delivery by WB courier (DBW)   - `5` — In-Store Pickup (C&C)   - `6` — Express Delivery By Supplier (EDBS)
	DeliveryType *int32 `json:"deliveryType,omitempty"`
	// Warehouse is being deleted:   - `false` — no   - `true` — yes  After deletion, the warehouse will disappear from the list
	IsDeleting *bool `json:"isDeleting,omitempty"`
	// Warehouse is being updated:   - `false` — no   - `true` — yes, update and deletion of inventory is not available  Data update may take several minutes
	IsProcessing *bool `json:"isProcessing,omitempty"`
}

Warehouse Seller's warehouse details

func NewWarehouse

func NewWarehouse() *Warehouse

NewWarehouse instantiates a new Warehouse 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

func NewWarehouseWithDefaults

func NewWarehouseWithDefaults() *Warehouse

NewWarehouseWithDefaults instantiates a new Warehouse 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

func (*Warehouse) GetCargoType

func (o *Warehouse) GetCargoType() int32

GetCargoType returns the CargoType field value if set, zero value otherwise.

func (*Warehouse) GetCargoTypeOk

func (o *Warehouse) GetCargoTypeOk() (*int32, bool)

GetCargoTypeOk returns a tuple with the CargoType field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Warehouse) GetDeliveryType

func (o *Warehouse) GetDeliveryType() int32

GetDeliveryType returns the DeliveryType field value if set, zero value otherwise.

func (*Warehouse) GetDeliveryTypeOk

func (o *Warehouse) GetDeliveryTypeOk() (*int32, bool)

GetDeliveryTypeOk returns a tuple with the DeliveryType field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Warehouse) GetId

func (o *Warehouse) GetId() int64

GetId returns the Id field value if set, zero value otherwise.

func (*Warehouse) GetIdOk

func (o *Warehouse) GetIdOk() (*int64, bool)

GetIdOk returns a tuple with the Id field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Warehouse) GetIsDeleting

func (o *Warehouse) GetIsDeleting() bool

GetIsDeleting returns the IsDeleting field value if set, zero value otherwise.

func (*Warehouse) GetIsDeletingOk

func (o *Warehouse) GetIsDeletingOk() (*bool, bool)

GetIsDeletingOk returns a tuple with the IsDeleting field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Warehouse) GetIsProcessing

func (o *Warehouse) GetIsProcessing() bool

GetIsProcessing returns the IsProcessing field value if set, zero value otherwise.

func (*Warehouse) GetIsProcessingOk

func (o *Warehouse) GetIsProcessingOk() (*bool, bool)

GetIsProcessingOk returns a tuple with the IsProcessing field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Warehouse) GetName

func (o *Warehouse) GetName() string

GetName returns the Name field value if set, zero value otherwise.

func (*Warehouse) GetNameOk

func (o *Warehouse) GetNameOk() (*string, bool)

GetNameOk returns a tuple with the Name field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Warehouse) GetOfficeId

func (o *Warehouse) GetOfficeId() int64

GetOfficeId returns the OfficeId field value if set, zero value otherwise.

func (*Warehouse) GetOfficeIdOk

func (o *Warehouse) GetOfficeIdOk() (*int64, bool)

GetOfficeIdOk returns a tuple with the OfficeId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Warehouse) HasCargoType

func (o *Warehouse) HasCargoType() bool

HasCargoType returns a boolean if a field has been set.

func (*Warehouse) HasDeliveryType

func (o *Warehouse) HasDeliveryType() bool

HasDeliveryType returns a boolean if a field has been set.

func (*Warehouse) HasId

func (o *Warehouse) HasId() bool

HasId returns a boolean if a field has been set.

func (*Warehouse) HasIsDeleting

func (o *Warehouse) HasIsDeleting() bool

HasIsDeleting returns a boolean if a field has been set.

func (*Warehouse) HasIsProcessing

func (o *Warehouse) HasIsProcessing() bool

HasIsProcessing returns a boolean if a field has been set.

func (*Warehouse) HasName

func (o *Warehouse) HasName() bool

HasName returns a boolean if a field has been set.

func (*Warehouse) HasOfficeId

func (o *Warehouse) HasOfficeId() bool

HasOfficeId returns a boolean if a field has been set.

func (Warehouse) MarshalJSON

func (o Warehouse) MarshalJSON() ([]byte, error)

func (*Warehouse) SetCargoType

func (o *Warehouse) SetCargoType(v int32)

SetCargoType gets a reference to the given int32 and assigns it to the CargoType field.

func (*Warehouse) SetDeliveryType

func (o *Warehouse) SetDeliveryType(v int32)

SetDeliveryType gets a reference to the given int32 and assigns it to the DeliveryType field.

func (*Warehouse) SetId

func (o *Warehouse) SetId(v int64)

SetId gets a reference to the given int64 and assigns it to the Id field.

func (*Warehouse) SetIsDeleting

func (o *Warehouse) SetIsDeleting(v bool)

SetIsDeleting gets a reference to the given bool and assigns it to the IsDeleting field.

func (*Warehouse) SetIsProcessing

func (o *Warehouse) SetIsProcessing(v bool)

SetIsProcessing gets a reference to the given bool and assigns it to the IsProcessing field.

func (*Warehouse) SetName

func (o *Warehouse) SetName(v string)

SetName gets a reference to the given string and assigns it to the Name field.

func (*Warehouse) SetOfficeId

func (o *Warehouse) SetOfficeId(v int64)

SetOfficeId gets a reference to the given int64 and assigns it to the OfficeId field.

func (Warehouse) ToMap

func (o Warehouse) ToMap() (map[string]interface{}, error)

Source Files

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL