product

package module
v1.0.5 Latest Latest
Warning

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

Go to latest
Published: Jan 22, 2024 License: AGPL-3.0 Imports: 21 Imported by: 0

README

Go API client for product

API for managing products

Overview

This API client was generated by the OpenAPI Generator project. By using the OpenAPI-spec from a remote server, you can easily generate an API client.

  • API version: v1
  • Package version: 1.0.0
  • Build package: org.openapitools.codegen.languages.GoClientCodegen

Installation

Install the following dependencies:

go get github.com/stretchr/testify/assert
go get golang.org/x/oauth2
go get golang.org/x/net/context

Put the package under your project folder and add the following in import:

import product "github.com/gemini-commerce/go-client-product"

To use a proxy, set the environment variable HTTP_PROXY:

os.Setenv("HTTP_PROXY", "http://proxy_name:proxy_port")

Configuration of Server URL

Default configuration comes with Servers field that contains server objects as defined in the OpenAPI specification.

Select Server Configuration

For using other server than the one defined on index 0 set context value product.ContextServerIndex of type int.

ctx := context.WithValue(context.Background(), product.ContextServerIndex, 1)
Templated Server URL

Templated server URL is formatted using default variables from configuration or from context value product.ContextServerVariables of type map[string]string.

ctx := context.WithValue(context.Background(), product.ContextServerVariables, map[string]string{
	"basePath": "v2",
})

Note, enum values are always validated and all unused variables are silently ignored.

URLs Configuration per Operation

Each operation can use different server URL defined using OperationServers map in the Configuration. An operation is uniquely identified by "{classname}Service.{nickname}" string. Similar rules for overriding default operation server index and variables applies by using product.ContextOperationServerIndices and product.ContextOperationServerVariables context maps.

ctx := context.WithValue(context.Background(), product.ContextOperationServerIndices, map[string]int{
	"{classname}Service.{nickname}": 2,
})
ctx = context.WithValue(context.Background(), product.ContextOperationServerVariables, map[string]map[string]string{
	"{classname}Service.{nickname}": {
		"port": "8443",
	},
})

Documentation for API Endpoints

All URIs are relative to https://product.api.gogemini.io

Class Method HTTP request Description
ProductAPI ProductAddMediaGalleryEntry Post /product.Product/AddMediaGalleryEntry
ProductAPI ProductBulkAddAssetsEntries Post /product.Product/BulkAddAssetsEntries Assets endpoints
ProductAPI ProductBulkCreateAttribute Post /product.Product/BulkCreateAttribute
ProductAPI ProductBulkDeleteProducts Post /product.Product/BulkDeleteProducts
ProductAPI ProductBulkRemoveAssetsEntries Post /product.Product/BulkRemoveAssetsEntries
ProductAPI ProductBulkUpdate Post /product.Product/BulkUpdate
ProductAPI ProductBulkUpdateAssetsEntries Post /product.Product/BulkUpdateAssetsEntries
ProductAPI ProductBulkUpdateV2 Post /product.Product/BulkUpdateV2
ProductAPI ProductCreateAttributeGroup Post /product.Product/CreateAttributeGroup
ProductAPI ProductCreateAttributeOptions Post /product.Product/CreateAttributeOptions
ProductAPI ProductCreateEntity Post /product.Product/CreateEntity
ProductAPI ProductCreateOptionsList Post /product.Product/CreateOptionsList
ProductAPI ProductCreateProduct Post /product.Product/CreateProduct
ProductAPI ProductCreateProductV2 Post /product.Product/CreateProductV2
ProductAPI ProductDelete Post /product.Product/Delete
ProductAPI ProductDeleteAttribute Post /product.Product/DeleteAttribute
ProductAPI ProductDeleteProduct Post /product.Product/DeleteProduct
ProductAPI ProductGetAttributeGroup Post /product.Product/GetAttributeGroup
ProductAPI ProductGetAttributeOption Post /product.Product/GetAttributeOption
ProductAPI ProductGetAttributeOptions Post /product.Product/GetAttributeOptions
ProductAPI ProductGetEntity Post /product.Product/GetEntity
ProductAPI ProductGetOptionsList Post /product.Product/GetOptionsList
ProductAPI ProductGetProduct Post /product.Product/GetProduct
ProductAPI ProductGetProductByCode Post /product.Product/GetProductByCode
ProductAPI ProductGetProductByUrlKey Post /product.Product/GetProductByUrlKey
ProductAPI ProductListAttributeGroups Post /product.Product/ListAttributeGroups Attribute Groups endpoints
ProductAPI ProductListAttributeOptions Post /product.Product/ListAttributeOptions
ProductAPI ProductListEntities Post /product.Product/ListEntities
ProductAPI ProductListOptionsLists Post /product.Product/ListOptionsLists
ProductAPI ProductListProducts Post /product.Product/ListProducts
ProductAPI ProductListProductsByIds Post /product.Product/ListProductsByIds
ProductAPI ProductListProductsBySku Post /product.Product/ListProductsBySku
ProductAPI ProductListVariantsBySku Post /product.Product/ListVariantsBySku
ProductAPI ProductRemoveMediaGalleryEntry Post /product.Product/RemoveMediaGalleryEntry
ProductAPI ProductUpdateAttribute Post /product.Product/UpdateAttribute
ProductAPI ProductUpdateAttributeGroup Post /product.Product/UpdateAttributeGroup
ProductAPI ProductUpdateAttributeOptions Post /product.Product/UpdateAttributeOptions rpc GetAttributeOptionByCode (product.entitymanager.GetAttributeOptionByCodeRequest) returns (product.entitymanager.GetAttributeOptionByCodeResponse) {}
ProductAPI ProductUpdateMediaGalleryEntry Post /product.Product/UpdateMediaGalleryEntry
ProductAPI ProductUpdateOptionsList Post /product.Product/UpdateOptionsList
ProductAPI ProductUpdateProduct Post /product.Product/UpdateProduct
ProductAPI ProductUpdateProductV2 Post /product.Product/UpdateProductV2

Documentation For Models

Documentation For Authorization

Authentication schemes defined for the API:

Authorization
  • Type: API key
  • API key parameter name: Authorization
  • Location: HTTP header

Note, each API key must be added to a map of map[string]APIKey where the key is: Authorization and passed in as the auth context for each request.

Example

auth := context.WithValue(
		context.Background(),
		product.ContextAPIKeys,
		map[string]product.APIKey{
			"Authorization": {Key: "API_KEY_STRING"},
		},
	)
r, err := client.Service.Operation(auth, args)
standardAuthorization
  • Type: OAuth
  • Flow: implicit
  • Authorization URL:
  • Scopes: N/A

Example

auth := context.WithValue(context.Background(), product.ContextAccessToken, "ACCESSTOKENSTRING")
r, err := client.Service.Operation(auth, args)

Or via OAuth2 module to automatically refresh tokens and perform user authentication.

import "golang.org/x/oauth2"

/* Perform OAuth2 round trip request and obtain a token */

tokenSource := oauth2cfg.TokenSource(createContext(httpClient), &token)
auth := context.WithValue(oauth2.NoContext, product.ContextOAuth2, tokenSource)
r, err := client.Service.Operation(auth, args)

Documentation for Utility Methods

Due to the fact that model structure members are all pointers, this package contains a number of utility functions to easily obtain pointers to values of basic types. Each of these functions takes a value of the given basic type and returns a pointer to it:

  • PtrBool
  • PtrInt
  • PtrInt32
  • PtrInt64
  • PtrFloat
  • PtrFloat32
  • PtrFloat64
  • PtrString
  • PtrTime

Author

info@gemini-commerce.com

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 (
	// ContextOAuth2 takes an oauth2.TokenSource as authentication for the request.
	ContextOAuth2 = contextKey("token")

	// 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")
)
View Source
var AllowedEntitymanagerRenderAsEnumValues = []EntitymanagerRenderAs{
	"DEFAULT",
	"WYSIWYG",
}

All allowed values of EntitymanagerRenderAs enum

View Source
var AllowedEntitymanagerTypesEnumValues = []EntitymanagerTypes{
	"TEXT",
	"NUMBER",
	"BOOLEAN",
	"DATETIME",
	"EXTERNAL",
	"EMBED",
	"FLOAT32",
}

All allowed values of EntitymanagerTypes enum

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 {
	ProductAPI *ProductAPIService
	// contains filtered or unexported fields
}

APIClient manages communication with the Product Service API vv1 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 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 BulkUpdateAssetsEntriesRequestUpdateEntity

type BulkUpdateAssetsEntriesRequestUpdateEntity struct {
	Id          *string                         `json:"id,omitempty"`
	Payload     *ProductUpdateAssetEntryPayload `json:"payload,omitempty"`
	PayloadMask *string                         `json:"payloadMask,omitempty"`
}

BulkUpdateAssetsEntriesRequestUpdateEntity struct for BulkUpdateAssetsEntriesRequestUpdateEntity

func NewBulkUpdateAssetsEntriesRequestUpdateEntity

func NewBulkUpdateAssetsEntriesRequestUpdateEntity() *BulkUpdateAssetsEntriesRequestUpdateEntity

NewBulkUpdateAssetsEntriesRequestUpdateEntity instantiates a new BulkUpdateAssetsEntriesRequestUpdateEntity 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 NewBulkUpdateAssetsEntriesRequestUpdateEntityWithDefaults

func NewBulkUpdateAssetsEntriesRequestUpdateEntityWithDefaults() *BulkUpdateAssetsEntriesRequestUpdateEntity

NewBulkUpdateAssetsEntriesRequestUpdateEntityWithDefaults instantiates a new BulkUpdateAssetsEntriesRequestUpdateEntity 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 (*BulkUpdateAssetsEntriesRequestUpdateEntity) GetId

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

func (*BulkUpdateAssetsEntriesRequestUpdateEntity) 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 (*BulkUpdateAssetsEntriesRequestUpdateEntity) GetPayload

GetPayload returns the Payload field value if set, zero value otherwise.

func (*BulkUpdateAssetsEntriesRequestUpdateEntity) GetPayloadMask

GetPayloadMask returns the PayloadMask field value if set, zero value otherwise.

func (*BulkUpdateAssetsEntriesRequestUpdateEntity) GetPayloadMaskOk

func (o *BulkUpdateAssetsEntriesRequestUpdateEntity) GetPayloadMaskOk() (*string, bool)

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

func (*BulkUpdateAssetsEntriesRequestUpdateEntity) GetPayloadOk

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

func (*BulkUpdateAssetsEntriesRequestUpdateEntity) HasId

HasId returns a boolean if a field has been set.

func (*BulkUpdateAssetsEntriesRequestUpdateEntity) HasPayload

HasPayload returns a boolean if a field has been set.

func (*BulkUpdateAssetsEntriesRequestUpdateEntity) HasPayloadMask

HasPayloadMask returns a boolean if a field has been set.

func (BulkUpdateAssetsEntriesRequestUpdateEntity) MarshalJSON

func (*BulkUpdateAssetsEntriesRequestUpdateEntity) SetId

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

func (*BulkUpdateAssetsEntriesRequestUpdateEntity) SetPayload

SetPayload gets a reference to the given ProductUpdateAssetEntryPayload and assigns it to the Payload field.

func (*BulkUpdateAssetsEntriesRequestUpdateEntity) SetPayloadMask

SetPayloadMask gets a reference to the given string and assigns it to the PayloadMask field.

func (BulkUpdateAssetsEntriesRequestUpdateEntity) ToMap

func (o BulkUpdateAssetsEntriesRequestUpdateEntity) ToMap() (map[string]interface{}, 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 EntitymanagerAttribute

type EntitymanagerAttribute struct {
	EntityId   *string                `json:"entityId,omitempty"`
	Code       *string                `json:"code,omitempty"`
	Label      *string                `json:"label,omitempty"`
	Type       *EntitymanagerTypes    `json:"type,omitempty"`
	OptionList *string                `json:"optionList,omitempty"`
	Entity     *string                `json:"entity,omitempty"`
	Default    *string                `json:"default,omitempty"`
	IsRequired *bool                  `json:"isRequired,omitempty"`
	IsSystem   *bool                  `json:"isSystem,omitempty"`
	IsRepeated *bool                  `json:"isRepeated,omitempty"`
	Sort       *int32                 `json:"sort,omitempty"`
	GroupCode  *string                `json:"groupCode,omitempty"`
	Title      *map[string]string     `json:"title,omitempty"`
	RenderAs   *EntitymanagerRenderAs `json:"renderAs,omitempty"`
}

EntitymanagerAttribute struct for EntitymanagerAttribute

func NewEntitymanagerAttribute

func NewEntitymanagerAttribute() *EntitymanagerAttribute

NewEntitymanagerAttribute instantiates a new EntitymanagerAttribute 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 NewEntitymanagerAttributeWithDefaults

func NewEntitymanagerAttributeWithDefaults() *EntitymanagerAttribute

NewEntitymanagerAttributeWithDefaults instantiates a new EntitymanagerAttribute 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 (*EntitymanagerAttribute) GetCode

func (o *EntitymanagerAttribute) GetCode() string

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

func (*EntitymanagerAttribute) GetCodeOk

func (o *EntitymanagerAttribute) 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 (*EntitymanagerAttribute) GetDefault

func (o *EntitymanagerAttribute) GetDefault() string

GetDefault returns the Default field value if set, zero value otherwise.

func (*EntitymanagerAttribute) GetDefaultOk

func (o *EntitymanagerAttribute) GetDefaultOk() (*string, bool)

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

func (*EntitymanagerAttribute) GetEntity

func (o *EntitymanagerAttribute) GetEntity() string

GetEntity returns the Entity field value if set, zero value otherwise.

func (*EntitymanagerAttribute) GetEntityId

func (o *EntitymanagerAttribute) GetEntityId() string

GetEntityId returns the EntityId field value if set, zero value otherwise.

func (*EntitymanagerAttribute) GetEntityIdOk

func (o *EntitymanagerAttribute) GetEntityIdOk() (*string, bool)

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

func (*EntitymanagerAttribute) GetEntityOk

func (o *EntitymanagerAttribute) GetEntityOk() (*string, bool)

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

func (*EntitymanagerAttribute) GetGroupCode

func (o *EntitymanagerAttribute) GetGroupCode() string

GetGroupCode returns the GroupCode field value if set, zero value otherwise.

func (*EntitymanagerAttribute) GetGroupCodeOk

func (o *EntitymanagerAttribute) GetGroupCodeOk() (*string, bool)

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

func (*EntitymanagerAttribute) GetIsRepeated

func (o *EntitymanagerAttribute) GetIsRepeated() bool

GetIsRepeated returns the IsRepeated field value if set, zero value otherwise.

func (*EntitymanagerAttribute) GetIsRepeatedOk

func (o *EntitymanagerAttribute) GetIsRepeatedOk() (*bool, bool)

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

func (*EntitymanagerAttribute) GetIsRequired

func (o *EntitymanagerAttribute) GetIsRequired() bool

GetIsRequired returns the IsRequired field value if set, zero value otherwise.

func (*EntitymanagerAttribute) GetIsRequiredOk

func (o *EntitymanagerAttribute) GetIsRequiredOk() (*bool, bool)

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

func (*EntitymanagerAttribute) GetIsSystem

func (o *EntitymanagerAttribute) GetIsSystem() bool

GetIsSystem returns the IsSystem field value if set, zero value otherwise.

func (*EntitymanagerAttribute) GetIsSystemOk

func (o *EntitymanagerAttribute) GetIsSystemOk() (*bool, bool)

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

func (*EntitymanagerAttribute) GetLabel

func (o *EntitymanagerAttribute) GetLabel() string

GetLabel returns the Label field value if set, zero value otherwise.

func (*EntitymanagerAttribute) GetLabelOk

func (o *EntitymanagerAttribute) GetLabelOk() (*string, bool)

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

func (*EntitymanagerAttribute) GetOptionList

func (o *EntitymanagerAttribute) GetOptionList() string

GetOptionList returns the OptionList field value if set, zero value otherwise.

func (*EntitymanagerAttribute) GetOptionListOk

func (o *EntitymanagerAttribute) GetOptionListOk() (*string, bool)

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

func (*EntitymanagerAttribute) GetRenderAs

GetRenderAs returns the RenderAs field value if set, zero value otherwise.

func (*EntitymanagerAttribute) GetRenderAsOk

func (o *EntitymanagerAttribute) GetRenderAsOk() (*EntitymanagerRenderAs, bool)

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

func (*EntitymanagerAttribute) GetSort

func (o *EntitymanagerAttribute) GetSort() int32

GetSort returns the Sort field value if set, zero value otherwise.

func (*EntitymanagerAttribute) GetSortOk

func (o *EntitymanagerAttribute) GetSortOk() (*int32, bool)

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 (*EntitymanagerAttribute) GetTitle

func (o *EntitymanagerAttribute) GetTitle() map[string]string

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

func (*EntitymanagerAttribute) GetTitleOk

func (o *EntitymanagerAttribute) GetTitleOk() (*map[string]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 (*EntitymanagerAttribute) GetType

GetType returns the Type field value if set, zero value otherwise.

func (*EntitymanagerAttribute) GetTypeOk

func (o *EntitymanagerAttribute) GetTypeOk() (*EntitymanagerTypes, bool)

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

func (*EntitymanagerAttribute) HasCode

func (o *EntitymanagerAttribute) HasCode() bool

HasCode returns a boolean if a field has been set.

func (*EntitymanagerAttribute) HasDefault

func (o *EntitymanagerAttribute) HasDefault() bool

HasDefault returns a boolean if a field has been set.

func (*EntitymanagerAttribute) HasEntity

func (o *EntitymanagerAttribute) HasEntity() bool

HasEntity returns a boolean if a field has been set.

func (*EntitymanagerAttribute) HasEntityId

func (o *EntitymanagerAttribute) HasEntityId() bool

HasEntityId returns a boolean if a field has been set.

func (*EntitymanagerAttribute) HasGroupCode

func (o *EntitymanagerAttribute) HasGroupCode() bool

HasGroupCode returns a boolean if a field has been set.

func (*EntitymanagerAttribute) HasIsRepeated

func (o *EntitymanagerAttribute) HasIsRepeated() bool

HasIsRepeated returns a boolean if a field has been set.

func (*EntitymanagerAttribute) HasIsRequired

func (o *EntitymanagerAttribute) HasIsRequired() bool

HasIsRequired returns a boolean if a field has been set.

func (*EntitymanagerAttribute) HasIsSystem

func (o *EntitymanagerAttribute) HasIsSystem() bool

HasIsSystem returns a boolean if a field has been set.

func (*EntitymanagerAttribute) HasLabel

func (o *EntitymanagerAttribute) HasLabel() bool

HasLabel returns a boolean if a field has been set.

func (*EntitymanagerAttribute) HasOptionList

func (o *EntitymanagerAttribute) HasOptionList() bool

HasOptionList returns a boolean if a field has been set.

func (*EntitymanagerAttribute) HasRenderAs

func (o *EntitymanagerAttribute) HasRenderAs() bool

HasRenderAs returns a boolean if a field has been set.

func (*EntitymanagerAttribute) HasSort

func (o *EntitymanagerAttribute) HasSort() bool

HasSort returns a boolean if a field has been set.

func (*EntitymanagerAttribute) HasTitle

func (o *EntitymanagerAttribute) HasTitle() bool

HasTitle returns a boolean if a field has been set.

func (*EntitymanagerAttribute) HasType

func (o *EntitymanagerAttribute) HasType() bool

HasType returns a boolean if a field has been set.

func (EntitymanagerAttribute) MarshalJSON

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

func (*EntitymanagerAttribute) SetCode

func (o *EntitymanagerAttribute) SetCode(v string)

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

func (*EntitymanagerAttribute) SetDefault

func (o *EntitymanagerAttribute) SetDefault(v string)

SetDefault gets a reference to the given string and assigns it to the Default field.

func (*EntitymanagerAttribute) SetEntity

func (o *EntitymanagerAttribute) SetEntity(v string)

SetEntity gets a reference to the given string and assigns it to the Entity field.

func (*EntitymanagerAttribute) SetEntityId

func (o *EntitymanagerAttribute) SetEntityId(v string)

SetEntityId gets a reference to the given string and assigns it to the EntityId field.

func (*EntitymanagerAttribute) SetGroupCode

func (o *EntitymanagerAttribute) SetGroupCode(v string)

SetGroupCode gets a reference to the given string and assigns it to the GroupCode field.

func (*EntitymanagerAttribute) SetIsRepeated

func (o *EntitymanagerAttribute) SetIsRepeated(v bool)

SetIsRepeated gets a reference to the given bool and assigns it to the IsRepeated field.

func (*EntitymanagerAttribute) SetIsRequired

func (o *EntitymanagerAttribute) SetIsRequired(v bool)

SetIsRequired gets a reference to the given bool and assigns it to the IsRequired field.

func (*EntitymanagerAttribute) SetIsSystem

func (o *EntitymanagerAttribute) SetIsSystem(v bool)

SetIsSystem gets a reference to the given bool and assigns it to the IsSystem field.

func (*EntitymanagerAttribute) SetLabel

func (o *EntitymanagerAttribute) SetLabel(v string)

SetLabel gets a reference to the given string and assigns it to the Label field.

func (*EntitymanagerAttribute) SetOptionList

func (o *EntitymanagerAttribute) SetOptionList(v string)

SetOptionList gets a reference to the given string and assigns it to the OptionList field.

func (*EntitymanagerAttribute) SetRenderAs

SetRenderAs gets a reference to the given EntitymanagerRenderAs and assigns it to the RenderAs field.

func (*EntitymanagerAttribute) SetSort

func (o *EntitymanagerAttribute) SetSort(v int32)

SetSort gets a reference to the given int32 and assigns it to the Sort field.

func (*EntitymanagerAttribute) SetTitle

func (o *EntitymanagerAttribute) SetTitle(v map[string]string)

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

func (*EntitymanagerAttribute) SetType

SetType gets a reference to the given EntitymanagerTypes and assigns it to the Type field.

func (EntitymanagerAttribute) ToMap

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

type EntitymanagerAttributeGroup

type EntitymanagerAttributeGroup struct {
	Code       *string                            `json:"code,omitempty"`
	Label      *ProductentitymanagerLocalizedText `json:"label,omitempty"`
	Sort       *int32                             `json:"sort,omitempty"`
	Visibility []string                           `json:"visibility,omitempty"`
}

EntitymanagerAttributeGroup struct for EntitymanagerAttributeGroup

func NewEntitymanagerAttributeGroup

func NewEntitymanagerAttributeGroup() *EntitymanagerAttributeGroup

NewEntitymanagerAttributeGroup instantiates a new EntitymanagerAttributeGroup 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 NewEntitymanagerAttributeGroupWithDefaults

func NewEntitymanagerAttributeGroupWithDefaults() *EntitymanagerAttributeGroup

NewEntitymanagerAttributeGroupWithDefaults instantiates a new EntitymanagerAttributeGroup 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 (*EntitymanagerAttributeGroup) GetCode

func (o *EntitymanagerAttributeGroup) GetCode() string

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

func (*EntitymanagerAttributeGroup) GetCodeOk

func (o *EntitymanagerAttributeGroup) 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 (*EntitymanagerAttributeGroup) GetLabel

GetLabel returns the Label field value if set, zero value otherwise.

func (*EntitymanagerAttributeGroup) GetLabelOk

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

func (*EntitymanagerAttributeGroup) GetSort

func (o *EntitymanagerAttributeGroup) GetSort() int32

GetSort returns the Sort field value if set, zero value otherwise.

func (*EntitymanagerAttributeGroup) GetSortOk

func (o *EntitymanagerAttributeGroup) GetSortOk() (*int32, bool)

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 (*EntitymanagerAttributeGroup) GetVisibility

func (o *EntitymanagerAttributeGroup) GetVisibility() []string

GetVisibility returns the Visibility field value if set, zero value otherwise.

func (*EntitymanagerAttributeGroup) GetVisibilityOk

func (o *EntitymanagerAttributeGroup) GetVisibilityOk() ([]string, bool)

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

func (*EntitymanagerAttributeGroup) HasCode

func (o *EntitymanagerAttributeGroup) HasCode() bool

HasCode returns a boolean if a field has been set.

func (*EntitymanagerAttributeGroup) HasLabel

func (o *EntitymanagerAttributeGroup) HasLabel() bool

HasLabel returns a boolean if a field has been set.

func (*EntitymanagerAttributeGroup) HasSort

func (o *EntitymanagerAttributeGroup) HasSort() bool

HasSort returns a boolean if a field has been set.

func (*EntitymanagerAttributeGroup) HasVisibility

func (o *EntitymanagerAttributeGroup) HasVisibility() bool

HasVisibility returns a boolean if a field has been set.

func (EntitymanagerAttributeGroup) MarshalJSON

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

func (*EntitymanagerAttributeGroup) SetCode

func (o *EntitymanagerAttributeGroup) SetCode(v string)

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

func (*EntitymanagerAttributeGroup) SetLabel

SetLabel gets a reference to the given ProductentitymanagerLocalizedText and assigns it to the Label field.

func (*EntitymanagerAttributeGroup) SetSort

func (o *EntitymanagerAttributeGroup) SetSort(v int32)

SetSort gets a reference to the given int32 and assigns it to the Sort field.

func (*EntitymanagerAttributeGroup) SetVisibility

func (o *EntitymanagerAttributeGroup) SetVisibility(v []string)

SetVisibility gets a reference to the given []string and assigns it to the Visibility field.

func (EntitymanagerAttributeGroup) ToMap

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

type EntitymanagerAttributeOption

type EntitymanagerAttributeOption struct {
	Option   *map[string]string                   `json:"option,omitempty"`
	Sort     *int64                               `json:"sort,omitempty"`
	Id       *string                              `json:"id,omitempty"`
	Code     *string                              `json:"code,omitempty"`
	Value    *ProductentitymanagerLocalizedText   `json:"value,omitempty"`
	Swatches []EntitymanagerAttributeOptionSwatch `json:"swatches,omitempty"`
}

EntitymanagerAttributeOption struct for EntitymanagerAttributeOption

func NewEntitymanagerAttributeOption

func NewEntitymanagerAttributeOption() *EntitymanagerAttributeOption

NewEntitymanagerAttributeOption instantiates a new EntitymanagerAttributeOption 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 NewEntitymanagerAttributeOptionWithDefaults

func NewEntitymanagerAttributeOptionWithDefaults() *EntitymanagerAttributeOption

NewEntitymanagerAttributeOptionWithDefaults instantiates a new EntitymanagerAttributeOption 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 (*EntitymanagerAttributeOption) GetCode

func (o *EntitymanagerAttributeOption) GetCode() string

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

func (*EntitymanagerAttributeOption) GetCodeOk

func (o *EntitymanagerAttributeOption) 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 (*EntitymanagerAttributeOption) GetId

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

func (*EntitymanagerAttributeOption) GetIdOk

func (o *EntitymanagerAttributeOption) GetIdOk() (*string, 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 (*EntitymanagerAttributeOption) GetOption

func (o *EntitymanagerAttributeOption) GetOption() map[string]string

GetOption returns the Option field value if set, zero value otherwise.

func (*EntitymanagerAttributeOption) GetOptionOk

func (o *EntitymanagerAttributeOption) GetOptionOk() (*map[string]string, bool)

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

func (*EntitymanagerAttributeOption) GetSort

func (o *EntitymanagerAttributeOption) GetSort() int64

GetSort returns the Sort field value if set, zero value otherwise.

func (*EntitymanagerAttributeOption) GetSortOk

func (o *EntitymanagerAttributeOption) GetSortOk() (*int64, bool)

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 (*EntitymanagerAttributeOption) GetSwatches

GetSwatches returns the Swatches field value if set, zero value otherwise.

func (*EntitymanagerAttributeOption) GetSwatchesOk

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

func (*EntitymanagerAttributeOption) GetValue

GetValue returns the Value field value if set, zero value otherwise.

func (*EntitymanagerAttributeOption) 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.

func (*EntitymanagerAttributeOption) HasCode

func (o *EntitymanagerAttributeOption) HasCode() bool

HasCode returns a boolean if a field has been set.

func (*EntitymanagerAttributeOption) HasId

HasId returns a boolean if a field has been set.

func (*EntitymanagerAttributeOption) HasOption

func (o *EntitymanagerAttributeOption) HasOption() bool

HasOption returns a boolean if a field has been set.

func (*EntitymanagerAttributeOption) HasSort

func (o *EntitymanagerAttributeOption) HasSort() bool

HasSort returns a boolean if a field has been set.

func (*EntitymanagerAttributeOption) HasSwatches

func (o *EntitymanagerAttributeOption) HasSwatches() bool

HasSwatches returns a boolean if a field has been set.

func (*EntitymanagerAttributeOption) HasValue

func (o *EntitymanagerAttributeOption) HasValue() bool

HasValue returns a boolean if a field has been set.

func (EntitymanagerAttributeOption) MarshalJSON

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

func (*EntitymanagerAttributeOption) SetCode

func (o *EntitymanagerAttributeOption) SetCode(v string)

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

func (*EntitymanagerAttributeOption) SetId

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

func (*EntitymanagerAttributeOption) SetOption

func (o *EntitymanagerAttributeOption) SetOption(v map[string]string)

SetOption gets a reference to the given map[string]string and assigns it to the Option field.

func (*EntitymanagerAttributeOption) SetSort

func (o *EntitymanagerAttributeOption) SetSort(v int64)

SetSort gets a reference to the given int64 and assigns it to the Sort field.

func (*EntitymanagerAttributeOption) SetSwatches

SetSwatches gets a reference to the given []EntitymanagerAttributeOptionSwatch and assigns it to the Swatches field.

func (*EntitymanagerAttributeOption) SetValue

SetValue gets a reference to the given ProductentitymanagerLocalizedText and assigns it to the Value field.

func (EntitymanagerAttributeOption) ToMap

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

type EntitymanagerAttributeOptionErrors

type EntitymanagerAttributeOptionErrors struct {
	Error  *string            `json:"error,omitempty"`
	Option *map[string]string `json:"option,omitempty"`
}

EntitymanagerAttributeOptionErrors struct for EntitymanagerAttributeOptionErrors

func NewEntitymanagerAttributeOptionErrors

func NewEntitymanagerAttributeOptionErrors() *EntitymanagerAttributeOptionErrors

NewEntitymanagerAttributeOptionErrors instantiates a new EntitymanagerAttributeOptionErrors 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 NewEntitymanagerAttributeOptionErrorsWithDefaults

func NewEntitymanagerAttributeOptionErrorsWithDefaults() *EntitymanagerAttributeOptionErrors

NewEntitymanagerAttributeOptionErrorsWithDefaults instantiates a new EntitymanagerAttributeOptionErrors 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 (*EntitymanagerAttributeOptionErrors) GetError

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

func (*EntitymanagerAttributeOptionErrors) GetErrorOk

func (o *EntitymanagerAttributeOptionErrors) 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 (*EntitymanagerAttributeOptionErrors) GetOption

GetOption returns the Option field value if set, zero value otherwise.

func (*EntitymanagerAttributeOptionErrors) GetOptionOk

func (o *EntitymanagerAttributeOptionErrors) GetOptionOk() (*map[string]string, bool)

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

func (*EntitymanagerAttributeOptionErrors) HasError

HasError returns a boolean if a field has been set.

func (*EntitymanagerAttributeOptionErrors) HasOption

HasOption returns a boolean if a field has been set.

func (EntitymanagerAttributeOptionErrors) MarshalJSON

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

func (*EntitymanagerAttributeOptionErrors) SetError

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

func (*EntitymanagerAttributeOptionErrors) SetOption

func (o *EntitymanagerAttributeOptionErrors) SetOption(v map[string]string)

SetOption gets a reference to the given map[string]string and assigns it to the Option field.

func (EntitymanagerAttributeOptionErrors) ToMap

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

type EntitymanagerAttributeOptionSwatch

type EntitymanagerAttributeOptionSwatch struct {
	Grn *string `json:"grn,omitempty"`
	Hex *string `json:"hex,omitempty"`
}

EntitymanagerAttributeOptionSwatch struct for EntitymanagerAttributeOptionSwatch

func NewEntitymanagerAttributeOptionSwatch

func NewEntitymanagerAttributeOptionSwatch() *EntitymanagerAttributeOptionSwatch

NewEntitymanagerAttributeOptionSwatch instantiates a new EntitymanagerAttributeOptionSwatch 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 NewEntitymanagerAttributeOptionSwatchWithDefaults

func NewEntitymanagerAttributeOptionSwatchWithDefaults() *EntitymanagerAttributeOptionSwatch

NewEntitymanagerAttributeOptionSwatchWithDefaults instantiates a new EntitymanagerAttributeOptionSwatch 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 (*EntitymanagerAttributeOptionSwatch) GetGrn

GetGrn returns the Grn field value if set, zero value otherwise.

func (*EntitymanagerAttributeOptionSwatch) GetGrnOk

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

func (*EntitymanagerAttributeOptionSwatch) GetHex

GetHex returns the Hex field value if set, zero value otherwise.

func (*EntitymanagerAttributeOptionSwatch) GetHexOk

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

func (*EntitymanagerAttributeOptionSwatch) HasGrn

HasGrn returns a boolean if a field has been set.

func (*EntitymanagerAttributeOptionSwatch) HasHex

HasHex returns a boolean if a field has been set.

func (EntitymanagerAttributeOptionSwatch) MarshalJSON

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

func (*EntitymanagerAttributeOptionSwatch) SetGrn

SetGrn gets a reference to the given string and assigns it to the Grn field.

func (*EntitymanagerAttributeOptionSwatch) SetHex

SetHex gets a reference to the given string and assigns it to the Hex field.

func (EntitymanagerAttributeOptionSwatch) ToMap

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

type EntitymanagerAttributeWriteError

type EntitymanagerAttributeWriteError struct {
	ErrorCode     *string `json:"errorCode,omitempty"`
	AttributeCode *string `json:"attributeCode,omitempty"`
	Message       *string `json:"message,omitempty"`
}

EntitymanagerAttributeWriteError struct for EntitymanagerAttributeWriteError

func NewEntitymanagerAttributeWriteError

func NewEntitymanagerAttributeWriteError() *EntitymanagerAttributeWriteError

NewEntitymanagerAttributeWriteError instantiates a new EntitymanagerAttributeWriteError 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 NewEntitymanagerAttributeWriteErrorWithDefaults

func NewEntitymanagerAttributeWriteErrorWithDefaults() *EntitymanagerAttributeWriteError

NewEntitymanagerAttributeWriteErrorWithDefaults instantiates a new EntitymanagerAttributeWriteError 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 (*EntitymanagerAttributeWriteError) GetAttributeCode

func (o *EntitymanagerAttributeWriteError) GetAttributeCode() string

GetAttributeCode returns the AttributeCode field value if set, zero value otherwise.

func (*EntitymanagerAttributeWriteError) GetAttributeCodeOk

func (o *EntitymanagerAttributeWriteError) GetAttributeCodeOk() (*string, bool)

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

func (*EntitymanagerAttributeWriteError) GetErrorCode

func (o *EntitymanagerAttributeWriteError) GetErrorCode() string

GetErrorCode returns the ErrorCode field value if set, zero value otherwise.

func (*EntitymanagerAttributeWriteError) GetErrorCodeOk

func (o *EntitymanagerAttributeWriteError) GetErrorCodeOk() (*string, bool)

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

func (*EntitymanagerAttributeWriteError) GetMessage

func (o *EntitymanagerAttributeWriteError) GetMessage() string

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

func (*EntitymanagerAttributeWriteError) GetMessageOk

func (o *EntitymanagerAttributeWriteError) 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 (*EntitymanagerAttributeWriteError) HasAttributeCode

func (o *EntitymanagerAttributeWriteError) HasAttributeCode() bool

HasAttributeCode returns a boolean if a field has been set.

func (*EntitymanagerAttributeWriteError) HasErrorCode

func (o *EntitymanagerAttributeWriteError) HasErrorCode() bool

HasErrorCode returns a boolean if a field has been set.

func (*EntitymanagerAttributeWriteError) HasMessage

func (o *EntitymanagerAttributeWriteError) HasMessage() bool

HasMessage returns a boolean if a field has been set.

func (EntitymanagerAttributeWriteError) MarshalJSON

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

func (*EntitymanagerAttributeWriteError) SetAttributeCode

func (o *EntitymanagerAttributeWriteError) SetAttributeCode(v string)

SetAttributeCode gets a reference to the given string and assigns it to the AttributeCode field.

func (*EntitymanagerAttributeWriteError) SetErrorCode

func (o *EntitymanagerAttributeWriteError) SetErrorCode(v string)

SetErrorCode gets a reference to the given string and assigns it to the ErrorCode field.

func (*EntitymanagerAttributeWriteError) SetMessage

func (o *EntitymanagerAttributeWriteError) SetMessage(v string)

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

func (EntitymanagerAttributeWriteError) ToMap

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

type EntitymanagerAttributeWriteErrors

type EntitymanagerAttributeWriteErrors struct {
	AttributeWriteErrors []EntitymanagerAttributeWriteError `json:"attributeWriteErrors,omitempty"`
}

EntitymanagerAttributeWriteErrors struct for EntitymanagerAttributeWriteErrors

func NewEntitymanagerAttributeWriteErrors

func NewEntitymanagerAttributeWriteErrors() *EntitymanagerAttributeWriteErrors

NewEntitymanagerAttributeWriteErrors instantiates a new EntitymanagerAttributeWriteErrors 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 NewEntitymanagerAttributeWriteErrorsWithDefaults

func NewEntitymanagerAttributeWriteErrorsWithDefaults() *EntitymanagerAttributeWriteErrors

NewEntitymanagerAttributeWriteErrorsWithDefaults instantiates a new EntitymanagerAttributeWriteErrors 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 (*EntitymanagerAttributeWriteErrors) GetAttributeWriteErrors

GetAttributeWriteErrors returns the AttributeWriteErrors field value if set, zero value otherwise.

func (*EntitymanagerAttributeWriteErrors) GetAttributeWriteErrorsOk

func (o *EntitymanagerAttributeWriteErrors) GetAttributeWriteErrorsOk() ([]EntitymanagerAttributeWriteError, bool)

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

func (*EntitymanagerAttributeWriteErrors) HasAttributeWriteErrors

func (o *EntitymanagerAttributeWriteErrors) HasAttributeWriteErrors() bool

HasAttributeWriteErrors returns a boolean if a field has been set.

func (EntitymanagerAttributeWriteErrors) MarshalJSON

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

func (*EntitymanagerAttributeWriteErrors) SetAttributeWriteErrors

SetAttributeWriteErrors gets a reference to the given []EntitymanagerAttributeWriteError and assigns it to the AttributeWriteErrors field.

func (EntitymanagerAttributeWriteErrors) ToMap

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

type EntitymanagerBulkCreateAttributeRequest

type EntitymanagerBulkCreateAttributeRequest struct {
	TenantId   *string                        `json:"tenantId,omitempty"`
	EntityData *EntitymanagerEntityIdentifier `json:"entityData,omitempty"`
	EntityId   *string                        `json:"entityId,omitempty"`
	Attributes []EntitymanagerAttribute       `json:"attributes,omitempty"`
}

EntitymanagerBulkCreateAttributeRequest struct for EntitymanagerBulkCreateAttributeRequest

func NewEntitymanagerBulkCreateAttributeRequest

func NewEntitymanagerBulkCreateAttributeRequest() *EntitymanagerBulkCreateAttributeRequest

NewEntitymanagerBulkCreateAttributeRequest instantiates a new EntitymanagerBulkCreateAttributeRequest 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 NewEntitymanagerBulkCreateAttributeRequestWithDefaults

func NewEntitymanagerBulkCreateAttributeRequestWithDefaults() *EntitymanagerBulkCreateAttributeRequest

NewEntitymanagerBulkCreateAttributeRequestWithDefaults instantiates a new EntitymanagerBulkCreateAttributeRequest 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 (*EntitymanagerBulkCreateAttributeRequest) GetAttributes

GetAttributes returns the Attributes field value if set, zero value otherwise.

func (*EntitymanagerBulkCreateAttributeRequest) GetAttributesOk

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

func (*EntitymanagerBulkCreateAttributeRequest) GetEntityData

GetEntityData returns the EntityData field value if set, zero value otherwise.

func (*EntitymanagerBulkCreateAttributeRequest) GetEntityDataOk

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

func (*EntitymanagerBulkCreateAttributeRequest) GetEntityId

GetEntityId returns the EntityId field value if set, zero value otherwise.

func (*EntitymanagerBulkCreateAttributeRequest) GetEntityIdOk

func (o *EntitymanagerBulkCreateAttributeRequest) GetEntityIdOk() (*string, bool)

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

func (*EntitymanagerBulkCreateAttributeRequest) GetTenantId

GetTenantId returns the TenantId field value if set, zero value otherwise.

func (*EntitymanagerBulkCreateAttributeRequest) GetTenantIdOk

func (o *EntitymanagerBulkCreateAttributeRequest) GetTenantIdOk() (*string, bool)

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

func (*EntitymanagerBulkCreateAttributeRequest) HasAttributes

func (o *EntitymanagerBulkCreateAttributeRequest) HasAttributes() bool

HasAttributes returns a boolean if a field has been set.

func (*EntitymanagerBulkCreateAttributeRequest) HasEntityData

func (o *EntitymanagerBulkCreateAttributeRequest) HasEntityData() bool

HasEntityData returns a boolean if a field has been set.

func (*EntitymanagerBulkCreateAttributeRequest) HasEntityId

HasEntityId returns a boolean if a field has been set.

func (*EntitymanagerBulkCreateAttributeRequest) HasTenantId

HasTenantId returns a boolean if a field has been set.

func (EntitymanagerBulkCreateAttributeRequest) MarshalJSON

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

func (*EntitymanagerBulkCreateAttributeRequest) SetAttributes

SetAttributes gets a reference to the given []EntitymanagerAttribute and assigns it to the Attributes field.

func (*EntitymanagerBulkCreateAttributeRequest) SetEntityData

SetEntityData gets a reference to the given EntitymanagerEntityIdentifier and assigns it to the EntityData field.

func (*EntitymanagerBulkCreateAttributeRequest) SetEntityId

SetEntityId gets a reference to the given string and assigns it to the EntityId field.

func (*EntitymanagerBulkCreateAttributeRequest) SetTenantId

SetTenantId gets a reference to the given string and assigns it to the TenantId field.

func (EntitymanagerBulkCreateAttributeRequest) ToMap

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

type EntitymanagerBulkCreateAttributeResponse

type EntitymanagerBulkCreateAttributeResponse struct {
	Attributes []EntitymanagerAttribute `json:"attributes,omitempty"`
}

EntitymanagerBulkCreateAttributeResponse struct for EntitymanagerBulkCreateAttributeResponse

func NewEntitymanagerBulkCreateAttributeResponse

func NewEntitymanagerBulkCreateAttributeResponse() *EntitymanagerBulkCreateAttributeResponse

NewEntitymanagerBulkCreateAttributeResponse instantiates a new EntitymanagerBulkCreateAttributeResponse 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 NewEntitymanagerBulkCreateAttributeResponseWithDefaults

func NewEntitymanagerBulkCreateAttributeResponseWithDefaults() *EntitymanagerBulkCreateAttributeResponse

NewEntitymanagerBulkCreateAttributeResponseWithDefaults instantiates a new EntitymanagerBulkCreateAttributeResponse 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 (*EntitymanagerBulkCreateAttributeResponse) GetAttributes

GetAttributes returns the Attributes field value if set, zero value otherwise.

func (*EntitymanagerBulkCreateAttributeResponse) GetAttributesOk

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

func (*EntitymanagerBulkCreateAttributeResponse) HasAttributes

HasAttributes returns a boolean if a field has been set.

func (EntitymanagerBulkCreateAttributeResponse) MarshalJSON

func (*EntitymanagerBulkCreateAttributeResponse) SetAttributes

SetAttributes gets a reference to the given []EntitymanagerAttribute and assigns it to the Attributes field.

func (EntitymanagerBulkCreateAttributeResponse) ToMap

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

type EntitymanagerCreateAttributeGroupRequest

type EntitymanagerCreateAttributeGroupRequest struct {
	TenantId   *string                            `json:"tenantId,omitempty"`
	Code       *string                            `json:"code,omitempty"`
	Label      *ProductentitymanagerLocalizedText `json:"label,omitempty"`
	Sort       *int32                             `json:"sort,omitempty"`
	Visibility []string                           `json:"visibility,omitempty"`
}

EntitymanagerCreateAttributeGroupRequest struct for EntitymanagerCreateAttributeGroupRequest

func NewEntitymanagerCreateAttributeGroupRequest

func NewEntitymanagerCreateAttributeGroupRequest() *EntitymanagerCreateAttributeGroupRequest

NewEntitymanagerCreateAttributeGroupRequest instantiates a new EntitymanagerCreateAttributeGroupRequest 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 NewEntitymanagerCreateAttributeGroupRequestWithDefaults

func NewEntitymanagerCreateAttributeGroupRequestWithDefaults() *EntitymanagerCreateAttributeGroupRequest

NewEntitymanagerCreateAttributeGroupRequestWithDefaults instantiates a new EntitymanagerCreateAttributeGroupRequest 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 (*EntitymanagerCreateAttributeGroupRequest) GetCode

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

func (*EntitymanagerCreateAttributeGroupRequest) 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 (*EntitymanagerCreateAttributeGroupRequest) GetLabel

GetLabel returns the Label field value if set, zero value otherwise.

func (*EntitymanagerCreateAttributeGroupRequest) GetLabelOk

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

func (*EntitymanagerCreateAttributeGroupRequest) GetSort

GetSort returns the Sort field value if set, zero value otherwise.

func (*EntitymanagerCreateAttributeGroupRequest) 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 (*EntitymanagerCreateAttributeGroupRequest) GetTenantId

GetTenantId returns the TenantId field value if set, zero value otherwise.

func (*EntitymanagerCreateAttributeGroupRequest) GetTenantIdOk

func (o *EntitymanagerCreateAttributeGroupRequest) GetTenantIdOk() (*string, bool)

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

func (*EntitymanagerCreateAttributeGroupRequest) GetVisibility

func (o *EntitymanagerCreateAttributeGroupRequest) GetVisibility() []string

GetVisibility returns the Visibility field value if set, zero value otherwise.

func (*EntitymanagerCreateAttributeGroupRequest) GetVisibilityOk

func (o *EntitymanagerCreateAttributeGroupRequest) GetVisibilityOk() ([]string, bool)

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

func (*EntitymanagerCreateAttributeGroupRequest) HasCode

HasCode returns a boolean if a field has been set.

func (*EntitymanagerCreateAttributeGroupRequest) HasLabel

HasLabel returns a boolean if a field has been set.

func (*EntitymanagerCreateAttributeGroupRequest) HasSort

HasSort returns a boolean if a field has been set.

func (*EntitymanagerCreateAttributeGroupRequest) HasTenantId

HasTenantId returns a boolean if a field has been set.

func (*EntitymanagerCreateAttributeGroupRequest) HasVisibility

HasVisibility returns a boolean if a field has been set.

func (EntitymanagerCreateAttributeGroupRequest) MarshalJSON

func (*EntitymanagerCreateAttributeGroupRequest) SetCode

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

func (*EntitymanagerCreateAttributeGroupRequest) SetLabel

SetLabel gets a reference to the given ProductentitymanagerLocalizedText and assigns it to the Label field.

func (*EntitymanagerCreateAttributeGroupRequest) SetSort

SetSort gets a reference to the given int32 and assigns it to the Sort field.

func (*EntitymanagerCreateAttributeGroupRequest) SetTenantId

SetTenantId gets a reference to the given string and assigns it to the TenantId field.

func (*EntitymanagerCreateAttributeGroupRequest) SetVisibility

func (o *EntitymanagerCreateAttributeGroupRequest) SetVisibility(v []string)

SetVisibility gets a reference to the given []string and assigns it to the Visibility field.

func (EntitymanagerCreateAttributeGroupRequest) ToMap

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

type EntitymanagerCreateAttributeOptionsRequest

type EntitymanagerCreateAttributeOptionsRequest struct {
	TenantId *string                        `json:"tenantId,omitempty"`
	ListCode *string                        `json:"listCode,omitempty"`
	Options  []EntitymanagerAttributeOption `json:"options,omitempty"`
}

EntitymanagerCreateAttributeOptionsRequest struct for EntitymanagerCreateAttributeOptionsRequest

func NewEntitymanagerCreateAttributeOptionsRequest

func NewEntitymanagerCreateAttributeOptionsRequest() *EntitymanagerCreateAttributeOptionsRequest

NewEntitymanagerCreateAttributeOptionsRequest instantiates a new EntitymanagerCreateAttributeOptionsRequest 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 NewEntitymanagerCreateAttributeOptionsRequestWithDefaults

func NewEntitymanagerCreateAttributeOptionsRequestWithDefaults() *EntitymanagerCreateAttributeOptionsRequest

NewEntitymanagerCreateAttributeOptionsRequestWithDefaults instantiates a new EntitymanagerCreateAttributeOptionsRequest 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 (*EntitymanagerCreateAttributeOptionsRequest) GetListCode

GetListCode returns the ListCode field value if set, zero value otherwise.

func (*EntitymanagerCreateAttributeOptionsRequest) GetListCodeOk

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

func (*EntitymanagerCreateAttributeOptionsRequest) GetOptions

GetOptions returns the Options field value if set, zero value otherwise.

func (*EntitymanagerCreateAttributeOptionsRequest) GetOptionsOk

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

func (*EntitymanagerCreateAttributeOptionsRequest) GetTenantId

GetTenantId returns the TenantId field value if set, zero value otherwise.

func (*EntitymanagerCreateAttributeOptionsRequest) GetTenantIdOk

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

func (*EntitymanagerCreateAttributeOptionsRequest) HasListCode

HasListCode returns a boolean if a field has been set.

func (*EntitymanagerCreateAttributeOptionsRequest) HasOptions

HasOptions returns a boolean if a field has been set.

func (*EntitymanagerCreateAttributeOptionsRequest) HasTenantId

HasTenantId returns a boolean if a field has been set.

func (EntitymanagerCreateAttributeOptionsRequest) MarshalJSON

func (*EntitymanagerCreateAttributeOptionsRequest) SetListCode

SetListCode gets a reference to the given string and assigns it to the ListCode field.

func (*EntitymanagerCreateAttributeOptionsRequest) SetOptions

SetOptions gets a reference to the given []EntitymanagerAttributeOption and assigns it to the Options field.

func (*EntitymanagerCreateAttributeOptionsRequest) SetTenantId

SetTenantId gets a reference to the given string and assigns it to the TenantId field.

func (EntitymanagerCreateAttributeOptionsRequest) ToMap

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

type EntitymanagerCreateAttributeOptionsResponse

type EntitymanagerCreateAttributeOptionsResponse struct {
	Options []EntitymanagerAttributeOption       `json:"options,omitempty"`
	Errors  []EntitymanagerAttributeOptionErrors `json:"errors,omitempty"`
}

EntitymanagerCreateAttributeOptionsResponse struct for EntitymanagerCreateAttributeOptionsResponse

func NewEntitymanagerCreateAttributeOptionsResponse

func NewEntitymanagerCreateAttributeOptionsResponse() *EntitymanagerCreateAttributeOptionsResponse

NewEntitymanagerCreateAttributeOptionsResponse instantiates a new EntitymanagerCreateAttributeOptionsResponse 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 NewEntitymanagerCreateAttributeOptionsResponseWithDefaults

func NewEntitymanagerCreateAttributeOptionsResponseWithDefaults() *EntitymanagerCreateAttributeOptionsResponse

NewEntitymanagerCreateAttributeOptionsResponseWithDefaults instantiates a new EntitymanagerCreateAttributeOptionsResponse 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 (*EntitymanagerCreateAttributeOptionsResponse) GetErrors

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

func (*EntitymanagerCreateAttributeOptionsResponse) 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 (*EntitymanagerCreateAttributeOptionsResponse) GetOptions

GetOptions returns the Options field value if set, zero value otherwise.

func (*EntitymanagerCreateAttributeOptionsResponse) GetOptionsOk

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

func (*EntitymanagerCreateAttributeOptionsResponse) HasErrors

HasErrors returns a boolean if a field has been set.

func (*EntitymanagerCreateAttributeOptionsResponse) HasOptions

HasOptions returns a boolean if a field has been set.

func (EntitymanagerCreateAttributeOptionsResponse) MarshalJSON

func (*EntitymanagerCreateAttributeOptionsResponse) SetErrors

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

func (*EntitymanagerCreateAttributeOptionsResponse) SetOptions

SetOptions gets a reference to the given []EntitymanagerAttributeOption and assigns it to the Options field.

func (EntitymanagerCreateAttributeOptionsResponse) ToMap

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

type EntitymanagerCreateEntityResponse

type EntitymanagerCreateEntityResponse struct {
	AttributeWriteErrors *EntitymanagerAttributeWriteErrors `json:"attributeWriteErrors,omitempty"`
	Entity               *EntitymanagerEntity               `json:"entity,omitempty"`
}

EntitymanagerCreateEntityResponse struct for EntitymanagerCreateEntityResponse

func NewEntitymanagerCreateEntityResponse

func NewEntitymanagerCreateEntityResponse() *EntitymanagerCreateEntityResponse

NewEntitymanagerCreateEntityResponse instantiates a new EntitymanagerCreateEntityResponse 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 NewEntitymanagerCreateEntityResponseWithDefaults

func NewEntitymanagerCreateEntityResponseWithDefaults() *EntitymanagerCreateEntityResponse

NewEntitymanagerCreateEntityResponseWithDefaults instantiates a new EntitymanagerCreateEntityResponse 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 (*EntitymanagerCreateEntityResponse) GetAttributeWriteErrors

GetAttributeWriteErrors returns the AttributeWriteErrors field value if set, zero value otherwise.

func (*EntitymanagerCreateEntityResponse) GetAttributeWriteErrorsOk

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

func (*EntitymanagerCreateEntityResponse) GetEntity

GetEntity returns the Entity field value if set, zero value otherwise.

func (*EntitymanagerCreateEntityResponse) GetEntityOk

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

func (*EntitymanagerCreateEntityResponse) HasAttributeWriteErrors

func (o *EntitymanagerCreateEntityResponse) HasAttributeWriteErrors() bool

HasAttributeWriteErrors returns a boolean if a field has been set.

func (*EntitymanagerCreateEntityResponse) HasEntity

func (o *EntitymanagerCreateEntityResponse) HasEntity() bool

HasEntity returns a boolean if a field has been set.

func (EntitymanagerCreateEntityResponse) MarshalJSON

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

func (*EntitymanagerCreateEntityResponse) SetAttributeWriteErrors

SetAttributeWriteErrors gets a reference to the given EntitymanagerAttributeWriteErrors and assigns it to the AttributeWriteErrors field.

func (*EntitymanagerCreateEntityResponse) SetEntity

SetEntity gets a reference to the given EntitymanagerEntity and assigns it to the Entity field.

func (EntitymanagerCreateEntityResponse) ToMap

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

type EntitymanagerCreateOptionsListRequest

type EntitymanagerCreateOptionsListRequest struct {
	TenantId   *string                   `json:"tenantId,omitempty"`
	OptionList *EntitymanagerOptionsList `json:"optionList,omitempty"`
}

EntitymanagerCreateOptionsListRequest struct for EntitymanagerCreateOptionsListRequest

func NewEntitymanagerCreateOptionsListRequest

func NewEntitymanagerCreateOptionsListRequest() *EntitymanagerCreateOptionsListRequest

NewEntitymanagerCreateOptionsListRequest instantiates a new EntitymanagerCreateOptionsListRequest 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 NewEntitymanagerCreateOptionsListRequestWithDefaults

func NewEntitymanagerCreateOptionsListRequestWithDefaults() *EntitymanagerCreateOptionsListRequest

NewEntitymanagerCreateOptionsListRequestWithDefaults instantiates a new EntitymanagerCreateOptionsListRequest 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 (*EntitymanagerCreateOptionsListRequest) GetOptionList

GetOptionList returns the OptionList field value if set, zero value otherwise.

func (*EntitymanagerCreateOptionsListRequest) GetOptionListOk

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

func (*EntitymanagerCreateOptionsListRequest) GetTenantId

GetTenantId returns the TenantId field value if set, zero value otherwise.

func (*EntitymanagerCreateOptionsListRequest) GetTenantIdOk

func (o *EntitymanagerCreateOptionsListRequest) GetTenantIdOk() (*string, bool)

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

func (*EntitymanagerCreateOptionsListRequest) HasOptionList

func (o *EntitymanagerCreateOptionsListRequest) HasOptionList() bool

HasOptionList returns a boolean if a field has been set.

func (*EntitymanagerCreateOptionsListRequest) HasTenantId

HasTenantId returns a boolean if a field has been set.

func (EntitymanagerCreateOptionsListRequest) MarshalJSON

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

func (*EntitymanagerCreateOptionsListRequest) SetOptionList

SetOptionList gets a reference to the given EntitymanagerOptionsList and assigns it to the OptionList field.

func (*EntitymanagerCreateOptionsListRequest) SetTenantId

SetTenantId gets a reference to the given string and assigns it to the TenantId field.

func (EntitymanagerCreateOptionsListRequest) ToMap

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

type EntitymanagerCreateOptionsListResponse

type EntitymanagerCreateOptionsListResponse struct {
	OptionList *EntitymanagerOptionsList `json:"optionList,omitempty"`
}

EntitymanagerCreateOptionsListResponse struct for EntitymanagerCreateOptionsListResponse

func NewEntitymanagerCreateOptionsListResponse

func NewEntitymanagerCreateOptionsListResponse() *EntitymanagerCreateOptionsListResponse

NewEntitymanagerCreateOptionsListResponse instantiates a new EntitymanagerCreateOptionsListResponse 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 NewEntitymanagerCreateOptionsListResponseWithDefaults

func NewEntitymanagerCreateOptionsListResponseWithDefaults() *EntitymanagerCreateOptionsListResponse

NewEntitymanagerCreateOptionsListResponseWithDefaults instantiates a new EntitymanagerCreateOptionsListResponse 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 (*EntitymanagerCreateOptionsListResponse) GetOptionList

GetOptionList returns the OptionList field value if set, zero value otherwise.

func (*EntitymanagerCreateOptionsListResponse) GetOptionListOk

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

func (*EntitymanagerCreateOptionsListResponse) HasOptionList

func (o *EntitymanagerCreateOptionsListResponse) HasOptionList() bool

HasOptionList returns a boolean if a field has been set.

func (EntitymanagerCreateOptionsListResponse) MarshalJSON

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

func (*EntitymanagerCreateOptionsListResponse) SetOptionList

SetOptionList gets a reference to the given EntitymanagerOptionsList and assigns it to the OptionList field.

func (EntitymanagerCreateOptionsListResponse) ToMap

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

type EntitymanagerDeleteAttributeRequest

type EntitymanagerDeleteAttributeRequest struct {
	TenantId   *string                        `json:"tenantId,omitempty"`
	EntityData *EntitymanagerEntityIdentifier `json:"entityData,omitempty"`
	EntityId   *string                        `json:"entityId,omitempty"`
	Code       *string                        `json:"code,omitempty"`
}

EntitymanagerDeleteAttributeRequest struct for EntitymanagerDeleteAttributeRequest

func NewEntitymanagerDeleteAttributeRequest

func NewEntitymanagerDeleteAttributeRequest() *EntitymanagerDeleteAttributeRequest

NewEntitymanagerDeleteAttributeRequest instantiates a new EntitymanagerDeleteAttributeRequest 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 NewEntitymanagerDeleteAttributeRequestWithDefaults

func NewEntitymanagerDeleteAttributeRequestWithDefaults() *EntitymanagerDeleteAttributeRequest

NewEntitymanagerDeleteAttributeRequestWithDefaults instantiates a new EntitymanagerDeleteAttributeRequest 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 (*EntitymanagerDeleteAttributeRequest) GetCode

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

func (*EntitymanagerDeleteAttributeRequest) GetCodeOk

func (o *EntitymanagerDeleteAttributeRequest) 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 (*EntitymanagerDeleteAttributeRequest) GetEntityData

GetEntityData returns the EntityData field value if set, zero value otherwise.

func (*EntitymanagerDeleteAttributeRequest) GetEntityDataOk

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

func (*EntitymanagerDeleteAttributeRequest) GetEntityId

GetEntityId returns the EntityId field value if set, zero value otherwise.

func (*EntitymanagerDeleteAttributeRequest) GetEntityIdOk

func (o *EntitymanagerDeleteAttributeRequest) GetEntityIdOk() (*string, bool)

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

func (*EntitymanagerDeleteAttributeRequest) GetTenantId

GetTenantId returns the TenantId field value if set, zero value otherwise.

func (*EntitymanagerDeleteAttributeRequest) GetTenantIdOk

func (o *EntitymanagerDeleteAttributeRequest) GetTenantIdOk() (*string, bool)

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

func (*EntitymanagerDeleteAttributeRequest) HasCode

HasCode returns a boolean if a field has been set.

func (*EntitymanagerDeleteAttributeRequest) HasEntityData

func (o *EntitymanagerDeleteAttributeRequest) HasEntityData() bool

HasEntityData returns a boolean if a field has been set.

func (*EntitymanagerDeleteAttributeRequest) HasEntityId

func (o *EntitymanagerDeleteAttributeRequest) HasEntityId() bool

HasEntityId returns a boolean if a field has been set.

func (*EntitymanagerDeleteAttributeRequest) HasTenantId

func (o *EntitymanagerDeleteAttributeRequest) HasTenantId() bool

HasTenantId returns a boolean if a field has been set.

func (EntitymanagerDeleteAttributeRequest) MarshalJSON

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

func (*EntitymanagerDeleteAttributeRequest) SetCode

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

func (*EntitymanagerDeleteAttributeRequest) SetEntityData

SetEntityData gets a reference to the given EntitymanagerEntityIdentifier and assigns it to the EntityData field.

func (*EntitymanagerDeleteAttributeRequest) SetEntityId

func (o *EntitymanagerDeleteAttributeRequest) SetEntityId(v string)

SetEntityId gets a reference to the given string and assigns it to the EntityId field.

func (*EntitymanagerDeleteAttributeRequest) SetTenantId

func (o *EntitymanagerDeleteAttributeRequest) SetTenantId(v string)

SetTenantId gets a reference to the given string and assigns it to the TenantId field.

func (EntitymanagerDeleteAttributeRequest) ToMap

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

type EntitymanagerEntity

type EntitymanagerEntity struct {
	TenantId      *string                  `json:"tenantId,omitempty"`
	Id            *string                  `json:"id,omitempty"`
	Type          *string                  `json:"type,omitempty"`
	Code          *string                  `json:"code,omitempty"`
	ParentCode    *string                  `json:"parentCode,omitempty"`
	Label         *string                  `json:"label,omitempty"`
	Relationships []string                 `json:"relationships,omitempty"`
	Attributes    []EntitymanagerAttribute `json:"attributes,omitempty"`
}

EntitymanagerEntity struct for EntitymanagerEntity

func NewEntitymanagerEntity

func NewEntitymanagerEntity() *EntitymanagerEntity

NewEntitymanagerEntity instantiates a new EntitymanagerEntity 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 NewEntitymanagerEntityWithDefaults

func NewEntitymanagerEntityWithDefaults() *EntitymanagerEntity

NewEntitymanagerEntityWithDefaults instantiates a new EntitymanagerEntity 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 (*EntitymanagerEntity) GetAttributes

func (o *EntitymanagerEntity) GetAttributes() []EntitymanagerAttribute

GetAttributes returns the Attributes field value if set, zero value otherwise.

func (*EntitymanagerEntity) GetAttributesOk

func (o *EntitymanagerEntity) GetAttributesOk() ([]EntitymanagerAttribute, bool)

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

func (*EntitymanagerEntity) GetCode

func (o *EntitymanagerEntity) GetCode() string

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

func (*EntitymanagerEntity) GetCodeOk

func (o *EntitymanagerEntity) 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 (*EntitymanagerEntity) GetId

func (o *EntitymanagerEntity) GetId() string

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

func (*EntitymanagerEntity) GetIdOk

func (o *EntitymanagerEntity) GetIdOk() (*string, 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 (*EntitymanagerEntity) GetLabel

func (o *EntitymanagerEntity) GetLabel() string

GetLabel returns the Label field value if set, zero value otherwise.

func (*EntitymanagerEntity) GetLabelOk

func (o *EntitymanagerEntity) GetLabelOk() (*string, bool)

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

func (*EntitymanagerEntity) GetParentCode

func (o *EntitymanagerEntity) GetParentCode() string

GetParentCode returns the ParentCode field value if set, zero value otherwise.

func (*EntitymanagerEntity) GetParentCodeOk

func (o *EntitymanagerEntity) GetParentCodeOk() (*string, bool)

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

func (*EntitymanagerEntity) GetRelationships

func (o *EntitymanagerEntity) GetRelationships() []string

GetRelationships returns the Relationships field value if set, zero value otherwise.

func (*EntitymanagerEntity) GetRelationshipsOk

func (o *EntitymanagerEntity) GetRelationshipsOk() ([]string, bool)

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

func (*EntitymanagerEntity) GetTenantId

func (o *EntitymanagerEntity) GetTenantId() string

GetTenantId returns the TenantId field value if set, zero value otherwise.

func (*EntitymanagerEntity) GetTenantIdOk

func (o *EntitymanagerEntity) GetTenantIdOk() (*string, bool)

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

func (*EntitymanagerEntity) GetType

func (o *EntitymanagerEntity) GetType() string

GetType returns the Type field value if set, zero value otherwise.

func (*EntitymanagerEntity) GetTypeOk

func (o *EntitymanagerEntity) GetTypeOk() (*string, bool)

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

func (*EntitymanagerEntity) HasAttributes

func (o *EntitymanagerEntity) HasAttributes() bool

HasAttributes returns a boolean if a field has been set.

func (*EntitymanagerEntity) HasCode

func (o *EntitymanagerEntity) HasCode() bool

HasCode returns a boolean if a field has been set.

func (*EntitymanagerEntity) HasId

func (o *EntitymanagerEntity) HasId() bool

HasId returns a boolean if a field has been set.

func (*EntitymanagerEntity) HasLabel

func (o *EntitymanagerEntity) HasLabel() bool

HasLabel returns a boolean if a field has been set.

func (*EntitymanagerEntity) HasParentCode

func (o *EntitymanagerEntity) HasParentCode() bool

HasParentCode returns a boolean if a field has been set.

func (*EntitymanagerEntity) HasRelationships

func (o *EntitymanagerEntity) HasRelationships() bool

HasRelationships returns a boolean if a field has been set.

func (*EntitymanagerEntity) HasTenantId

func (o *EntitymanagerEntity) HasTenantId() bool

HasTenantId returns a boolean if a field has been set.

func (*EntitymanagerEntity) HasType

func (o *EntitymanagerEntity) HasType() bool

HasType returns a boolean if a field has been set.

func (EntitymanagerEntity) MarshalJSON

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

func (*EntitymanagerEntity) SetAttributes

func (o *EntitymanagerEntity) SetAttributes(v []EntitymanagerAttribute)

SetAttributes gets a reference to the given []EntitymanagerAttribute and assigns it to the Attributes field.

func (*EntitymanagerEntity) SetCode

func (o *EntitymanagerEntity) SetCode(v string)

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

func (*EntitymanagerEntity) SetId

func (o *EntitymanagerEntity) SetId(v string)

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

func (*EntitymanagerEntity) SetLabel

func (o *EntitymanagerEntity) SetLabel(v string)

SetLabel gets a reference to the given string and assigns it to the Label field.

func (*EntitymanagerEntity) SetParentCode

func (o *EntitymanagerEntity) SetParentCode(v string)

SetParentCode gets a reference to the given string and assigns it to the ParentCode field.

func (*EntitymanagerEntity) SetRelationships

func (o *EntitymanagerEntity) SetRelationships(v []string)

SetRelationships gets a reference to the given []string and assigns it to the Relationships field.

func (*EntitymanagerEntity) SetTenantId

func (o *EntitymanagerEntity) SetTenantId(v string)

SetTenantId gets a reference to the given string and assigns it to the TenantId field.

func (*EntitymanagerEntity) SetType

func (o *EntitymanagerEntity) SetType(v string)

SetType gets a reference to the given string and assigns it to the Type field.

func (EntitymanagerEntity) ToMap

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

type EntitymanagerEntityIdentifier

type EntitymanagerEntityIdentifier struct {
	Type *string `json:"type,omitempty"`
	Code *string `json:"code,omitempty"`
}

EntitymanagerEntityIdentifier struct for EntitymanagerEntityIdentifier

func NewEntitymanagerEntityIdentifier

func NewEntitymanagerEntityIdentifier() *EntitymanagerEntityIdentifier

NewEntitymanagerEntityIdentifier instantiates a new EntitymanagerEntityIdentifier 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 NewEntitymanagerEntityIdentifierWithDefaults

func NewEntitymanagerEntityIdentifierWithDefaults() *EntitymanagerEntityIdentifier

NewEntitymanagerEntityIdentifierWithDefaults instantiates a new EntitymanagerEntityIdentifier 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 (*EntitymanagerEntityIdentifier) GetCode

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

func (*EntitymanagerEntityIdentifier) GetCodeOk

func (o *EntitymanagerEntityIdentifier) 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 (*EntitymanagerEntityIdentifier) GetType

GetType returns the Type field value if set, zero value otherwise.

func (*EntitymanagerEntityIdentifier) GetTypeOk

func (o *EntitymanagerEntityIdentifier) GetTypeOk() (*string, bool)

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

func (*EntitymanagerEntityIdentifier) HasCode

func (o *EntitymanagerEntityIdentifier) HasCode() bool

HasCode returns a boolean if a field has been set.

func (*EntitymanagerEntityIdentifier) HasType

func (o *EntitymanagerEntityIdentifier) HasType() bool

HasType returns a boolean if a field has been set.

func (EntitymanagerEntityIdentifier) MarshalJSON

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

func (*EntitymanagerEntityIdentifier) SetCode

func (o *EntitymanagerEntityIdentifier) SetCode(v string)

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

func (*EntitymanagerEntityIdentifier) SetType

func (o *EntitymanagerEntityIdentifier) SetType(v string)

SetType gets a reference to the given string and assigns it to the Type field.

func (EntitymanagerEntityIdentifier) ToMap

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

type EntitymanagerEntityRequest

type EntitymanagerEntityRequest struct {
	TenantId   *string                        `json:"tenantId,omitempty"`
	EntityData *EntitymanagerEntityIdentifier `json:"entityData,omitempty"`
	EntityId   *string                        `json:"entityId,omitempty"`
}

EntitymanagerEntityRequest struct for EntitymanagerEntityRequest

func NewEntitymanagerEntityRequest

func NewEntitymanagerEntityRequest() *EntitymanagerEntityRequest

NewEntitymanagerEntityRequest instantiates a new EntitymanagerEntityRequest 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 NewEntitymanagerEntityRequestWithDefaults

func NewEntitymanagerEntityRequestWithDefaults() *EntitymanagerEntityRequest

NewEntitymanagerEntityRequestWithDefaults instantiates a new EntitymanagerEntityRequest 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 (*EntitymanagerEntityRequest) GetEntityData

GetEntityData returns the EntityData field value if set, zero value otherwise.

func (*EntitymanagerEntityRequest) GetEntityDataOk

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

func (*EntitymanagerEntityRequest) GetEntityId

func (o *EntitymanagerEntityRequest) GetEntityId() string

GetEntityId returns the EntityId field value if set, zero value otherwise.

func (*EntitymanagerEntityRequest) GetEntityIdOk

func (o *EntitymanagerEntityRequest) GetEntityIdOk() (*string, bool)

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

func (*EntitymanagerEntityRequest) GetTenantId

func (o *EntitymanagerEntityRequest) GetTenantId() string

GetTenantId returns the TenantId field value if set, zero value otherwise.

func (*EntitymanagerEntityRequest) GetTenantIdOk

func (o *EntitymanagerEntityRequest) GetTenantIdOk() (*string, bool)

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

func (*EntitymanagerEntityRequest) HasEntityData

func (o *EntitymanagerEntityRequest) HasEntityData() bool

HasEntityData returns a boolean if a field has been set.

func (*EntitymanagerEntityRequest) HasEntityId

func (o *EntitymanagerEntityRequest) HasEntityId() bool

HasEntityId returns a boolean if a field has been set.

func (*EntitymanagerEntityRequest) HasTenantId

func (o *EntitymanagerEntityRequest) HasTenantId() bool

HasTenantId returns a boolean if a field has been set.

func (EntitymanagerEntityRequest) MarshalJSON

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

func (*EntitymanagerEntityRequest) SetEntityData

SetEntityData gets a reference to the given EntitymanagerEntityIdentifier and assigns it to the EntityData field.

func (*EntitymanagerEntityRequest) SetEntityId

func (o *EntitymanagerEntityRequest) SetEntityId(v string)

SetEntityId gets a reference to the given string and assigns it to the EntityId field.

func (*EntitymanagerEntityRequest) SetTenantId

func (o *EntitymanagerEntityRequest) SetTenantId(v string)

SetTenantId gets a reference to the given string and assigns it to the TenantId field.

func (EntitymanagerEntityRequest) ToMap

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

type EntitymanagerGetAttributeGroupRequest

type EntitymanagerGetAttributeGroupRequest struct {
	TenantId *string `json:"tenantId,omitempty"`
	Code     *string `json:"code,omitempty"`
}

EntitymanagerGetAttributeGroupRequest struct for EntitymanagerGetAttributeGroupRequest

func NewEntitymanagerGetAttributeGroupRequest

func NewEntitymanagerGetAttributeGroupRequest() *EntitymanagerGetAttributeGroupRequest

NewEntitymanagerGetAttributeGroupRequest instantiates a new EntitymanagerGetAttributeGroupRequest 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 NewEntitymanagerGetAttributeGroupRequestWithDefaults

func NewEntitymanagerGetAttributeGroupRequestWithDefaults() *EntitymanagerGetAttributeGroupRequest

NewEntitymanagerGetAttributeGroupRequestWithDefaults instantiates a new EntitymanagerGetAttributeGroupRequest 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 (*EntitymanagerGetAttributeGroupRequest) GetCode

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

func (*EntitymanagerGetAttributeGroupRequest) 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 (*EntitymanagerGetAttributeGroupRequest) GetTenantId

GetTenantId returns the TenantId field value if set, zero value otherwise.

func (*EntitymanagerGetAttributeGroupRequest) GetTenantIdOk

func (o *EntitymanagerGetAttributeGroupRequest) GetTenantIdOk() (*string, bool)

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

func (*EntitymanagerGetAttributeGroupRequest) HasCode

HasCode returns a boolean if a field has been set.

func (*EntitymanagerGetAttributeGroupRequest) HasTenantId

HasTenantId returns a boolean if a field has been set.

func (EntitymanagerGetAttributeGroupRequest) MarshalJSON

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

func (*EntitymanagerGetAttributeGroupRequest) SetCode

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

func (*EntitymanagerGetAttributeGroupRequest) SetTenantId

SetTenantId gets a reference to the given string and assigns it to the TenantId field.

func (EntitymanagerGetAttributeGroupRequest) ToMap

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

type EntitymanagerGetAttributeOptionRequest

type EntitymanagerGetAttributeOptionRequest struct {
	TenantId *string `json:"tenantId,omitempty"`
	ListCode *string `json:"listCode,omitempty"`
	OptionId *string `json:"optionId,omitempty"`
}

EntitymanagerGetAttributeOptionRequest struct for EntitymanagerGetAttributeOptionRequest

func NewEntitymanagerGetAttributeOptionRequest

func NewEntitymanagerGetAttributeOptionRequest() *EntitymanagerGetAttributeOptionRequest

NewEntitymanagerGetAttributeOptionRequest instantiates a new EntitymanagerGetAttributeOptionRequest 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 NewEntitymanagerGetAttributeOptionRequestWithDefaults

func NewEntitymanagerGetAttributeOptionRequestWithDefaults() *EntitymanagerGetAttributeOptionRequest

NewEntitymanagerGetAttributeOptionRequestWithDefaults instantiates a new EntitymanagerGetAttributeOptionRequest 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 (*EntitymanagerGetAttributeOptionRequest) GetListCode

GetListCode returns the ListCode field value if set, zero value otherwise.

func (*EntitymanagerGetAttributeOptionRequest) GetListCodeOk

func (o *EntitymanagerGetAttributeOptionRequest) GetListCodeOk() (*string, bool)

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

func (*EntitymanagerGetAttributeOptionRequest) GetOptionId

GetOptionId returns the OptionId field value if set, zero value otherwise.

func (*EntitymanagerGetAttributeOptionRequest) GetOptionIdOk

func (o *EntitymanagerGetAttributeOptionRequest) GetOptionIdOk() (*string, bool)

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

func (*EntitymanagerGetAttributeOptionRequest) GetTenantId

GetTenantId returns the TenantId field value if set, zero value otherwise.

func (*EntitymanagerGetAttributeOptionRequest) GetTenantIdOk

func (o *EntitymanagerGetAttributeOptionRequest) GetTenantIdOk() (*string, bool)

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

func (*EntitymanagerGetAttributeOptionRequest) HasListCode

HasListCode returns a boolean if a field has been set.

func (*EntitymanagerGetAttributeOptionRequest) HasOptionId

HasOptionId returns a boolean if a field has been set.

func (*EntitymanagerGetAttributeOptionRequest) HasTenantId

HasTenantId returns a boolean if a field has been set.

func (EntitymanagerGetAttributeOptionRequest) MarshalJSON

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

func (*EntitymanagerGetAttributeOptionRequest) SetListCode

SetListCode gets a reference to the given string and assigns it to the ListCode field.

func (*EntitymanagerGetAttributeOptionRequest) SetOptionId

SetOptionId gets a reference to the given string and assigns it to the OptionId field.

func (*EntitymanagerGetAttributeOptionRequest) SetTenantId

SetTenantId gets a reference to the given string and assigns it to the TenantId field.

func (EntitymanagerGetAttributeOptionRequest) ToMap

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

type EntitymanagerGetAttributeOptionResponse

type EntitymanagerGetAttributeOptionResponse struct {
	Option *EntitymanagerAttributeOption `json:"option,omitempty"`
}

EntitymanagerGetAttributeOptionResponse struct for EntitymanagerGetAttributeOptionResponse

func NewEntitymanagerGetAttributeOptionResponse

func NewEntitymanagerGetAttributeOptionResponse() *EntitymanagerGetAttributeOptionResponse

NewEntitymanagerGetAttributeOptionResponse instantiates a new EntitymanagerGetAttributeOptionResponse 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 NewEntitymanagerGetAttributeOptionResponseWithDefaults

func NewEntitymanagerGetAttributeOptionResponseWithDefaults() *EntitymanagerGetAttributeOptionResponse

NewEntitymanagerGetAttributeOptionResponseWithDefaults instantiates a new EntitymanagerGetAttributeOptionResponse 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 (*EntitymanagerGetAttributeOptionResponse) GetOption

GetOption returns the Option field value if set, zero value otherwise.

func (*EntitymanagerGetAttributeOptionResponse) GetOptionOk

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

func (*EntitymanagerGetAttributeOptionResponse) HasOption

HasOption returns a boolean if a field has been set.

func (EntitymanagerGetAttributeOptionResponse) MarshalJSON

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

func (*EntitymanagerGetAttributeOptionResponse) SetOption

SetOption gets a reference to the given EntitymanagerAttributeOption and assigns it to the Option field.

func (EntitymanagerGetAttributeOptionResponse) ToMap

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

type EntitymanagerGetAttributeOptionsRequest

type EntitymanagerGetAttributeOptionsRequest struct {
	TenantId  *string                                         `json:"tenantId,omitempty"`
	OptionIds []EntitymanagerGetAttributeOptionsRequestOption `json:"optionIds,omitempty"`
}

EntitymanagerGetAttributeOptionsRequest struct for EntitymanagerGetAttributeOptionsRequest

func NewEntitymanagerGetAttributeOptionsRequest

func NewEntitymanagerGetAttributeOptionsRequest() *EntitymanagerGetAttributeOptionsRequest

NewEntitymanagerGetAttributeOptionsRequest instantiates a new EntitymanagerGetAttributeOptionsRequest 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 NewEntitymanagerGetAttributeOptionsRequestWithDefaults

func NewEntitymanagerGetAttributeOptionsRequestWithDefaults() *EntitymanagerGetAttributeOptionsRequest

NewEntitymanagerGetAttributeOptionsRequestWithDefaults instantiates a new EntitymanagerGetAttributeOptionsRequest 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 (*EntitymanagerGetAttributeOptionsRequest) GetOptionIds

GetOptionIds returns the OptionIds field value if set, zero value otherwise.

func (*EntitymanagerGetAttributeOptionsRequest) GetOptionIdsOk

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

func (*EntitymanagerGetAttributeOptionsRequest) GetTenantId

GetTenantId returns the TenantId field value if set, zero value otherwise.

func (*EntitymanagerGetAttributeOptionsRequest) GetTenantIdOk

func (o *EntitymanagerGetAttributeOptionsRequest) GetTenantIdOk() (*string, bool)

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

func (*EntitymanagerGetAttributeOptionsRequest) HasOptionIds

HasOptionIds returns a boolean if a field has been set.

func (*EntitymanagerGetAttributeOptionsRequest) HasTenantId

HasTenantId returns a boolean if a field has been set.

func (EntitymanagerGetAttributeOptionsRequest) MarshalJSON

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

func (*EntitymanagerGetAttributeOptionsRequest) SetOptionIds

SetOptionIds gets a reference to the given []EntitymanagerGetAttributeOptionsRequestOption and assigns it to the OptionIds field.

func (*EntitymanagerGetAttributeOptionsRequest) SetTenantId

SetTenantId gets a reference to the given string and assigns it to the TenantId field.

func (EntitymanagerGetAttributeOptionsRequest) ToMap

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

type EntitymanagerGetAttributeOptionsRequestOption

type EntitymanagerGetAttributeOptionsRequestOption struct {
	ListCode *string `json:"listCode,omitempty"`
	OptionId *string `json:"optionId,omitempty"`
}

EntitymanagerGetAttributeOptionsRequestOption struct for EntitymanagerGetAttributeOptionsRequestOption

func NewEntitymanagerGetAttributeOptionsRequestOption

func NewEntitymanagerGetAttributeOptionsRequestOption() *EntitymanagerGetAttributeOptionsRequestOption

NewEntitymanagerGetAttributeOptionsRequestOption instantiates a new EntitymanagerGetAttributeOptionsRequestOption 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 NewEntitymanagerGetAttributeOptionsRequestOptionWithDefaults

func NewEntitymanagerGetAttributeOptionsRequestOptionWithDefaults() *EntitymanagerGetAttributeOptionsRequestOption

NewEntitymanagerGetAttributeOptionsRequestOptionWithDefaults instantiates a new EntitymanagerGetAttributeOptionsRequestOption 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 (*EntitymanagerGetAttributeOptionsRequestOption) GetListCode

GetListCode returns the ListCode field value if set, zero value otherwise.

func (*EntitymanagerGetAttributeOptionsRequestOption) GetListCodeOk

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

func (*EntitymanagerGetAttributeOptionsRequestOption) GetOptionId

GetOptionId returns the OptionId field value if set, zero value otherwise.

func (*EntitymanagerGetAttributeOptionsRequestOption) GetOptionIdOk

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

func (*EntitymanagerGetAttributeOptionsRequestOption) HasListCode

HasListCode returns a boolean if a field has been set.

func (*EntitymanagerGetAttributeOptionsRequestOption) HasOptionId

HasOptionId returns a boolean if a field has been set.

func (EntitymanagerGetAttributeOptionsRequestOption) MarshalJSON

func (*EntitymanagerGetAttributeOptionsRequestOption) SetListCode

SetListCode gets a reference to the given string and assigns it to the ListCode field.

func (*EntitymanagerGetAttributeOptionsRequestOption) SetOptionId

SetOptionId gets a reference to the given string and assigns it to the OptionId field.

func (EntitymanagerGetAttributeOptionsRequestOption) ToMap

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

type EntitymanagerGetAttributeOptionsResponse

type EntitymanagerGetAttributeOptionsResponse struct {
	Options []EntitymanagerGetAttributeOptionsResponseOption `json:"options,omitempty"`
}

EntitymanagerGetAttributeOptionsResponse struct for EntitymanagerGetAttributeOptionsResponse

func NewEntitymanagerGetAttributeOptionsResponse

func NewEntitymanagerGetAttributeOptionsResponse() *EntitymanagerGetAttributeOptionsResponse

NewEntitymanagerGetAttributeOptionsResponse instantiates a new EntitymanagerGetAttributeOptionsResponse 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 NewEntitymanagerGetAttributeOptionsResponseWithDefaults

func NewEntitymanagerGetAttributeOptionsResponseWithDefaults() *EntitymanagerGetAttributeOptionsResponse

NewEntitymanagerGetAttributeOptionsResponseWithDefaults instantiates a new EntitymanagerGetAttributeOptionsResponse 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 (*EntitymanagerGetAttributeOptionsResponse) GetOptions

GetOptions returns the Options field value if set, zero value otherwise.

func (*EntitymanagerGetAttributeOptionsResponse) GetOptionsOk

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

func (*EntitymanagerGetAttributeOptionsResponse) HasOptions

HasOptions returns a boolean if a field has been set.

func (EntitymanagerGetAttributeOptionsResponse) MarshalJSON

func (*EntitymanagerGetAttributeOptionsResponse) SetOptions

SetOptions gets a reference to the given []EntitymanagerGetAttributeOptionsResponseOption and assigns it to the Options field.

func (EntitymanagerGetAttributeOptionsResponse) ToMap

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

type EntitymanagerGetAttributeOptionsResponseOption

type EntitymanagerGetAttributeOptionsResponseOption struct {
	ListCode *string                       `json:"listCode,omitempty"`
	Option   *EntitymanagerAttributeOption `json:"option,omitempty"`
}

EntitymanagerGetAttributeOptionsResponseOption struct for EntitymanagerGetAttributeOptionsResponseOption

func NewEntitymanagerGetAttributeOptionsResponseOption

func NewEntitymanagerGetAttributeOptionsResponseOption() *EntitymanagerGetAttributeOptionsResponseOption

NewEntitymanagerGetAttributeOptionsResponseOption instantiates a new EntitymanagerGetAttributeOptionsResponseOption 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 NewEntitymanagerGetAttributeOptionsResponseOptionWithDefaults

func NewEntitymanagerGetAttributeOptionsResponseOptionWithDefaults() *EntitymanagerGetAttributeOptionsResponseOption

NewEntitymanagerGetAttributeOptionsResponseOptionWithDefaults instantiates a new EntitymanagerGetAttributeOptionsResponseOption 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 (*EntitymanagerGetAttributeOptionsResponseOption) GetListCode

GetListCode returns the ListCode field value if set, zero value otherwise.

func (*EntitymanagerGetAttributeOptionsResponseOption) GetListCodeOk

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

func (*EntitymanagerGetAttributeOptionsResponseOption) GetOption

GetOption returns the Option field value if set, zero value otherwise.

func (*EntitymanagerGetAttributeOptionsResponseOption) GetOptionOk

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

func (*EntitymanagerGetAttributeOptionsResponseOption) HasListCode

HasListCode returns a boolean if a field has been set.

func (*EntitymanagerGetAttributeOptionsResponseOption) HasOption

HasOption returns a boolean if a field has been set.

func (EntitymanagerGetAttributeOptionsResponseOption) MarshalJSON

func (*EntitymanagerGetAttributeOptionsResponseOption) SetListCode

SetListCode gets a reference to the given string and assigns it to the ListCode field.

func (*EntitymanagerGetAttributeOptionsResponseOption) SetOption

SetOption gets a reference to the given EntitymanagerAttributeOption and assigns it to the Option field.

func (EntitymanagerGetAttributeOptionsResponseOption) ToMap

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

type EntitymanagerGetOptionsListRequest

type EntitymanagerGetOptionsListRequest struct {
	TenantId *string `json:"tenantId,omitempty"`
	ListCode *string `json:"listCode,omitempty"`
}

EntitymanagerGetOptionsListRequest struct for EntitymanagerGetOptionsListRequest

func NewEntitymanagerGetOptionsListRequest

func NewEntitymanagerGetOptionsListRequest() *EntitymanagerGetOptionsListRequest

NewEntitymanagerGetOptionsListRequest instantiates a new EntitymanagerGetOptionsListRequest 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 NewEntitymanagerGetOptionsListRequestWithDefaults

func NewEntitymanagerGetOptionsListRequestWithDefaults() *EntitymanagerGetOptionsListRequest

NewEntitymanagerGetOptionsListRequestWithDefaults instantiates a new EntitymanagerGetOptionsListRequest 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 (*EntitymanagerGetOptionsListRequest) GetListCode

func (o *EntitymanagerGetOptionsListRequest) GetListCode() string

GetListCode returns the ListCode field value if set, zero value otherwise.

func (*EntitymanagerGetOptionsListRequest) GetListCodeOk

func (o *EntitymanagerGetOptionsListRequest) GetListCodeOk() (*string, bool)

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

func (*EntitymanagerGetOptionsListRequest) GetTenantId

func (o *EntitymanagerGetOptionsListRequest) GetTenantId() string

GetTenantId returns the TenantId field value if set, zero value otherwise.

func (*EntitymanagerGetOptionsListRequest) GetTenantIdOk

func (o *EntitymanagerGetOptionsListRequest) GetTenantIdOk() (*string, bool)

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

func (*EntitymanagerGetOptionsListRequest) HasListCode

func (o *EntitymanagerGetOptionsListRequest) HasListCode() bool

HasListCode returns a boolean if a field has been set.

func (*EntitymanagerGetOptionsListRequest) HasTenantId

func (o *EntitymanagerGetOptionsListRequest) HasTenantId() bool

HasTenantId returns a boolean if a field has been set.

func (EntitymanagerGetOptionsListRequest) MarshalJSON

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

func (*EntitymanagerGetOptionsListRequest) SetListCode

func (o *EntitymanagerGetOptionsListRequest) SetListCode(v string)

SetListCode gets a reference to the given string and assigns it to the ListCode field.

func (*EntitymanagerGetOptionsListRequest) SetTenantId

func (o *EntitymanagerGetOptionsListRequest) SetTenantId(v string)

SetTenantId gets a reference to the given string and assigns it to the TenantId field.

func (EntitymanagerGetOptionsListRequest) ToMap

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

type EntitymanagerGetOptionsListResponse

type EntitymanagerGetOptionsListResponse struct {
	OptionList *EntitymanagerOptionsList `json:"optionList,omitempty"`
}

EntitymanagerGetOptionsListResponse struct for EntitymanagerGetOptionsListResponse

func NewEntitymanagerGetOptionsListResponse

func NewEntitymanagerGetOptionsListResponse() *EntitymanagerGetOptionsListResponse

NewEntitymanagerGetOptionsListResponse instantiates a new EntitymanagerGetOptionsListResponse 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 NewEntitymanagerGetOptionsListResponseWithDefaults

func NewEntitymanagerGetOptionsListResponseWithDefaults() *EntitymanagerGetOptionsListResponse

NewEntitymanagerGetOptionsListResponseWithDefaults instantiates a new EntitymanagerGetOptionsListResponse 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 (*EntitymanagerGetOptionsListResponse) GetOptionList

GetOptionList returns the OptionList field value if set, zero value otherwise.

func (*EntitymanagerGetOptionsListResponse) GetOptionListOk

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

func (*EntitymanagerGetOptionsListResponse) HasOptionList

func (o *EntitymanagerGetOptionsListResponse) HasOptionList() bool

HasOptionList returns a boolean if a field has been set.

func (EntitymanagerGetOptionsListResponse) MarshalJSON

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

func (*EntitymanagerGetOptionsListResponse) SetOptionList

SetOptionList gets a reference to the given EntitymanagerOptionsList and assigns it to the OptionList field.

func (EntitymanagerGetOptionsListResponse) ToMap

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

type EntitymanagerListAttributeGroupsRequest

type EntitymanagerListAttributeGroupsRequest struct {
	TenantId *string `json:"tenantId,omitempty"`
}

EntitymanagerListAttributeGroupsRequest struct for EntitymanagerListAttributeGroupsRequest

func NewEntitymanagerListAttributeGroupsRequest

func NewEntitymanagerListAttributeGroupsRequest() *EntitymanagerListAttributeGroupsRequest

NewEntitymanagerListAttributeGroupsRequest instantiates a new EntitymanagerListAttributeGroupsRequest 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 NewEntitymanagerListAttributeGroupsRequestWithDefaults

func NewEntitymanagerListAttributeGroupsRequestWithDefaults() *EntitymanagerListAttributeGroupsRequest

NewEntitymanagerListAttributeGroupsRequestWithDefaults instantiates a new EntitymanagerListAttributeGroupsRequest 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 (*EntitymanagerListAttributeGroupsRequest) GetTenantId

GetTenantId returns the TenantId field value if set, zero value otherwise.

func (*EntitymanagerListAttributeGroupsRequest) GetTenantIdOk

func (o *EntitymanagerListAttributeGroupsRequest) GetTenantIdOk() (*string, bool)

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

func (*EntitymanagerListAttributeGroupsRequest) HasTenantId

HasTenantId returns a boolean if a field has been set.

func (EntitymanagerListAttributeGroupsRequest) MarshalJSON

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

func (*EntitymanagerListAttributeGroupsRequest) SetTenantId

SetTenantId gets a reference to the given string and assigns it to the TenantId field.

func (EntitymanagerListAttributeGroupsRequest) ToMap

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

type EntitymanagerListAttributeGroupsResponse

type EntitymanagerListAttributeGroupsResponse struct {
	AttributeGroups []EntitymanagerAttributeGroup `json:"attributeGroups,omitempty"`
}

EntitymanagerListAttributeGroupsResponse struct for EntitymanagerListAttributeGroupsResponse

func NewEntitymanagerListAttributeGroupsResponse

func NewEntitymanagerListAttributeGroupsResponse() *EntitymanagerListAttributeGroupsResponse

NewEntitymanagerListAttributeGroupsResponse instantiates a new EntitymanagerListAttributeGroupsResponse 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 NewEntitymanagerListAttributeGroupsResponseWithDefaults

func NewEntitymanagerListAttributeGroupsResponseWithDefaults() *EntitymanagerListAttributeGroupsResponse

NewEntitymanagerListAttributeGroupsResponseWithDefaults instantiates a new EntitymanagerListAttributeGroupsResponse 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 (*EntitymanagerListAttributeGroupsResponse) GetAttributeGroups

GetAttributeGroups returns the AttributeGroups field value if set, zero value otherwise.

func (*EntitymanagerListAttributeGroupsResponse) GetAttributeGroupsOk

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

func (*EntitymanagerListAttributeGroupsResponse) HasAttributeGroups

func (o *EntitymanagerListAttributeGroupsResponse) HasAttributeGroups() bool

HasAttributeGroups returns a boolean if a field has been set.

func (EntitymanagerListAttributeGroupsResponse) MarshalJSON

func (*EntitymanagerListAttributeGroupsResponse) SetAttributeGroups

SetAttributeGroups gets a reference to the given []EntitymanagerAttributeGroup and assigns it to the AttributeGroups field.

func (EntitymanagerListAttributeGroupsResponse) ToMap

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

type EntitymanagerListAttributeOptionsRequest

type EntitymanagerListAttributeOptionsRequest struct {
	TenantId *string `json:"tenantId,omitempty"`
	ListCode *string `json:"listCode,omitempty"`
}

EntitymanagerListAttributeOptionsRequest struct for EntitymanagerListAttributeOptionsRequest

func NewEntitymanagerListAttributeOptionsRequest

func NewEntitymanagerListAttributeOptionsRequest() *EntitymanagerListAttributeOptionsRequest

NewEntitymanagerListAttributeOptionsRequest instantiates a new EntitymanagerListAttributeOptionsRequest 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 NewEntitymanagerListAttributeOptionsRequestWithDefaults

func NewEntitymanagerListAttributeOptionsRequestWithDefaults() *EntitymanagerListAttributeOptionsRequest

NewEntitymanagerListAttributeOptionsRequestWithDefaults instantiates a new EntitymanagerListAttributeOptionsRequest 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 (*EntitymanagerListAttributeOptionsRequest) GetListCode

GetListCode returns the ListCode field value if set, zero value otherwise.

func (*EntitymanagerListAttributeOptionsRequest) GetListCodeOk

func (o *EntitymanagerListAttributeOptionsRequest) GetListCodeOk() (*string, bool)

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

func (*EntitymanagerListAttributeOptionsRequest) GetTenantId

GetTenantId returns the TenantId field value if set, zero value otherwise.

func (*EntitymanagerListAttributeOptionsRequest) GetTenantIdOk

func (o *EntitymanagerListAttributeOptionsRequest) GetTenantIdOk() (*string, bool)

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

func (*EntitymanagerListAttributeOptionsRequest) HasListCode

HasListCode returns a boolean if a field has been set.

func (*EntitymanagerListAttributeOptionsRequest) HasTenantId

HasTenantId returns a boolean if a field has been set.

func (EntitymanagerListAttributeOptionsRequest) MarshalJSON

func (*EntitymanagerListAttributeOptionsRequest) SetListCode

SetListCode gets a reference to the given string and assigns it to the ListCode field.

func (*EntitymanagerListAttributeOptionsRequest) SetTenantId

SetTenantId gets a reference to the given string and assigns it to the TenantId field.

func (EntitymanagerListAttributeOptionsRequest) ToMap

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

type EntitymanagerListAttributeOptionsResponse

type EntitymanagerListAttributeOptionsResponse struct {
	Options []EntitymanagerAttributeOption `json:"options,omitempty"`
}

EntitymanagerListAttributeOptionsResponse struct for EntitymanagerListAttributeOptionsResponse

func NewEntitymanagerListAttributeOptionsResponse

func NewEntitymanagerListAttributeOptionsResponse() *EntitymanagerListAttributeOptionsResponse

NewEntitymanagerListAttributeOptionsResponse instantiates a new EntitymanagerListAttributeOptionsResponse 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 NewEntitymanagerListAttributeOptionsResponseWithDefaults

func NewEntitymanagerListAttributeOptionsResponseWithDefaults() *EntitymanagerListAttributeOptionsResponse

NewEntitymanagerListAttributeOptionsResponseWithDefaults instantiates a new EntitymanagerListAttributeOptionsResponse 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 (*EntitymanagerListAttributeOptionsResponse) GetOptions

GetOptions returns the Options field value if set, zero value otherwise.

func (*EntitymanagerListAttributeOptionsResponse) GetOptionsOk

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

func (*EntitymanagerListAttributeOptionsResponse) HasOptions

HasOptions returns a boolean if a field has been set.

func (EntitymanagerListAttributeOptionsResponse) MarshalJSON

func (*EntitymanagerListAttributeOptionsResponse) SetOptions

SetOptions gets a reference to the given []EntitymanagerAttributeOption and assigns it to the Options field.

func (EntitymanagerListAttributeOptionsResponse) ToMap

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

type EntitymanagerListEntitiesRequest

type EntitymanagerListEntitiesRequest struct {
	TenantId *string `json:"tenantId,omitempty"`
	PageSize *int32  `json:"pageSize,omitempty"`
}

EntitymanagerListEntitiesRequest struct for EntitymanagerListEntitiesRequest

func NewEntitymanagerListEntitiesRequest

func NewEntitymanagerListEntitiesRequest() *EntitymanagerListEntitiesRequest

NewEntitymanagerListEntitiesRequest instantiates a new EntitymanagerListEntitiesRequest 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 NewEntitymanagerListEntitiesRequestWithDefaults

func NewEntitymanagerListEntitiesRequestWithDefaults() *EntitymanagerListEntitiesRequest

NewEntitymanagerListEntitiesRequestWithDefaults instantiates a new EntitymanagerListEntitiesRequest 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 (*EntitymanagerListEntitiesRequest) GetPageSize

func (o *EntitymanagerListEntitiesRequest) GetPageSize() int32

GetPageSize returns the PageSize field value if set, zero value otherwise.

func (*EntitymanagerListEntitiesRequest) GetPageSizeOk

func (o *EntitymanagerListEntitiesRequest) GetPageSizeOk() (*int32, bool)

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

func (*EntitymanagerListEntitiesRequest) GetTenantId

func (o *EntitymanagerListEntitiesRequest) GetTenantId() string

GetTenantId returns the TenantId field value if set, zero value otherwise.

func (*EntitymanagerListEntitiesRequest) GetTenantIdOk

func (o *EntitymanagerListEntitiesRequest) GetTenantIdOk() (*string, bool)

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

func (*EntitymanagerListEntitiesRequest) HasPageSize

func (o *EntitymanagerListEntitiesRequest) HasPageSize() bool

HasPageSize returns a boolean if a field has been set.

func (*EntitymanagerListEntitiesRequest) HasTenantId

func (o *EntitymanagerListEntitiesRequest) HasTenantId() bool

HasTenantId returns a boolean if a field has been set.

func (EntitymanagerListEntitiesRequest) MarshalJSON

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

func (*EntitymanagerListEntitiesRequest) SetPageSize

func (o *EntitymanagerListEntitiesRequest) SetPageSize(v int32)

SetPageSize gets a reference to the given int32 and assigns it to the PageSize field.

func (*EntitymanagerListEntitiesRequest) SetTenantId

func (o *EntitymanagerListEntitiesRequest) SetTenantId(v string)

SetTenantId gets a reference to the given string and assigns it to the TenantId field.

func (EntitymanagerListEntitiesRequest) ToMap

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

type EntitymanagerListEntitiesResponse

type EntitymanagerListEntitiesResponse struct {
	Entities []EntitymanagerEntity `json:"entities,omitempty"`
	NextPage *int32                `json:"nextPage,omitempty"`
}

EntitymanagerListEntitiesResponse struct for EntitymanagerListEntitiesResponse

func NewEntitymanagerListEntitiesResponse

func NewEntitymanagerListEntitiesResponse() *EntitymanagerListEntitiesResponse

NewEntitymanagerListEntitiesResponse instantiates a new EntitymanagerListEntitiesResponse 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 NewEntitymanagerListEntitiesResponseWithDefaults

func NewEntitymanagerListEntitiesResponseWithDefaults() *EntitymanagerListEntitiesResponse

NewEntitymanagerListEntitiesResponseWithDefaults instantiates a new EntitymanagerListEntitiesResponse 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 (*EntitymanagerListEntitiesResponse) GetEntities

GetEntities returns the Entities field value if set, zero value otherwise.

func (*EntitymanagerListEntitiesResponse) GetEntitiesOk

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

func (*EntitymanagerListEntitiesResponse) GetNextPage

func (o *EntitymanagerListEntitiesResponse) GetNextPage() int32

GetNextPage returns the NextPage field value if set, zero value otherwise.

func (*EntitymanagerListEntitiesResponse) GetNextPageOk

func (o *EntitymanagerListEntitiesResponse) GetNextPageOk() (*int32, bool)

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

func (*EntitymanagerListEntitiesResponse) HasEntities

func (o *EntitymanagerListEntitiesResponse) HasEntities() bool

HasEntities returns a boolean if a field has been set.

func (*EntitymanagerListEntitiesResponse) HasNextPage

func (o *EntitymanagerListEntitiesResponse) HasNextPage() bool

HasNextPage returns a boolean if a field has been set.

func (EntitymanagerListEntitiesResponse) MarshalJSON

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

func (*EntitymanagerListEntitiesResponse) SetEntities

SetEntities gets a reference to the given []EntitymanagerEntity and assigns it to the Entities field.

func (*EntitymanagerListEntitiesResponse) SetNextPage

func (o *EntitymanagerListEntitiesResponse) SetNextPage(v int32)

SetNextPage gets a reference to the given int32 and assigns it to the NextPage field.

func (EntitymanagerListEntitiesResponse) ToMap

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

type EntitymanagerListOptionsListsRequest

type EntitymanagerListOptionsListsRequest struct {
	TenantId *string `json:"tenantId,omitempty"`
}

EntitymanagerListOptionsListsRequest struct for EntitymanagerListOptionsListsRequest

func NewEntitymanagerListOptionsListsRequest

func NewEntitymanagerListOptionsListsRequest() *EntitymanagerListOptionsListsRequest

NewEntitymanagerListOptionsListsRequest instantiates a new EntitymanagerListOptionsListsRequest 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 NewEntitymanagerListOptionsListsRequestWithDefaults

func NewEntitymanagerListOptionsListsRequestWithDefaults() *EntitymanagerListOptionsListsRequest

NewEntitymanagerListOptionsListsRequestWithDefaults instantiates a new EntitymanagerListOptionsListsRequest 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 (*EntitymanagerListOptionsListsRequest) GetTenantId

GetTenantId returns the TenantId field value if set, zero value otherwise.

func (*EntitymanagerListOptionsListsRequest) GetTenantIdOk

func (o *EntitymanagerListOptionsListsRequest) GetTenantIdOk() (*string, bool)

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

func (*EntitymanagerListOptionsListsRequest) HasTenantId

func (o *EntitymanagerListOptionsListsRequest) HasTenantId() bool

HasTenantId returns a boolean if a field has been set.

func (EntitymanagerListOptionsListsRequest) MarshalJSON

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

func (*EntitymanagerListOptionsListsRequest) SetTenantId

func (o *EntitymanagerListOptionsListsRequest) SetTenantId(v string)

SetTenantId gets a reference to the given string and assigns it to the TenantId field.

func (EntitymanagerListOptionsListsRequest) ToMap

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

type EntitymanagerListOptionsListsResponse

type EntitymanagerListOptionsListsResponse struct {
	Options []EntitymanagerOptionsList `json:"options,omitempty"`
}

EntitymanagerListOptionsListsResponse struct for EntitymanagerListOptionsListsResponse

func NewEntitymanagerListOptionsListsResponse

func NewEntitymanagerListOptionsListsResponse() *EntitymanagerListOptionsListsResponse

NewEntitymanagerListOptionsListsResponse instantiates a new EntitymanagerListOptionsListsResponse 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 NewEntitymanagerListOptionsListsResponseWithDefaults

func NewEntitymanagerListOptionsListsResponseWithDefaults() *EntitymanagerListOptionsListsResponse

NewEntitymanagerListOptionsListsResponseWithDefaults instantiates a new EntitymanagerListOptionsListsResponse 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 (*EntitymanagerListOptionsListsResponse) GetOptions

GetOptions returns the Options field value if set, zero value otherwise.

func (*EntitymanagerListOptionsListsResponse) GetOptionsOk

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

func (*EntitymanagerListOptionsListsResponse) HasOptions

HasOptions returns a boolean if a field has been set.

func (EntitymanagerListOptionsListsResponse) MarshalJSON

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

func (*EntitymanagerListOptionsListsResponse) SetOptions

SetOptions gets a reference to the given []EntitymanagerOptionsList and assigns it to the Options field.

func (EntitymanagerListOptionsListsResponse) ToMap

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

type EntitymanagerOptionsList

type EntitymanagerOptionsList struct {
	Code *string `json:"code,omitempty"`
	Name *string `json:"name,omitempty"`
}

EntitymanagerOptionsList struct for EntitymanagerOptionsList

func NewEntitymanagerOptionsList

func NewEntitymanagerOptionsList() *EntitymanagerOptionsList

NewEntitymanagerOptionsList instantiates a new EntitymanagerOptionsList 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 NewEntitymanagerOptionsListWithDefaults

func NewEntitymanagerOptionsListWithDefaults() *EntitymanagerOptionsList

NewEntitymanagerOptionsListWithDefaults instantiates a new EntitymanagerOptionsList 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 (*EntitymanagerOptionsList) GetCode

func (o *EntitymanagerOptionsList) GetCode() string

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

func (*EntitymanagerOptionsList) GetCodeOk

func (o *EntitymanagerOptionsList) 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 (*EntitymanagerOptionsList) GetName

func (o *EntitymanagerOptionsList) GetName() string

GetName returns the Name field value if set, zero value otherwise.

func (*EntitymanagerOptionsList) GetNameOk

func (o *EntitymanagerOptionsList) 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 (*EntitymanagerOptionsList) HasCode

func (o *EntitymanagerOptionsList) HasCode() bool

HasCode returns a boolean if a field has been set.

func (*EntitymanagerOptionsList) HasName

func (o *EntitymanagerOptionsList) HasName() bool

HasName returns a boolean if a field has been set.

func (EntitymanagerOptionsList) MarshalJSON

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

func (*EntitymanagerOptionsList) SetCode

func (o *EntitymanagerOptionsList) SetCode(v string)

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

func (*EntitymanagerOptionsList) SetName

func (o *EntitymanagerOptionsList) SetName(v string)

SetName gets a reference to the given string and assigns it to the Name field.

func (EntitymanagerOptionsList) ToMap

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

type EntitymanagerRenderAs

type EntitymanagerRenderAs string

EntitymanagerRenderAs the model 'EntitymanagerRenderAs'

const (
	ENTITYMANAGERRENDERAS_DEFAULT EntitymanagerRenderAs = "DEFAULT"
	ENTITYMANAGERRENDERAS_WYSIWYG EntitymanagerRenderAs = "WYSIWYG"
)

List of entitymanagerRenderAs

func NewEntitymanagerRenderAsFromValue

func NewEntitymanagerRenderAsFromValue(v string) (*EntitymanagerRenderAs, error)

NewEntitymanagerRenderAsFromValue returns a pointer to a valid EntitymanagerRenderAs for the value passed as argument, or an error if the value passed is not allowed by the enum

func (EntitymanagerRenderAs) IsValid

func (v EntitymanagerRenderAs) IsValid() bool

IsValid return true if the value is valid for the enum, false otherwise

func (EntitymanagerRenderAs) Ptr

Ptr returns reference to entitymanagerRenderAs value

func (*EntitymanagerRenderAs) UnmarshalJSON

func (v *EntitymanagerRenderAs) UnmarshalJSON(src []byte) error

type EntitymanagerTypes

type EntitymanagerTypes string

EntitymanagerTypes the model 'EntitymanagerTypes'

const (
	ENTITYMANAGERTYPES_TEXT     EntitymanagerTypes = "TEXT"
	ENTITYMANAGERTYPES_NUMBER   EntitymanagerTypes = "NUMBER"
	ENTITYMANAGERTYPES_BOOLEAN  EntitymanagerTypes = "BOOLEAN"
	ENTITYMANAGERTYPES_DATETIME EntitymanagerTypes = "DATETIME"
	ENTITYMANAGERTYPES_EXTERNAL EntitymanagerTypes = "EXTERNAL"
	ENTITYMANAGERTYPES_EMBED    EntitymanagerTypes = "EMBED"
	ENTITYMANAGERTYPES_FLOAT32  EntitymanagerTypes = "FLOAT32"
)

List of entitymanagerTypes

func NewEntitymanagerTypesFromValue

func NewEntitymanagerTypesFromValue(v string) (*EntitymanagerTypes, error)

NewEntitymanagerTypesFromValue returns a pointer to a valid EntitymanagerTypes for the value passed as argument, or an error if the value passed is not allowed by the enum

func (EntitymanagerTypes) IsValid

func (v EntitymanagerTypes) IsValid() bool

IsValid return true if the value is valid for the enum, false otherwise

func (EntitymanagerTypes) Ptr

Ptr returns reference to entitymanagerTypes value

func (*EntitymanagerTypes) UnmarshalJSON

func (v *EntitymanagerTypes) UnmarshalJSON(src []byte) error

type EntitymanagerUpdateAttributeGroupRequest

type EntitymanagerUpdateAttributeGroupRequest struct {
	TenantId  *string                                          `json:"tenantId,omitempty"`
	Code      *string                                          `json:"code,omitempty"`
	Payload   *EntitymanagerUpdateAttributeGroupRequestPayload `json:"payload,omitempty"`
	FieldMask *string                                          `json:"fieldMask,omitempty"`
}

EntitymanagerUpdateAttributeGroupRequest struct for EntitymanagerUpdateAttributeGroupRequest

func NewEntitymanagerUpdateAttributeGroupRequest

func NewEntitymanagerUpdateAttributeGroupRequest() *EntitymanagerUpdateAttributeGroupRequest

NewEntitymanagerUpdateAttributeGroupRequest instantiates a new EntitymanagerUpdateAttributeGroupRequest 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 NewEntitymanagerUpdateAttributeGroupRequestWithDefaults

func NewEntitymanagerUpdateAttributeGroupRequestWithDefaults() *EntitymanagerUpdateAttributeGroupRequest

NewEntitymanagerUpdateAttributeGroupRequestWithDefaults instantiates a new EntitymanagerUpdateAttributeGroupRequest 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 (*EntitymanagerUpdateAttributeGroupRequest) GetCode

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

func (*EntitymanagerUpdateAttributeGroupRequest) 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 (*EntitymanagerUpdateAttributeGroupRequest) GetFieldMask

GetFieldMask returns the FieldMask field value if set, zero value otherwise.

func (*EntitymanagerUpdateAttributeGroupRequest) GetFieldMaskOk

func (o *EntitymanagerUpdateAttributeGroupRequest) GetFieldMaskOk() (*string, bool)

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

func (*EntitymanagerUpdateAttributeGroupRequest) GetPayload

GetPayload returns the Payload field value if set, zero value otherwise.

func (*EntitymanagerUpdateAttributeGroupRequest) GetPayloadOk

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

func (*EntitymanagerUpdateAttributeGroupRequest) GetTenantId

GetTenantId returns the TenantId field value if set, zero value otherwise.

func (*EntitymanagerUpdateAttributeGroupRequest) GetTenantIdOk

func (o *EntitymanagerUpdateAttributeGroupRequest) GetTenantIdOk() (*string, bool)

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

func (*EntitymanagerUpdateAttributeGroupRequest) HasCode

HasCode returns a boolean if a field has been set.

func (*EntitymanagerUpdateAttributeGroupRequest) HasFieldMask

HasFieldMask returns a boolean if a field has been set.

func (*EntitymanagerUpdateAttributeGroupRequest) HasPayload

HasPayload returns a boolean if a field has been set.

func (*EntitymanagerUpdateAttributeGroupRequest) HasTenantId

HasTenantId returns a boolean if a field has been set.

func (EntitymanagerUpdateAttributeGroupRequest) MarshalJSON

func (*EntitymanagerUpdateAttributeGroupRequest) SetCode

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

func (*EntitymanagerUpdateAttributeGroupRequest) SetFieldMask

SetFieldMask gets a reference to the given string and assigns it to the FieldMask field.

func (*EntitymanagerUpdateAttributeGroupRequest) SetPayload

SetPayload gets a reference to the given EntitymanagerUpdateAttributeGroupRequestPayload and assigns it to the Payload field.

func (*EntitymanagerUpdateAttributeGroupRequest) SetTenantId

SetTenantId gets a reference to the given string and assigns it to the TenantId field.

func (EntitymanagerUpdateAttributeGroupRequest) ToMap

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

type EntitymanagerUpdateAttributeGroupRequestPayload

type EntitymanagerUpdateAttributeGroupRequestPayload struct {
	Label      *ProductentitymanagerLocalizedText `json:"label,omitempty"`
	Sort       *int32                             `json:"sort,omitempty"`
	Visibility []string                           `json:"visibility,omitempty"`
}

EntitymanagerUpdateAttributeGroupRequestPayload struct for EntitymanagerUpdateAttributeGroupRequestPayload

func NewEntitymanagerUpdateAttributeGroupRequestPayload

func NewEntitymanagerUpdateAttributeGroupRequestPayload() *EntitymanagerUpdateAttributeGroupRequestPayload

NewEntitymanagerUpdateAttributeGroupRequestPayload instantiates a new EntitymanagerUpdateAttributeGroupRequestPayload 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 NewEntitymanagerUpdateAttributeGroupRequestPayloadWithDefaults

func NewEntitymanagerUpdateAttributeGroupRequestPayloadWithDefaults() *EntitymanagerUpdateAttributeGroupRequestPayload

NewEntitymanagerUpdateAttributeGroupRequestPayloadWithDefaults instantiates a new EntitymanagerUpdateAttributeGroupRequestPayload 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 (*EntitymanagerUpdateAttributeGroupRequestPayload) GetLabel

GetLabel returns the Label field value if set, zero value otherwise.

func (*EntitymanagerUpdateAttributeGroupRequestPayload) GetLabelOk

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

func (*EntitymanagerUpdateAttributeGroupRequestPayload) GetSort

GetSort returns the Sort field value if set, zero value otherwise.

func (*EntitymanagerUpdateAttributeGroupRequestPayload) 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 (*EntitymanagerUpdateAttributeGroupRequestPayload) GetVisibility

GetVisibility returns the Visibility field value if set, zero value otherwise.

func (*EntitymanagerUpdateAttributeGroupRequestPayload) GetVisibilityOk

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

func (*EntitymanagerUpdateAttributeGroupRequestPayload) HasLabel

HasLabel returns a boolean if a field has been set.

func (*EntitymanagerUpdateAttributeGroupRequestPayload) HasSort

HasSort returns a boolean if a field has been set.

func (*EntitymanagerUpdateAttributeGroupRequestPayload) HasVisibility

HasVisibility returns a boolean if a field has been set.

func (EntitymanagerUpdateAttributeGroupRequestPayload) MarshalJSON

func (*EntitymanagerUpdateAttributeGroupRequestPayload) SetLabel

SetLabel gets a reference to the given ProductentitymanagerLocalizedText and assigns it to the Label field.

func (*EntitymanagerUpdateAttributeGroupRequestPayload) SetSort

SetSort gets a reference to the given int32 and assigns it to the Sort field.

func (*EntitymanagerUpdateAttributeGroupRequestPayload) SetVisibility

SetVisibility gets a reference to the given []string and assigns it to the Visibility field.

func (EntitymanagerUpdateAttributeGroupRequestPayload) ToMap

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

type EntitymanagerUpdateAttributeOptionsRequest

type EntitymanagerUpdateAttributeOptionsRequest struct {
	TenantId *string                        `json:"tenantId,omitempty"`
	ListCode *string                        `json:"listCode,omitempty"`
	Options  []EntitymanagerAttributeOption `json:"options,omitempty"`
}

EntitymanagerUpdateAttributeOptionsRequest struct for EntitymanagerUpdateAttributeOptionsRequest

func NewEntitymanagerUpdateAttributeOptionsRequest

func NewEntitymanagerUpdateAttributeOptionsRequest() *EntitymanagerUpdateAttributeOptionsRequest

NewEntitymanagerUpdateAttributeOptionsRequest instantiates a new EntitymanagerUpdateAttributeOptionsRequest 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 NewEntitymanagerUpdateAttributeOptionsRequestWithDefaults

func NewEntitymanagerUpdateAttributeOptionsRequestWithDefaults() *EntitymanagerUpdateAttributeOptionsRequest

NewEntitymanagerUpdateAttributeOptionsRequestWithDefaults instantiates a new EntitymanagerUpdateAttributeOptionsRequest 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 (*EntitymanagerUpdateAttributeOptionsRequest) GetListCode

GetListCode returns the ListCode field value if set, zero value otherwise.

func (*EntitymanagerUpdateAttributeOptionsRequest) GetListCodeOk

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

func (*EntitymanagerUpdateAttributeOptionsRequest) GetOptions

GetOptions returns the Options field value if set, zero value otherwise.

func (*EntitymanagerUpdateAttributeOptionsRequest) GetOptionsOk

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

func (*EntitymanagerUpdateAttributeOptionsRequest) GetTenantId

GetTenantId returns the TenantId field value if set, zero value otherwise.

func (*EntitymanagerUpdateAttributeOptionsRequest) GetTenantIdOk

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

func (*EntitymanagerUpdateAttributeOptionsRequest) HasListCode

HasListCode returns a boolean if a field has been set.

func (*EntitymanagerUpdateAttributeOptionsRequest) HasOptions

HasOptions returns a boolean if a field has been set.

func (*EntitymanagerUpdateAttributeOptionsRequest) HasTenantId

HasTenantId returns a boolean if a field has been set.

func (EntitymanagerUpdateAttributeOptionsRequest) MarshalJSON

func (*EntitymanagerUpdateAttributeOptionsRequest) SetListCode

SetListCode gets a reference to the given string and assigns it to the ListCode field.

func (*EntitymanagerUpdateAttributeOptionsRequest) SetOptions

SetOptions gets a reference to the given []EntitymanagerAttributeOption and assigns it to the Options field.

func (*EntitymanagerUpdateAttributeOptionsRequest) SetTenantId

SetTenantId gets a reference to the given string and assigns it to the TenantId field.

func (EntitymanagerUpdateAttributeOptionsRequest) ToMap

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

type EntitymanagerUpdateAttributeOptionsResponse

type EntitymanagerUpdateAttributeOptionsResponse struct {
	Options []EntitymanagerAttributeOption       `json:"options,omitempty"`
	Errors  []EntitymanagerAttributeOptionErrors `json:"errors,omitempty"`
}

EntitymanagerUpdateAttributeOptionsResponse struct for EntitymanagerUpdateAttributeOptionsResponse

func NewEntitymanagerUpdateAttributeOptionsResponse

func NewEntitymanagerUpdateAttributeOptionsResponse() *EntitymanagerUpdateAttributeOptionsResponse

NewEntitymanagerUpdateAttributeOptionsResponse instantiates a new EntitymanagerUpdateAttributeOptionsResponse 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 NewEntitymanagerUpdateAttributeOptionsResponseWithDefaults

func NewEntitymanagerUpdateAttributeOptionsResponseWithDefaults() *EntitymanagerUpdateAttributeOptionsResponse

NewEntitymanagerUpdateAttributeOptionsResponseWithDefaults instantiates a new EntitymanagerUpdateAttributeOptionsResponse 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 (*EntitymanagerUpdateAttributeOptionsResponse) GetErrors

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

func (*EntitymanagerUpdateAttributeOptionsResponse) 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 (*EntitymanagerUpdateAttributeOptionsResponse) GetOptions

GetOptions returns the Options field value if set, zero value otherwise.

func (*EntitymanagerUpdateAttributeOptionsResponse) GetOptionsOk

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

func (*EntitymanagerUpdateAttributeOptionsResponse) HasErrors

HasErrors returns a boolean if a field has been set.

func (*EntitymanagerUpdateAttributeOptionsResponse) HasOptions

HasOptions returns a boolean if a field has been set.

func (EntitymanagerUpdateAttributeOptionsResponse) MarshalJSON

func (*EntitymanagerUpdateAttributeOptionsResponse) SetErrors

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

func (*EntitymanagerUpdateAttributeOptionsResponse) SetOptions

SetOptions gets a reference to the given []EntitymanagerAttributeOption and assigns it to the Options field.

func (EntitymanagerUpdateAttributeOptionsResponse) ToMap

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

type EntitymanagerUpdateAttributeRequest

type EntitymanagerUpdateAttributeRequest struct {
	TenantId   *string                                     `json:"tenantId,omitempty"`
	Code       *string                                     `json:"code,omitempty"`
	EntityData *EntitymanagerEntityIdentifier              `json:"entityData,omitempty"`
	EntityId   *string                                     `json:"entityId,omitempty"`
	Payload    *EntitymanagerUpdateAttributeRequestPayload `json:"payload,omitempty"`
	FieldMask  *string                                     `json:"fieldMask,omitempty"`
}

EntitymanagerUpdateAttributeRequest struct for EntitymanagerUpdateAttributeRequest

func NewEntitymanagerUpdateAttributeRequest

func NewEntitymanagerUpdateAttributeRequest() *EntitymanagerUpdateAttributeRequest

NewEntitymanagerUpdateAttributeRequest instantiates a new EntitymanagerUpdateAttributeRequest 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 NewEntitymanagerUpdateAttributeRequestWithDefaults

func NewEntitymanagerUpdateAttributeRequestWithDefaults() *EntitymanagerUpdateAttributeRequest

NewEntitymanagerUpdateAttributeRequestWithDefaults instantiates a new EntitymanagerUpdateAttributeRequest 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 (*EntitymanagerUpdateAttributeRequest) GetCode

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

func (*EntitymanagerUpdateAttributeRequest) GetCodeOk

func (o *EntitymanagerUpdateAttributeRequest) 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 (*EntitymanagerUpdateAttributeRequest) GetEntityData

GetEntityData returns the EntityData field value if set, zero value otherwise.

func (*EntitymanagerUpdateAttributeRequest) GetEntityDataOk

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

func (*EntitymanagerUpdateAttributeRequest) GetEntityId

GetEntityId returns the EntityId field value if set, zero value otherwise.

func (*EntitymanagerUpdateAttributeRequest) GetEntityIdOk

func (o *EntitymanagerUpdateAttributeRequest) GetEntityIdOk() (*string, bool)

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

func (*EntitymanagerUpdateAttributeRequest) GetFieldMask

func (o *EntitymanagerUpdateAttributeRequest) GetFieldMask() string

GetFieldMask returns the FieldMask field value if set, zero value otherwise.

func (*EntitymanagerUpdateAttributeRequest) GetFieldMaskOk

func (o *EntitymanagerUpdateAttributeRequest) GetFieldMaskOk() (*string, bool)

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

func (*EntitymanagerUpdateAttributeRequest) GetPayload

GetPayload returns the Payload field value if set, zero value otherwise.

func (*EntitymanagerUpdateAttributeRequest) GetPayloadOk

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

func (*EntitymanagerUpdateAttributeRequest) GetTenantId

GetTenantId returns the TenantId field value if set, zero value otherwise.

func (*EntitymanagerUpdateAttributeRequest) GetTenantIdOk

func (o *EntitymanagerUpdateAttributeRequest) GetTenantIdOk() (*string, bool)

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

func (*EntitymanagerUpdateAttributeRequest) HasCode

HasCode returns a boolean if a field has been set.

func (*EntitymanagerUpdateAttributeRequest) HasEntityData

func (o *EntitymanagerUpdateAttributeRequest) HasEntityData() bool

HasEntityData returns a boolean if a field has been set.

func (*EntitymanagerUpdateAttributeRequest) HasEntityId

func (o *EntitymanagerUpdateAttributeRequest) HasEntityId() bool

HasEntityId returns a boolean if a field has been set.

func (*EntitymanagerUpdateAttributeRequest) HasFieldMask

func (o *EntitymanagerUpdateAttributeRequest) HasFieldMask() bool

HasFieldMask returns a boolean if a field has been set.

func (*EntitymanagerUpdateAttributeRequest) HasPayload

func (o *EntitymanagerUpdateAttributeRequest) HasPayload() bool

HasPayload returns a boolean if a field has been set.

func (*EntitymanagerUpdateAttributeRequest) HasTenantId

func (o *EntitymanagerUpdateAttributeRequest) HasTenantId() bool

HasTenantId returns a boolean if a field has been set.

func (EntitymanagerUpdateAttributeRequest) MarshalJSON

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

func (*EntitymanagerUpdateAttributeRequest) SetCode

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

func (*EntitymanagerUpdateAttributeRequest) SetEntityData

SetEntityData gets a reference to the given EntitymanagerEntityIdentifier and assigns it to the EntityData field.

func (*EntitymanagerUpdateAttributeRequest) SetEntityId

func (o *EntitymanagerUpdateAttributeRequest) SetEntityId(v string)

SetEntityId gets a reference to the given string and assigns it to the EntityId field.

func (*EntitymanagerUpdateAttributeRequest) SetFieldMask

func (o *EntitymanagerUpdateAttributeRequest) SetFieldMask(v string)

SetFieldMask gets a reference to the given string and assigns it to the FieldMask field.

func (*EntitymanagerUpdateAttributeRequest) SetPayload

SetPayload gets a reference to the given EntitymanagerUpdateAttributeRequestPayload and assigns it to the Payload field.

func (*EntitymanagerUpdateAttributeRequest) SetTenantId

func (o *EntitymanagerUpdateAttributeRequest) SetTenantId(v string)

SetTenantId gets a reference to the given string and assigns it to the TenantId field.

func (EntitymanagerUpdateAttributeRequest) ToMap

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

type EntitymanagerUpdateAttributeRequestPayload

type EntitymanagerUpdateAttributeRequestPayload struct {
	Label     *string                `json:"label,omitempty"`
	Default   *string                `json:"default,omitempty"`
	Sort      *int32                 `json:"sort,omitempty"`
	GroupCode *string                `json:"groupCode,omitempty"`
	Title     *map[string]string     `json:"title,omitempty"`
	RenderAs  *EntitymanagerRenderAs `json:"renderAs,omitempty"`
}

EntitymanagerUpdateAttributeRequestPayload struct for EntitymanagerUpdateAttributeRequestPayload

func NewEntitymanagerUpdateAttributeRequestPayload

func NewEntitymanagerUpdateAttributeRequestPayload() *EntitymanagerUpdateAttributeRequestPayload

NewEntitymanagerUpdateAttributeRequestPayload instantiates a new EntitymanagerUpdateAttributeRequestPayload 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 NewEntitymanagerUpdateAttributeRequestPayloadWithDefaults

func NewEntitymanagerUpdateAttributeRequestPayloadWithDefaults() *EntitymanagerUpdateAttributeRequestPayload

NewEntitymanagerUpdateAttributeRequestPayloadWithDefaults instantiates a new EntitymanagerUpdateAttributeRequestPayload 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 (*EntitymanagerUpdateAttributeRequestPayload) GetDefault

GetDefault returns the Default field value if set, zero value otherwise.

func (*EntitymanagerUpdateAttributeRequestPayload) GetDefaultOk

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

func (*EntitymanagerUpdateAttributeRequestPayload) GetGroupCode

GetGroupCode returns the GroupCode field value if set, zero value otherwise.

func (*EntitymanagerUpdateAttributeRequestPayload) GetGroupCodeOk

func (o *EntitymanagerUpdateAttributeRequestPayload) GetGroupCodeOk() (*string, bool)

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

func (*EntitymanagerUpdateAttributeRequestPayload) GetLabel

GetLabel returns the Label field value if set, zero value otherwise.

func (*EntitymanagerUpdateAttributeRequestPayload) GetLabelOk

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

func (*EntitymanagerUpdateAttributeRequestPayload) GetRenderAs

GetRenderAs returns the RenderAs field value if set, zero value otherwise.

func (*EntitymanagerUpdateAttributeRequestPayload) GetRenderAsOk

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

func (*EntitymanagerUpdateAttributeRequestPayload) GetSort

GetSort returns the Sort field value if set, zero value otherwise.

func (*EntitymanagerUpdateAttributeRequestPayload) 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 (*EntitymanagerUpdateAttributeRequestPayload) GetTitle

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

func (*EntitymanagerUpdateAttributeRequestPayload) 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 (*EntitymanagerUpdateAttributeRequestPayload) HasDefault

HasDefault returns a boolean if a field has been set.

func (*EntitymanagerUpdateAttributeRequestPayload) HasGroupCode

HasGroupCode returns a boolean if a field has been set.

func (*EntitymanagerUpdateAttributeRequestPayload) HasLabel

HasLabel returns a boolean if a field has been set.

func (*EntitymanagerUpdateAttributeRequestPayload) HasRenderAs

HasRenderAs returns a boolean if a field has been set.

func (*EntitymanagerUpdateAttributeRequestPayload) HasSort

HasSort returns a boolean if a field has been set.

func (*EntitymanagerUpdateAttributeRequestPayload) HasTitle

HasTitle returns a boolean if a field has been set.

func (EntitymanagerUpdateAttributeRequestPayload) MarshalJSON

func (*EntitymanagerUpdateAttributeRequestPayload) SetDefault

SetDefault gets a reference to the given string and assigns it to the Default field.

func (*EntitymanagerUpdateAttributeRequestPayload) SetGroupCode

SetGroupCode gets a reference to the given string and assigns it to the GroupCode field.

func (*EntitymanagerUpdateAttributeRequestPayload) SetLabel

SetLabel gets a reference to the given string and assigns it to the Label field.

func (*EntitymanagerUpdateAttributeRequestPayload) SetRenderAs

SetRenderAs gets a reference to the given EntitymanagerRenderAs and assigns it to the RenderAs field.

func (*EntitymanagerUpdateAttributeRequestPayload) SetSort

SetSort gets a reference to the given int32 and assigns it to the Sort field.

func (*EntitymanagerUpdateAttributeRequestPayload) SetTitle

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

func (EntitymanagerUpdateAttributeRequestPayload) ToMap

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

type EntitymanagerUpdateOptionsListRequest

type EntitymanagerUpdateOptionsListRequest struct {
	TenantId   *string                   `json:"tenantId,omitempty"`
	OptionList *EntitymanagerOptionsList `json:"optionList,omitempty"`
}

EntitymanagerUpdateOptionsListRequest struct for EntitymanagerUpdateOptionsListRequest

func NewEntitymanagerUpdateOptionsListRequest

func NewEntitymanagerUpdateOptionsListRequest() *EntitymanagerUpdateOptionsListRequest

NewEntitymanagerUpdateOptionsListRequest instantiates a new EntitymanagerUpdateOptionsListRequest 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 NewEntitymanagerUpdateOptionsListRequestWithDefaults

func NewEntitymanagerUpdateOptionsListRequestWithDefaults() *EntitymanagerUpdateOptionsListRequest

NewEntitymanagerUpdateOptionsListRequestWithDefaults instantiates a new EntitymanagerUpdateOptionsListRequest 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 (*EntitymanagerUpdateOptionsListRequest) GetOptionList

GetOptionList returns the OptionList field value if set, zero value otherwise.

func (*EntitymanagerUpdateOptionsListRequest) GetOptionListOk

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

func (*EntitymanagerUpdateOptionsListRequest) GetTenantId

GetTenantId returns the TenantId field value if set, zero value otherwise.

func (*EntitymanagerUpdateOptionsListRequest) GetTenantIdOk

func (o *EntitymanagerUpdateOptionsListRequest) GetTenantIdOk() (*string, bool)

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

func (*EntitymanagerUpdateOptionsListRequest) HasOptionList

func (o *EntitymanagerUpdateOptionsListRequest) HasOptionList() bool

HasOptionList returns a boolean if a field has been set.

func (*EntitymanagerUpdateOptionsListRequest) HasTenantId

HasTenantId returns a boolean if a field has been set.

func (EntitymanagerUpdateOptionsListRequest) MarshalJSON

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

func (*EntitymanagerUpdateOptionsListRequest) SetOptionList

SetOptionList gets a reference to the given EntitymanagerOptionsList and assigns it to the OptionList field.

func (*EntitymanagerUpdateOptionsListRequest) SetTenantId

SetTenantId gets a reference to the given string and assigns it to the TenantId field.

func (EntitymanagerUpdateOptionsListRequest) ToMap

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

type EntitymanagerUpdateOptionsListResponse

type EntitymanagerUpdateOptionsListResponse struct {
	OptionList *EntitymanagerOptionsList `json:"optionList,omitempty"`
}

EntitymanagerUpdateOptionsListResponse struct for EntitymanagerUpdateOptionsListResponse

func NewEntitymanagerUpdateOptionsListResponse

func NewEntitymanagerUpdateOptionsListResponse() *EntitymanagerUpdateOptionsListResponse

NewEntitymanagerUpdateOptionsListResponse instantiates a new EntitymanagerUpdateOptionsListResponse 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 NewEntitymanagerUpdateOptionsListResponseWithDefaults

func NewEntitymanagerUpdateOptionsListResponseWithDefaults() *EntitymanagerUpdateOptionsListResponse

NewEntitymanagerUpdateOptionsListResponseWithDefaults instantiates a new EntitymanagerUpdateOptionsListResponse 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 (*EntitymanagerUpdateOptionsListResponse) GetOptionList

GetOptionList returns the OptionList field value if set, zero value otherwise.

func (*EntitymanagerUpdateOptionsListResponse) GetOptionListOk

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

func (*EntitymanagerUpdateOptionsListResponse) HasOptionList

func (o *EntitymanagerUpdateOptionsListResponse) HasOptionList() bool

HasOptionList returns a boolean if a field has been set.

func (EntitymanagerUpdateOptionsListResponse) MarshalJSON

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

func (*EntitymanagerUpdateOptionsListResponse) SetOptionList

SetOptionList gets a reference to the given EntitymanagerOptionsList and assigns it to the OptionList field.

func (EntitymanagerUpdateOptionsListResponse) ToMap

func (o EntitymanagerUpdateOptionsListResponse) 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 ListProductsRequestFilter

type ListProductsRequestFilter struct {
	CreatedAtStart *time.Time `json:"createdAtStart,omitempty"`
	CreatedAtEnd   *time.Time `json:"createdAtEnd,omitempty"`
	UpdatedAtStart *time.Time `json:"updatedAtStart,omitempty"`
	UpdatedAtEnd   *time.Time `json:"updatedAtEnd,omitempty"`
	Status         *bool      `json:"status,omitempty"`
}

ListProductsRequestFilter struct for ListProductsRequestFilter

func NewListProductsRequestFilter

func NewListProductsRequestFilter() *ListProductsRequestFilter

NewListProductsRequestFilter instantiates a new ListProductsRequestFilter 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 NewListProductsRequestFilterWithDefaults

func NewListProductsRequestFilterWithDefaults() *ListProductsRequestFilter

NewListProductsRequestFilterWithDefaults instantiates a new ListProductsRequestFilter 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 (*ListProductsRequestFilter) GetCreatedAtEnd

func (o *ListProductsRequestFilter) GetCreatedAtEnd() time.Time

GetCreatedAtEnd returns the CreatedAtEnd field value if set, zero value otherwise.

func (*ListProductsRequestFilter) GetCreatedAtEndOk

func (o *ListProductsRequestFilter) GetCreatedAtEndOk() (*time.Time, bool)

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

func (*ListProductsRequestFilter) GetCreatedAtStart

func (o *ListProductsRequestFilter) GetCreatedAtStart() time.Time

GetCreatedAtStart returns the CreatedAtStart field value if set, zero value otherwise.

func (*ListProductsRequestFilter) GetCreatedAtStartOk

func (o *ListProductsRequestFilter) GetCreatedAtStartOk() (*time.Time, bool)

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

func (*ListProductsRequestFilter) GetStatus

func (o *ListProductsRequestFilter) GetStatus() bool

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

func (*ListProductsRequestFilter) GetStatusOk

func (o *ListProductsRequestFilter) GetStatusOk() (*bool, 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 (*ListProductsRequestFilter) GetUpdatedAtEnd

func (o *ListProductsRequestFilter) GetUpdatedAtEnd() time.Time

GetUpdatedAtEnd returns the UpdatedAtEnd field value if set, zero value otherwise.

func (*ListProductsRequestFilter) GetUpdatedAtEndOk

func (o *ListProductsRequestFilter) GetUpdatedAtEndOk() (*time.Time, bool)

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

func (*ListProductsRequestFilter) GetUpdatedAtStart

func (o *ListProductsRequestFilter) GetUpdatedAtStart() time.Time

GetUpdatedAtStart returns the UpdatedAtStart field value if set, zero value otherwise.

func (*ListProductsRequestFilter) GetUpdatedAtStartOk

func (o *ListProductsRequestFilter) GetUpdatedAtStartOk() (*time.Time, bool)

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

func (*ListProductsRequestFilter) HasCreatedAtEnd

func (o *ListProductsRequestFilter) HasCreatedAtEnd() bool

HasCreatedAtEnd returns a boolean if a field has been set.

func (*ListProductsRequestFilter) HasCreatedAtStart

func (o *ListProductsRequestFilter) HasCreatedAtStart() bool

HasCreatedAtStart returns a boolean if a field has been set.

func (*ListProductsRequestFilter) HasStatus

func (o *ListProductsRequestFilter) HasStatus() bool

HasStatus returns a boolean if a field has been set.

func (*ListProductsRequestFilter) HasUpdatedAtEnd

func (o *ListProductsRequestFilter) HasUpdatedAtEnd() bool

HasUpdatedAtEnd returns a boolean if a field has been set.

func (*ListProductsRequestFilter) HasUpdatedAtStart

func (o *ListProductsRequestFilter) HasUpdatedAtStart() bool

HasUpdatedAtStart returns a boolean if a field has been set.

func (ListProductsRequestFilter) MarshalJSON

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

func (*ListProductsRequestFilter) SetCreatedAtEnd

func (o *ListProductsRequestFilter) SetCreatedAtEnd(v time.Time)

SetCreatedAtEnd gets a reference to the given time.Time and assigns it to the CreatedAtEnd field.

func (*ListProductsRequestFilter) SetCreatedAtStart

func (o *ListProductsRequestFilter) SetCreatedAtStart(v time.Time)

SetCreatedAtStart gets a reference to the given time.Time and assigns it to the CreatedAtStart field.

func (*ListProductsRequestFilter) SetStatus

func (o *ListProductsRequestFilter) SetStatus(v bool)

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

func (*ListProductsRequestFilter) SetUpdatedAtEnd

func (o *ListProductsRequestFilter) SetUpdatedAtEnd(v time.Time)

SetUpdatedAtEnd gets a reference to the given time.Time and assigns it to the UpdatedAtEnd field.

func (*ListProductsRequestFilter) SetUpdatedAtStart

func (o *ListProductsRequestFilter) SetUpdatedAtStart(v time.Time)

SetUpdatedAtStart gets a reference to the given time.Time and assigns it to the UpdatedAtStart field.

func (ListProductsRequestFilter) ToMap

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

type MappedNullable

type MappedNullable interface {
	ToMap() (map[string]interface{}, error)
}

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 NullableBulkUpdateAssetsEntriesRequestUpdateEntity

type NullableBulkUpdateAssetsEntriesRequestUpdateEntity struct {
	// contains filtered or unexported fields
}

func (NullableBulkUpdateAssetsEntriesRequestUpdateEntity) Get

func (NullableBulkUpdateAssetsEntriesRequestUpdateEntity) IsSet

func (NullableBulkUpdateAssetsEntriesRequestUpdateEntity) MarshalJSON

func (*NullableBulkUpdateAssetsEntriesRequestUpdateEntity) Set

func (*NullableBulkUpdateAssetsEntriesRequestUpdateEntity) UnmarshalJSON

func (*NullableBulkUpdateAssetsEntriesRequestUpdateEntity) Unset

type NullableEntitymanagerAttribute

type NullableEntitymanagerAttribute struct {
	// contains filtered or unexported fields
}

func (NullableEntitymanagerAttribute) Get

func (NullableEntitymanagerAttribute) IsSet

func (NullableEntitymanagerAttribute) MarshalJSON

func (v NullableEntitymanagerAttribute) MarshalJSON() ([]byte, error)

func (*NullableEntitymanagerAttribute) Set

func (*NullableEntitymanagerAttribute) UnmarshalJSON

func (v *NullableEntitymanagerAttribute) UnmarshalJSON(src []byte) error

func (*NullableEntitymanagerAttribute) Unset

func (v *NullableEntitymanagerAttribute) Unset()

type NullableEntitymanagerAttributeGroup

type NullableEntitymanagerAttributeGroup struct {
	// contains filtered or unexported fields
}

func (NullableEntitymanagerAttributeGroup) Get

func (NullableEntitymanagerAttributeGroup) IsSet

func (NullableEntitymanagerAttributeGroup) MarshalJSON

func (v NullableEntitymanagerAttributeGroup) MarshalJSON() ([]byte, error)

func (*NullableEntitymanagerAttributeGroup) Set

func (*NullableEntitymanagerAttributeGroup) UnmarshalJSON

func (v *NullableEntitymanagerAttributeGroup) UnmarshalJSON(src []byte) error

func (*NullableEntitymanagerAttributeGroup) Unset

type NullableEntitymanagerAttributeOption

type NullableEntitymanagerAttributeOption struct {
	// contains filtered or unexported fields
}

func (NullableEntitymanagerAttributeOption) Get

func (NullableEntitymanagerAttributeOption) IsSet

func (NullableEntitymanagerAttributeOption) MarshalJSON

func (v NullableEntitymanagerAttributeOption) MarshalJSON() ([]byte, error)

func (*NullableEntitymanagerAttributeOption) Set

func (*NullableEntitymanagerAttributeOption) UnmarshalJSON

func (v *NullableEntitymanagerAttributeOption) UnmarshalJSON(src []byte) error

func (*NullableEntitymanagerAttributeOption) Unset

type NullableEntitymanagerAttributeOptionErrors

type NullableEntitymanagerAttributeOptionErrors struct {
	// contains filtered or unexported fields
}

func (NullableEntitymanagerAttributeOptionErrors) Get

func (NullableEntitymanagerAttributeOptionErrors) IsSet

func (NullableEntitymanagerAttributeOptionErrors) MarshalJSON

func (*NullableEntitymanagerAttributeOptionErrors) Set

func (*NullableEntitymanagerAttributeOptionErrors) UnmarshalJSON

func (v *NullableEntitymanagerAttributeOptionErrors) UnmarshalJSON(src []byte) error

func (*NullableEntitymanagerAttributeOptionErrors) Unset

type NullableEntitymanagerAttributeOptionSwatch

type NullableEntitymanagerAttributeOptionSwatch struct {
	// contains filtered or unexported fields
}

func (NullableEntitymanagerAttributeOptionSwatch) Get

func (NullableEntitymanagerAttributeOptionSwatch) IsSet

func (NullableEntitymanagerAttributeOptionSwatch) MarshalJSON

func (*NullableEntitymanagerAttributeOptionSwatch) Set

func (*NullableEntitymanagerAttributeOptionSwatch) UnmarshalJSON

func (v *NullableEntitymanagerAttributeOptionSwatch) UnmarshalJSON(src []byte) error

func (*NullableEntitymanagerAttributeOptionSwatch) Unset

type NullableEntitymanagerAttributeWriteError

type NullableEntitymanagerAttributeWriteError struct {
	// contains filtered or unexported fields
}

func (NullableEntitymanagerAttributeWriteError) Get

func (NullableEntitymanagerAttributeWriteError) IsSet

func (NullableEntitymanagerAttributeWriteError) MarshalJSON

func (*NullableEntitymanagerAttributeWriteError) Set

func (*NullableEntitymanagerAttributeWriteError) UnmarshalJSON

func (v *NullableEntitymanagerAttributeWriteError) UnmarshalJSON(src []byte) error

func (*NullableEntitymanagerAttributeWriteError) Unset

type NullableEntitymanagerAttributeWriteErrors

type NullableEntitymanagerAttributeWriteErrors struct {
	// contains filtered or unexported fields
}

func (NullableEntitymanagerAttributeWriteErrors) Get

func (NullableEntitymanagerAttributeWriteErrors) IsSet

func (NullableEntitymanagerAttributeWriteErrors) MarshalJSON

func (*NullableEntitymanagerAttributeWriteErrors) Set

func (*NullableEntitymanagerAttributeWriteErrors) UnmarshalJSON

func (v *NullableEntitymanagerAttributeWriteErrors) UnmarshalJSON(src []byte) error

func (*NullableEntitymanagerAttributeWriteErrors) Unset

type NullableEntitymanagerBulkCreateAttributeRequest

type NullableEntitymanagerBulkCreateAttributeRequest struct {
	// contains filtered or unexported fields
}

func (NullableEntitymanagerBulkCreateAttributeRequest) Get

func (NullableEntitymanagerBulkCreateAttributeRequest) IsSet

func (NullableEntitymanagerBulkCreateAttributeRequest) MarshalJSON

func (*NullableEntitymanagerBulkCreateAttributeRequest) Set

func (*NullableEntitymanagerBulkCreateAttributeRequest) UnmarshalJSON

func (*NullableEntitymanagerBulkCreateAttributeRequest) Unset

type NullableEntitymanagerBulkCreateAttributeResponse

type NullableEntitymanagerBulkCreateAttributeResponse struct {
	// contains filtered or unexported fields
}

func (NullableEntitymanagerBulkCreateAttributeResponse) Get

func (NullableEntitymanagerBulkCreateAttributeResponse) IsSet

func (NullableEntitymanagerBulkCreateAttributeResponse) MarshalJSON

func (*NullableEntitymanagerBulkCreateAttributeResponse) Set

func (*NullableEntitymanagerBulkCreateAttributeResponse) UnmarshalJSON

func (*NullableEntitymanagerBulkCreateAttributeResponse) Unset

type NullableEntitymanagerCreateAttributeGroupRequest

type NullableEntitymanagerCreateAttributeGroupRequest struct {
	// contains filtered or unexported fields
}

func (NullableEntitymanagerCreateAttributeGroupRequest) Get

func (NullableEntitymanagerCreateAttributeGroupRequest) IsSet

func (NullableEntitymanagerCreateAttributeGroupRequest) MarshalJSON

func (*NullableEntitymanagerCreateAttributeGroupRequest) Set

func (*NullableEntitymanagerCreateAttributeGroupRequest) UnmarshalJSON

func (*NullableEntitymanagerCreateAttributeGroupRequest) Unset

type NullableEntitymanagerCreateAttributeOptionsRequest

type NullableEntitymanagerCreateAttributeOptionsRequest struct {
	// contains filtered or unexported fields
}

func (NullableEntitymanagerCreateAttributeOptionsRequest) Get

func (NullableEntitymanagerCreateAttributeOptionsRequest) IsSet

func (NullableEntitymanagerCreateAttributeOptionsRequest) MarshalJSON

func (*NullableEntitymanagerCreateAttributeOptionsRequest) Set

func (*NullableEntitymanagerCreateAttributeOptionsRequest) UnmarshalJSON

func (*NullableEntitymanagerCreateAttributeOptionsRequest) Unset

type NullableEntitymanagerCreateAttributeOptionsResponse

type NullableEntitymanagerCreateAttributeOptionsResponse struct {
	// contains filtered or unexported fields
}

func (NullableEntitymanagerCreateAttributeOptionsResponse) Get

func (NullableEntitymanagerCreateAttributeOptionsResponse) IsSet

func (NullableEntitymanagerCreateAttributeOptionsResponse) MarshalJSON

func (*NullableEntitymanagerCreateAttributeOptionsResponse) Set

func (*NullableEntitymanagerCreateAttributeOptionsResponse) UnmarshalJSON

func (*NullableEntitymanagerCreateAttributeOptionsResponse) Unset

type NullableEntitymanagerCreateEntityResponse

type NullableEntitymanagerCreateEntityResponse struct {
	// contains filtered or unexported fields
}

func (NullableEntitymanagerCreateEntityResponse) Get

func (NullableEntitymanagerCreateEntityResponse) IsSet

func (NullableEntitymanagerCreateEntityResponse) MarshalJSON

func (*NullableEntitymanagerCreateEntityResponse) Set

func (*NullableEntitymanagerCreateEntityResponse) UnmarshalJSON

func (v *NullableEntitymanagerCreateEntityResponse) UnmarshalJSON(src []byte) error

func (*NullableEntitymanagerCreateEntityResponse) Unset

type NullableEntitymanagerCreateOptionsListRequest

type NullableEntitymanagerCreateOptionsListRequest struct {
	// contains filtered or unexported fields
}

func (NullableEntitymanagerCreateOptionsListRequest) Get

func (NullableEntitymanagerCreateOptionsListRequest) IsSet

func (NullableEntitymanagerCreateOptionsListRequest) MarshalJSON

func (*NullableEntitymanagerCreateOptionsListRequest) Set

func (*NullableEntitymanagerCreateOptionsListRequest) UnmarshalJSON

func (*NullableEntitymanagerCreateOptionsListRequest) Unset

type NullableEntitymanagerCreateOptionsListResponse

type NullableEntitymanagerCreateOptionsListResponse struct {
	// contains filtered or unexported fields
}

func (NullableEntitymanagerCreateOptionsListResponse) Get

func (NullableEntitymanagerCreateOptionsListResponse) IsSet

func (NullableEntitymanagerCreateOptionsListResponse) MarshalJSON

func (*NullableEntitymanagerCreateOptionsListResponse) Set

func (*NullableEntitymanagerCreateOptionsListResponse) UnmarshalJSON

func (*NullableEntitymanagerCreateOptionsListResponse) Unset

type NullableEntitymanagerDeleteAttributeRequest

type NullableEntitymanagerDeleteAttributeRequest struct {
	// contains filtered or unexported fields
}

func (NullableEntitymanagerDeleteAttributeRequest) Get

func (NullableEntitymanagerDeleteAttributeRequest) IsSet

func (NullableEntitymanagerDeleteAttributeRequest) MarshalJSON

func (*NullableEntitymanagerDeleteAttributeRequest) Set

func (*NullableEntitymanagerDeleteAttributeRequest) UnmarshalJSON

func (v *NullableEntitymanagerDeleteAttributeRequest) UnmarshalJSON(src []byte) error

func (*NullableEntitymanagerDeleteAttributeRequest) Unset

type NullableEntitymanagerEntity

type NullableEntitymanagerEntity struct {
	// contains filtered or unexported fields
}

func NewNullableEntitymanagerEntity

func NewNullableEntitymanagerEntity(val *EntitymanagerEntity) *NullableEntitymanagerEntity

func (NullableEntitymanagerEntity) Get

func (NullableEntitymanagerEntity) IsSet

func (NullableEntitymanagerEntity) MarshalJSON

func (v NullableEntitymanagerEntity) MarshalJSON() ([]byte, error)

func (*NullableEntitymanagerEntity) Set

func (*NullableEntitymanagerEntity) UnmarshalJSON

func (v *NullableEntitymanagerEntity) UnmarshalJSON(src []byte) error

func (*NullableEntitymanagerEntity) Unset

func (v *NullableEntitymanagerEntity) Unset()

type NullableEntitymanagerEntityIdentifier

type NullableEntitymanagerEntityIdentifier struct {
	// contains filtered or unexported fields
}

func (NullableEntitymanagerEntityIdentifier) Get

func (NullableEntitymanagerEntityIdentifier) IsSet

func (NullableEntitymanagerEntityIdentifier) MarshalJSON

func (v NullableEntitymanagerEntityIdentifier) MarshalJSON() ([]byte, error)

func (*NullableEntitymanagerEntityIdentifier) Set

func (*NullableEntitymanagerEntityIdentifier) UnmarshalJSON

func (v *NullableEntitymanagerEntityIdentifier) UnmarshalJSON(src []byte) error

func (*NullableEntitymanagerEntityIdentifier) Unset

type NullableEntitymanagerEntityRequest

type NullableEntitymanagerEntityRequest struct {
	// contains filtered or unexported fields
}

func (NullableEntitymanagerEntityRequest) Get

func (NullableEntitymanagerEntityRequest) IsSet

func (NullableEntitymanagerEntityRequest) MarshalJSON

func (v NullableEntitymanagerEntityRequest) MarshalJSON() ([]byte, error)

func (*NullableEntitymanagerEntityRequest) Set

func (*NullableEntitymanagerEntityRequest) UnmarshalJSON

func (v *NullableEntitymanagerEntityRequest) UnmarshalJSON(src []byte) error

func (*NullableEntitymanagerEntityRequest) Unset

type NullableEntitymanagerGetAttributeGroupRequest

type NullableEntitymanagerGetAttributeGroupRequest struct {
	// contains filtered or unexported fields
}

func (NullableEntitymanagerGetAttributeGroupRequest) Get

func (NullableEntitymanagerGetAttributeGroupRequest) IsSet

func (NullableEntitymanagerGetAttributeGroupRequest) MarshalJSON

func (*NullableEntitymanagerGetAttributeGroupRequest) Set

func (*NullableEntitymanagerGetAttributeGroupRequest) UnmarshalJSON

func (*NullableEntitymanagerGetAttributeGroupRequest) Unset

type NullableEntitymanagerGetAttributeOptionRequest

type NullableEntitymanagerGetAttributeOptionRequest struct {
	// contains filtered or unexported fields
}

func (NullableEntitymanagerGetAttributeOptionRequest) Get

func (NullableEntitymanagerGetAttributeOptionRequest) IsSet

func (NullableEntitymanagerGetAttributeOptionRequest) MarshalJSON

func (*NullableEntitymanagerGetAttributeOptionRequest) Set

func (*NullableEntitymanagerGetAttributeOptionRequest) UnmarshalJSON

func (*NullableEntitymanagerGetAttributeOptionRequest) Unset

type NullableEntitymanagerGetAttributeOptionResponse

type NullableEntitymanagerGetAttributeOptionResponse struct {
	// contains filtered or unexported fields
}

func (NullableEntitymanagerGetAttributeOptionResponse) Get

func (NullableEntitymanagerGetAttributeOptionResponse) IsSet

func (NullableEntitymanagerGetAttributeOptionResponse) MarshalJSON

func (*NullableEntitymanagerGetAttributeOptionResponse) Set

func (*NullableEntitymanagerGetAttributeOptionResponse) UnmarshalJSON

func (*NullableEntitymanagerGetAttributeOptionResponse) Unset

type NullableEntitymanagerGetAttributeOptionsRequest

type NullableEntitymanagerGetAttributeOptionsRequest struct {
	// contains filtered or unexported fields
}

func (NullableEntitymanagerGetAttributeOptionsRequest) Get

func (NullableEntitymanagerGetAttributeOptionsRequest) IsSet

func (NullableEntitymanagerGetAttributeOptionsRequest) MarshalJSON

func (*NullableEntitymanagerGetAttributeOptionsRequest) Set

func (*NullableEntitymanagerGetAttributeOptionsRequest) UnmarshalJSON

func (*NullableEntitymanagerGetAttributeOptionsRequest) Unset

type NullableEntitymanagerGetAttributeOptionsRequestOption

type NullableEntitymanagerGetAttributeOptionsRequestOption struct {
	// contains filtered or unexported fields
}

func (NullableEntitymanagerGetAttributeOptionsRequestOption) Get

func (NullableEntitymanagerGetAttributeOptionsRequestOption) IsSet

func (NullableEntitymanagerGetAttributeOptionsRequestOption) MarshalJSON

func (*NullableEntitymanagerGetAttributeOptionsRequestOption) Set

func (*NullableEntitymanagerGetAttributeOptionsRequestOption) UnmarshalJSON

func (*NullableEntitymanagerGetAttributeOptionsRequestOption) Unset

type NullableEntitymanagerGetAttributeOptionsResponse

type NullableEntitymanagerGetAttributeOptionsResponse struct {
	// contains filtered or unexported fields
}

func (NullableEntitymanagerGetAttributeOptionsResponse) Get

func (NullableEntitymanagerGetAttributeOptionsResponse) IsSet

func (NullableEntitymanagerGetAttributeOptionsResponse) MarshalJSON

func (*NullableEntitymanagerGetAttributeOptionsResponse) Set

func (*NullableEntitymanagerGetAttributeOptionsResponse) UnmarshalJSON

func (*NullableEntitymanagerGetAttributeOptionsResponse) Unset

type NullableEntitymanagerGetAttributeOptionsResponseOption

type NullableEntitymanagerGetAttributeOptionsResponseOption struct {
	// contains filtered or unexported fields
}

func (NullableEntitymanagerGetAttributeOptionsResponseOption) Get

func (NullableEntitymanagerGetAttributeOptionsResponseOption) IsSet

func (NullableEntitymanagerGetAttributeOptionsResponseOption) MarshalJSON

func (*NullableEntitymanagerGetAttributeOptionsResponseOption) Set

func (*NullableEntitymanagerGetAttributeOptionsResponseOption) UnmarshalJSON

func (*NullableEntitymanagerGetAttributeOptionsResponseOption) Unset

type NullableEntitymanagerGetOptionsListRequest

type NullableEntitymanagerGetOptionsListRequest struct {
	// contains filtered or unexported fields
}

func (NullableEntitymanagerGetOptionsListRequest) Get

func (NullableEntitymanagerGetOptionsListRequest) IsSet

func (NullableEntitymanagerGetOptionsListRequest) MarshalJSON

func (*NullableEntitymanagerGetOptionsListRequest) Set

func (*NullableEntitymanagerGetOptionsListRequest) UnmarshalJSON

func (v *NullableEntitymanagerGetOptionsListRequest) UnmarshalJSON(src []byte) error

func (*NullableEntitymanagerGetOptionsListRequest) Unset

type NullableEntitymanagerGetOptionsListResponse

type NullableEntitymanagerGetOptionsListResponse struct {
	// contains filtered or unexported fields
}

func (NullableEntitymanagerGetOptionsListResponse) Get

func (NullableEntitymanagerGetOptionsListResponse) IsSet

func (NullableEntitymanagerGetOptionsListResponse) MarshalJSON

func (*NullableEntitymanagerGetOptionsListResponse) Set

func (*NullableEntitymanagerGetOptionsListResponse) UnmarshalJSON

func (v *NullableEntitymanagerGetOptionsListResponse) UnmarshalJSON(src []byte) error

func (*NullableEntitymanagerGetOptionsListResponse) Unset

type NullableEntitymanagerListAttributeGroupsRequest

type NullableEntitymanagerListAttributeGroupsRequest struct {
	// contains filtered or unexported fields
}

func (NullableEntitymanagerListAttributeGroupsRequest) Get

func (NullableEntitymanagerListAttributeGroupsRequest) IsSet

func (NullableEntitymanagerListAttributeGroupsRequest) MarshalJSON

func (*NullableEntitymanagerListAttributeGroupsRequest) Set

func (*NullableEntitymanagerListAttributeGroupsRequest) UnmarshalJSON

func (*NullableEntitymanagerListAttributeGroupsRequest) Unset

type NullableEntitymanagerListAttributeGroupsResponse

type NullableEntitymanagerListAttributeGroupsResponse struct {
	// contains filtered or unexported fields
}

func (NullableEntitymanagerListAttributeGroupsResponse) Get

func (NullableEntitymanagerListAttributeGroupsResponse) IsSet

func (NullableEntitymanagerListAttributeGroupsResponse) MarshalJSON

func (*NullableEntitymanagerListAttributeGroupsResponse) Set

func (*NullableEntitymanagerListAttributeGroupsResponse) UnmarshalJSON

func (*NullableEntitymanagerListAttributeGroupsResponse) Unset

type NullableEntitymanagerListAttributeOptionsRequest

type NullableEntitymanagerListAttributeOptionsRequest struct {
	// contains filtered or unexported fields
}

func (NullableEntitymanagerListAttributeOptionsRequest) Get

func (NullableEntitymanagerListAttributeOptionsRequest) IsSet

func (NullableEntitymanagerListAttributeOptionsRequest) MarshalJSON

func (*NullableEntitymanagerListAttributeOptionsRequest) Set

func (*NullableEntitymanagerListAttributeOptionsRequest) UnmarshalJSON

func (*NullableEntitymanagerListAttributeOptionsRequest) Unset

type NullableEntitymanagerListAttributeOptionsResponse

type NullableEntitymanagerListAttributeOptionsResponse struct {
	// contains filtered or unexported fields
}

func (NullableEntitymanagerListAttributeOptionsResponse) Get

func (NullableEntitymanagerListAttributeOptionsResponse) IsSet

func (NullableEntitymanagerListAttributeOptionsResponse) MarshalJSON

func (*NullableEntitymanagerListAttributeOptionsResponse) Set

func (*NullableEntitymanagerListAttributeOptionsResponse) UnmarshalJSON

func (*NullableEntitymanagerListAttributeOptionsResponse) Unset

type NullableEntitymanagerListEntitiesRequest

type NullableEntitymanagerListEntitiesRequest struct {
	// contains filtered or unexported fields
}

func (NullableEntitymanagerListEntitiesRequest) Get

func (NullableEntitymanagerListEntitiesRequest) IsSet

func (NullableEntitymanagerListEntitiesRequest) MarshalJSON

func (*NullableEntitymanagerListEntitiesRequest) Set

func (*NullableEntitymanagerListEntitiesRequest) UnmarshalJSON

func (v *NullableEntitymanagerListEntitiesRequest) UnmarshalJSON(src []byte) error

func (*NullableEntitymanagerListEntitiesRequest) Unset

type NullableEntitymanagerListEntitiesResponse

type NullableEntitymanagerListEntitiesResponse struct {
	// contains filtered or unexported fields
}

func (NullableEntitymanagerListEntitiesResponse) Get

func (NullableEntitymanagerListEntitiesResponse) IsSet

func (NullableEntitymanagerListEntitiesResponse) MarshalJSON

func (*NullableEntitymanagerListEntitiesResponse) Set

func (*NullableEntitymanagerListEntitiesResponse) UnmarshalJSON

func (v *NullableEntitymanagerListEntitiesResponse) UnmarshalJSON(src []byte) error

func (*NullableEntitymanagerListEntitiesResponse) Unset

type NullableEntitymanagerListOptionsListsRequest

type NullableEntitymanagerListOptionsListsRequest struct {
	// contains filtered or unexported fields
}

func (NullableEntitymanagerListOptionsListsRequest) Get

func (NullableEntitymanagerListOptionsListsRequest) IsSet

func (NullableEntitymanagerListOptionsListsRequest) MarshalJSON

func (*NullableEntitymanagerListOptionsListsRequest) Set

func (*NullableEntitymanagerListOptionsListsRequest) UnmarshalJSON

func (*NullableEntitymanagerListOptionsListsRequest) Unset

type NullableEntitymanagerListOptionsListsResponse

type NullableEntitymanagerListOptionsListsResponse struct {
	// contains filtered or unexported fields
}

func (NullableEntitymanagerListOptionsListsResponse) Get

func (NullableEntitymanagerListOptionsListsResponse) IsSet

func (NullableEntitymanagerListOptionsListsResponse) MarshalJSON

func (*NullableEntitymanagerListOptionsListsResponse) Set

func (*NullableEntitymanagerListOptionsListsResponse) UnmarshalJSON

func (*NullableEntitymanagerListOptionsListsResponse) Unset

type NullableEntitymanagerOptionsList

type NullableEntitymanagerOptionsList struct {
	// contains filtered or unexported fields
}

func (NullableEntitymanagerOptionsList) Get

func (NullableEntitymanagerOptionsList) IsSet

func (NullableEntitymanagerOptionsList) MarshalJSON

func (v NullableEntitymanagerOptionsList) MarshalJSON() ([]byte, error)

func (*NullableEntitymanagerOptionsList) Set

func (*NullableEntitymanagerOptionsList) UnmarshalJSON

func (v *NullableEntitymanagerOptionsList) UnmarshalJSON(src []byte) error

func (*NullableEntitymanagerOptionsList) Unset

type NullableEntitymanagerRenderAs

type NullableEntitymanagerRenderAs struct {
	// contains filtered or unexported fields
}

func (NullableEntitymanagerRenderAs) Get

func (NullableEntitymanagerRenderAs) IsSet

func (NullableEntitymanagerRenderAs) MarshalJSON

func (v NullableEntitymanagerRenderAs) MarshalJSON() ([]byte, error)

func (*NullableEntitymanagerRenderAs) Set

func (*NullableEntitymanagerRenderAs) UnmarshalJSON

func (v *NullableEntitymanagerRenderAs) UnmarshalJSON(src []byte) error

func (*NullableEntitymanagerRenderAs) Unset

func (v *NullableEntitymanagerRenderAs) Unset()

type NullableEntitymanagerTypes

type NullableEntitymanagerTypes struct {
	// contains filtered or unexported fields
}

func NewNullableEntitymanagerTypes

func NewNullableEntitymanagerTypes(val *EntitymanagerTypes) *NullableEntitymanagerTypes

func (NullableEntitymanagerTypes) Get

func (NullableEntitymanagerTypes) IsSet

func (v NullableEntitymanagerTypes) IsSet() bool

func (NullableEntitymanagerTypes) MarshalJSON

func (v NullableEntitymanagerTypes) MarshalJSON() ([]byte, error)

func (*NullableEntitymanagerTypes) Set

func (*NullableEntitymanagerTypes) UnmarshalJSON

func (v *NullableEntitymanagerTypes) UnmarshalJSON(src []byte) error

func (*NullableEntitymanagerTypes) Unset

func (v *NullableEntitymanagerTypes) Unset()

type NullableEntitymanagerUpdateAttributeGroupRequest

type NullableEntitymanagerUpdateAttributeGroupRequest struct {
	// contains filtered or unexported fields
}

func (NullableEntitymanagerUpdateAttributeGroupRequest) Get

func (NullableEntitymanagerUpdateAttributeGroupRequest) IsSet

func (NullableEntitymanagerUpdateAttributeGroupRequest) MarshalJSON

func (*NullableEntitymanagerUpdateAttributeGroupRequest) Set

func (*NullableEntitymanagerUpdateAttributeGroupRequest) UnmarshalJSON

func (*NullableEntitymanagerUpdateAttributeGroupRequest) Unset

type NullableEntitymanagerUpdateAttributeGroupRequestPayload

type NullableEntitymanagerUpdateAttributeGroupRequestPayload struct {
	// contains filtered or unexported fields
}

func (NullableEntitymanagerUpdateAttributeGroupRequestPayload) Get

func (NullableEntitymanagerUpdateAttributeGroupRequestPayload) IsSet

func (NullableEntitymanagerUpdateAttributeGroupRequestPayload) MarshalJSON

func (*NullableEntitymanagerUpdateAttributeGroupRequestPayload) Set

func (*NullableEntitymanagerUpdateAttributeGroupRequestPayload) UnmarshalJSON

func (*NullableEntitymanagerUpdateAttributeGroupRequestPayload) Unset

type NullableEntitymanagerUpdateAttributeOptionsRequest

type NullableEntitymanagerUpdateAttributeOptionsRequest struct {
	// contains filtered or unexported fields
}

func (NullableEntitymanagerUpdateAttributeOptionsRequest) Get

func (NullableEntitymanagerUpdateAttributeOptionsRequest) IsSet

func (NullableEntitymanagerUpdateAttributeOptionsRequest) MarshalJSON

func (*NullableEntitymanagerUpdateAttributeOptionsRequest) Set

func (*NullableEntitymanagerUpdateAttributeOptionsRequest) UnmarshalJSON

func (*NullableEntitymanagerUpdateAttributeOptionsRequest) Unset

type NullableEntitymanagerUpdateAttributeOptionsResponse

type NullableEntitymanagerUpdateAttributeOptionsResponse struct {
	// contains filtered or unexported fields
}

func (NullableEntitymanagerUpdateAttributeOptionsResponse) Get

func (NullableEntitymanagerUpdateAttributeOptionsResponse) IsSet

func (NullableEntitymanagerUpdateAttributeOptionsResponse) MarshalJSON

func (*NullableEntitymanagerUpdateAttributeOptionsResponse) Set

func (*NullableEntitymanagerUpdateAttributeOptionsResponse) UnmarshalJSON

func (*NullableEntitymanagerUpdateAttributeOptionsResponse) Unset

type NullableEntitymanagerUpdateAttributeRequest

type NullableEntitymanagerUpdateAttributeRequest struct {
	// contains filtered or unexported fields
}

func (NullableEntitymanagerUpdateAttributeRequest) Get

func (NullableEntitymanagerUpdateAttributeRequest) IsSet

func (NullableEntitymanagerUpdateAttributeRequest) MarshalJSON

func (*NullableEntitymanagerUpdateAttributeRequest) Set

func (*NullableEntitymanagerUpdateAttributeRequest) UnmarshalJSON

func (v *NullableEntitymanagerUpdateAttributeRequest) UnmarshalJSON(src []byte) error

func (*NullableEntitymanagerUpdateAttributeRequest) Unset

type NullableEntitymanagerUpdateAttributeRequestPayload

type NullableEntitymanagerUpdateAttributeRequestPayload struct {
	// contains filtered or unexported fields
}

func (NullableEntitymanagerUpdateAttributeRequestPayload) Get

func (NullableEntitymanagerUpdateAttributeRequestPayload) IsSet

func (NullableEntitymanagerUpdateAttributeRequestPayload) MarshalJSON

func (*NullableEntitymanagerUpdateAttributeRequestPayload) Set

func (*NullableEntitymanagerUpdateAttributeRequestPayload) UnmarshalJSON

func (*NullableEntitymanagerUpdateAttributeRequestPayload) Unset

type NullableEntitymanagerUpdateOptionsListRequest

type NullableEntitymanagerUpdateOptionsListRequest struct {
	// contains filtered or unexported fields
}

func (NullableEntitymanagerUpdateOptionsListRequest) Get

func (NullableEntitymanagerUpdateOptionsListRequest) IsSet

func (NullableEntitymanagerUpdateOptionsListRequest) MarshalJSON

func (*NullableEntitymanagerUpdateOptionsListRequest) Set

func (*NullableEntitymanagerUpdateOptionsListRequest) UnmarshalJSON

func (*NullableEntitymanagerUpdateOptionsListRequest) Unset

type NullableEntitymanagerUpdateOptionsListResponse

type NullableEntitymanagerUpdateOptionsListResponse struct {
	// contains filtered or unexported fields
}

func (NullableEntitymanagerUpdateOptionsListResponse) Get

func (NullableEntitymanagerUpdateOptionsListResponse) IsSet

func (NullableEntitymanagerUpdateOptionsListResponse) MarshalJSON

func (*NullableEntitymanagerUpdateOptionsListResponse) Set

func (*NullableEntitymanagerUpdateOptionsListResponse) UnmarshalJSON

func (*NullableEntitymanagerUpdateOptionsListResponse) 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 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 NullableListProductsRequestFilter

type NullableListProductsRequestFilter struct {
	// contains filtered or unexported fields
}

func (NullableListProductsRequestFilter) Get

func (NullableListProductsRequestFilter) IsSet

func (NullableListProductsRequestFilter) MarshalJSON

func (v NullableListProductsRequestFilter) MarshalJSON() ([]byte, error)

func (*NullableListProductsRequestFilter) Set

func (*NullableListProductsRequestFilter) UnmarshalJSON

func (v *NullableListProductsRequestFilter) UnmarshalJSON(src []byte) error

func (*NullableListProductsRequestFilter) Unset

type NullableProductAddMediaGalleryEntryRequest

type NullableProductAddMediaGalleryEntryRequest struct {
	// contains filtered or unexported fields
}

func (NullableProductAddMediaGalleryEntryRequest) Get

func (NullableProductAddMediaGalleryEntryRequest) IsSet

func (NullableProductAddMediaGalleryEntryRequest) MarshalJSON

func (*NullableProductAddMediaGalleryEntryRequest) Set

func (*NullableProductAddMediaGalleryEntryRequest) UnmarshalJSON

func (v *NullableProductAddMediaGalleryEntryRequest) UnmarshalJSON(src []byte) error

func (*NullableProductAddMediaGalleryEntryRequest) Unset

type NullableProductAddMediaGalleryEntryResponse

type NullableProductAddMediaGalleryEntryResponse struct {
	// contains filtered or unexported fields
}

func (NullableProductAddMediaGalleryEntryResponse) Get

func (NullableProductAddMediaGalleryEntryResponse) IsSet

func (NullableProductAddMediaGalleryEntryResponse) MarshalJSON

func (*NullableProductAddMediaGalleryEntryResponse) Set

func (*NullableProductAddMediaGalleryEntryResponse) UnmarshalJSON

func (v *NullableProductAddMediaGalleryEntryResponse) UnmarshalJSON(src []byte) error

func (*NullableProductAddMediaGalleryEntryResponse) Unset

type NullableProductAssetData

type NullableProductAssetData struct {
	// contains filtered or unexported fields
}

func NewNullableProductAssetData

func NewNullableProductAssetData(val *ProductAssetData) *NullableProductAssetData

func (NullableProductAssetData) Get

func (NullableProductAssetData) IsSet

func (v NullableProductAssetData) IsSet() bool

func (NullableProductAssetData) MarshalJSON

func (v NullableProductAssetData) MarshalJSON() ([]byte, error)

func (*NullableProductAssetData) Set

func (*NullableProductAssetData) UnmarshalJSON

func (v *NullableProductAssetData) UnmarshalJSON(src []byte) error

func (*NullableProductAssetData) Unset

func (v *NullableProductAssetData) Unset()

type NullableProductAssets

type NullableProductAssets struct {
	// contains filtered or unexported fields
}

func NewNullableProductAssets

func NewNullableProductAssets(val *ProductAssets) *NullableProductAssets

func (NullableProductAssets) Get

func (NullableProductAssets) IsSet

func (v NullableProductAssets) IsSet() bool

func (NullableProductAssets) MarshalJSON

func (v NullableProductAssets) MarshalJSON() ([]byte, error)

func (*NullableProductAssets) Set

func (v *NullableProductAssets) Set(val *ProductAssets)

func (*NullableProductAssets) UnmarshalJSON

func (v *NullableProductAssets) UnmarshalJSON(src []byte) error

func (*NullableProductAssets) Unset

func (v *NullableProductAssets) Unset()

type NullableProductAssetsEntry

type NullableProductAssetsEntry struct {
	// contains filtered or unexported fields
}

func NewNullableProductAssetsEntry

func NewNullableProductAssetsEntry(val *ProductAssetsEntry) *NullableProductAssetsEntry

func (NullableProductAssetsEntry) Get

func (NullableProductAssetsEntry) IsSet

func (v NullableProductAssetsEntry) IsSet() bool

func (NullableProductAssetsEntry) MarshalJSON

func (v NullableProductAssetsEntry) MarshalJSON() ([]byte, error)

func (*NullableProductAssetsEntry) Set

func (*NullableProductAssetsEntry) UnmarshalJSON

func (v *NullableProductAssetsEntry) UnmarshalJSON(src []byte) error

func (*NullableProductAssetsEntry) Unset

func (v *NullableProductAssetsEntry) Unset()

type NullableProductAssetsEntryMetadata

type NullableProductAssetsEntryMetadata struct {
	// contains filtered or unexported fields
}

func (NullableProductAssetsEntryMetadata) Get

func (NullableProductAssetsEntryMetadata) IsSet

func (NullableProductAssetsEntryMetadata) MarshalJSON

func (v NullableProductAssetsEntryMetadata) MarshalJSON() ([]byte, error)

func (*NullableProductAssetsEntryMetadata) Set

func (*NullableProductAssetsEntryMetadata) UnmarshalJSON

func (v *NullableProductAssetsEntryMetadata) UnmarshalJSON(src []byte) error

func (*NullableProductAssetsEntryMetadata) Unset

type NullableProductAttributeResponseError

type NullableProductAttributeResponseError struct {
	// contains filtered or unexported fields
}

func (NullableProductAttributeResponseError) Get

func (NullableProductAttributeResponseError) IsSet

func (NullableProductAttributeResponseError) MarshalJSON

func (v NullableProductAttributeResponseError) MarshalJSON() ([]byte, error)

func (*NullableProductAttributeResponseError) Set

func (*NullableProductAttributeResponseError) UnmarshalJSON

func (v *NullableProductAttributeResponseError) UnmarshalJSON(src []byte) error

func (*NullableProductAttributeResponseError) Unset

type NullableProductBulkAddAssetsEntriesRequest

type NullableProductBulkAddAssetsEntriesRequest struct {
	// contains filtered or unexported fields
}

func (NullableProductBulkAddAssetsEntriesRequest) Get

func (NullableProductBulkAddAssetsEntriesRequest) IsSet

func (NullableProductBulkAddAssetsEntriesRequest) MarshalJSON

func (*NullableProductBulkAddAssetsEntriesRequest) Set

func (*NullableProductBulkAddAssetsEntriesRequest) UnmarshalJSON

func (v *NullableProductBulkAddAssetsEntriesRequest) UnmarshalJSON(src []byte) error

func (*NullableProductBulkAddAssetsEntriesRequest) Unset

type NullableProductBulkAddAssetsEntriesResponse

type NullableProductBulkAddAssetsEntriesResponse struct {
	// contains filtered or unexported fields
}

func (NullableProductBulkAddAssetsEntriesResponse) Get

func (NullableProductBulkAddAssetsEntriesResponse) IsSet

func (NullableProductBulkAddAssetsEntriesResponse) MarshalJSON

func (*NullableProductBulkAddAssetsEntriesResponse) Set

func (*NullableProductBulkAddAssetsEntriesResponse) UnmarshalJSON

func (v *NullableProductBulkAddAssetsEntriesResponse) UnmarshalJSON(src []byte) error

func (*NullableProductBulkAddAssetsEntriesResponse) Unset

type NullableProductBulkDeleteProductsRequest

type NullableProductBulkDeleteProductsRequest struct {
	// contains filtered or unexported fields
}

func (NullableProductBulkDeleteProductsRequest) Get

func (NullableProductBulkDeleteProductsRequest) IsSet

func (NullableProductBulkDeleteProductsRequest) MarshalJSON

func (*NullableProductBulkDeleteProductsRequest) Set

func (*NullableProductBulkDeleteProductsRequest) UnmarshalJSON

func (v *NullableProductBulkDeleteProductsRequest) UnmarshalJSON(src []byte) error

func (*NullableProductBulkDeleteProductsRequest) Unset

type NullableProductBulkRemoveAssetsEntriesRequest

type NullableProductBulkRemoveAssetsEntriesRequest struct {
	// contains filtered or unexported fields
}

func (NullableProductBulkRemoveAssetsEntriesRequest) Get

func (NullableProductBulkRemoveAssetsEntriesRequest) IsSet

func (NullableProductBulkRemoveAssetsEntriesRequest) MarshalJSON

func (*NullableProductBulkRemoveAssetsEntriesRequest) Set

func (*NullableProductBulkRemoveAssetsEntriesRequest) UnmarshalJSON

func (*NullableProductBulkRemoveAssetsEntriesRequest) Unset

type NullableProductBulkUpdateAssetsEntriesRequest

type NullableProductBulkUpdateAssetsEntriesRequest struct {
	// contains filtered or unexported fields
}

func (NullableProductBulkUpdateAssetsEntriesRequest) Get

func (NullableProductBulkUpdateAssetsEntriesRequest) IsSet

func (NullableProductBulkUpdateAssetsEntriesRequest) MarshalJSON

func (*NullableProductBulkUpdateAssetsEntriesRequest) Set

func (*NullableProductBulkUpdateAssetsEntriesRequest) UnmarshalJSON

func (*NullableProductBulkUpdateAssetsEntriesRequest) Unset

type NullableProductBulkUpdateAssetsEntriesResponse

type NullableProductBulkUpdateAssetsEntriesResponse struct {
	// contains filtered or unexported fields
}

func (NullableProductBulkUpdateAssetsEntriesResponse) Get

func (NullableProductBulkUpdateAssetsEntriesResponse) IsSet

func (NullableProductBulkUpdateAssetsEntriesResponse) MarshalJSON

func (*NullableProductBulkUpdateAssetsEntriesResponse) Set

func (*NullableProductBulkUpdateAssetsEntriesResponse) UnmarshalJSON

func (*NullableProductBulkUpdateAssetsEntriesResponse) Unset

type NullableProductBulkUpdateRequest

type NullableProductBulkUpdateRequest struct {
	// contains filtered or unexported fields
}

func (NullableProductBulkUpdateRequest) Get

func (NullableProductBulkUpdateRequest) IsSet

func (NullableProductBulkUpdateRequest) MarshalJSON

func (v NullableProductBulkUpdateRequest) MarshalJSON() ([]byte, error)

func (*NullableProductBulkUpdateRequest) Set

func (*NullableProductBulkUpdateRequest) UnmarshalJSON

func (v *NullableProductBulkUpdateRequest) UnmarshalJSON(src []byte) error

func (*NullableProductBulkUpdateRequest) Unset

type NullableProductBulkUpdateRequestPayload

type NullableProductBulkUpdateRequestPayload struct {
	// contains filtered or unexported fields
}

func (NullableProductBulkUpdateRequestPayload) Get

func (NullableProductBulkUpdateRequestPayload) IsSet

func (NullableProductBulkUpdateRequestPayload) MarshalJSON

func (v NullableProductBulkUpdateRequestPayload) MarshalJSON() ([]byte, error)

func (*NullableProductBulkUpdateRequestPayload) Set

func (*NullableProductBulkUpdateRequestPayload) UnmarshalJSON

func (v *NullableProductBulkUpdateRequestPayload) UnmarshalJSON(src []byte) error

func (*NullableProductBulkUpdateRequestPayload) Unset

type NullableProductBulkUpdateRequestV2

type NullableProductBulkUpdateRequestV2 struct {
	// contains filtered or unexported fields
}

func (NullableProductBulkUpdateRequestV2) Get

func (NullableProductBulkUpdateRequestV2) IsSet

func (NullableProductBulkUpdateRequestV2) MarshalJSON

func (v NullableProductBulkUpdateRequestV2) MarshalJSON() ([]byte, error)

func (*NullableProductBulkUpdateRequestV2) Set

func (*NullableProductBulkUpdateRequestV2) UnmarshalJSON

func (v *NullableProductBulkUpdateRequestV2) UnmarshalJSON(src []byte) error

func (*NullableProductBulkUpdateRequestV2) Unset

type NullableProductBulkUpdateRequestV2Payload

type NullableProductBulkUpdateRequestV2Payload struct {
	// contains filtered or unexported fields
}

func (NullableProductBulkUpdateRequestV2Payload) Get

func (NullableProductBulkUpdateRequestV2Payload) IsSet

func (NullableProductBulkUpdateRequestV2Payload) MarshalJSON

func (*NullableProductBulkUpdateRequestV2Payload) Set

func (*NullableProductBulkUpdateRequestV2Payload) UnmarshalJSON

func (v *NullableProductBulkUpdateRequestV2Payload) UnmarshalJSON(src []byte) error

func (*NullableProductBulkUpdateRequestV2Payload) Unset

type NullableProductBulkUpdateResponse

type NullableProductBulkUpdateResponse struct {
	// contains filtered or unexported fields
}

func (NullableProductBulkUpdateResponse) Get

func (NullableProductBulkUpdateResponse) IsSet

func (NullableProductBulkUpdateResponse) MarshalJSON

func (v NullableProductBulkUpdateResponse) MarshalJSON() ([]byte, error)

func (*NullableProductBulkUpdateResponse) Set

func (*NullableProductBulkUpdateResponse) UnmarshalJSON

func (v *NullableProductBulkUpdateResponse) UnmarshalJSON(src []byte) error

func (*NullableProductBulkUpdateResponse) Unset

type NullableProductBulkUpdateResponseResponse

type NullableProductBulkUpdateResponseResponse struct {
	// contains filtered or unexported fields
}

func (NullableProductBulkUpdateResponseResponse) Get

func (NullableProductBulkUpdateResponseResponse) IsSet

func (NullableProductBulkUpdateResponseResponse) MarshalJSON

func (*NullableProductBulkUpdateResponseResponse) Set

func (*NullableProductBulkUpdateResponseResponse) UnmarshalJSON

func (v *NullableProductBulkUpdateResponseResponse) UnmarshalJSON(src []byte) error

func (*NullableProductBulkUpdateResponseResponse) Unset

type NullableProductBulkUpdateResponseV2

type NullableProductBulkUpdateResponseV2 struct {
	// contains filtered or unexported fields
}

func (NullableProductBulkUpdateResponseV2) Get

func (NullableProductBulkUpdateResponseV2) IsSet

func (NullableProductBulkUpdateResponseV2) MarshalJSON

func (v NullableProductBulkUpdateResponseV2) MarshalJSON() ([]byte, error)

func (*NullableProductBulkUpdateResponseV2) Set

func (*NullableProductBulkUpdateResponseV2) UnmarshalJSON

func (v *NullableProductBulkUpdateResponseV2) UnmarshalJSON(src []byte) error

func (*NullableProductBulkUpdateResponseV2) Unset

type NullableProductBulkUpdateResponseV2Response

type NullableProductBulkUpdateResponseV2Response struct {
	// contains filtered or unexported fields
}

func (NullableProductBulkUpdateResponseV2Response) Get

func (NullableProductBulkUpdateResponseV2Response) IsSet

func (NullableProductBulkUpdateResponseV2Response) MarshalJSON

func (*NullableProductBulkUpdateResponseV2Response) Set

func (*NullableProductBulkUpdateResponseV2Response) UnmarshalJSON

func (v *NullableProductBulkUpdateResponseV2Response) UnmarshalJSON(src []byte) error

func (*NullableProductBulkUpdateResponseV2Response) Unset

type NullableProductCreateProductRequest

type NullableProductCreateProductRequest struct {
	// contains filtered or unexported fields
}

func (NullableProductCreateProductRequest) Get

func (NullableProductCreateProductRequest) IsSet

func (NullableProductCreateProductRequest) MarshalJSON

func (v NullableProductCreateProductRequest) MarshalJSON() ([]byte, error)

func (*NullableProductCreateProductRequest) Set

func (*NullableProductCreateProductRequest) UnmarshalJSON

func (v *NullableProductCreateProductRequest) UnmarshalJSON(src []byte) error

func (*NullableProductCreateProductRequest) Unset

type NullableProductCreateProductRequestV2

type NullableProductCreateProductRequestV2 struct {
	// contains filtered or unexported fields
}

func (NullableProductCreateProductRequestV2) Get

func (NullableProductCreateProductRequestV2) IsSet

func (NullableProductCreateProductRequestV2) MarshalJSON

func (v NullableProductCreateProductRequestV2) MarshalJSON() ([]byte, error)

func (*NullableProductCreateProductRequestV2) Set

func (*NullableProductCreateProductRequestV2) UnmarshalJSON

func (v *NullableProductCreateProductRequestV2) UnmarshalJSON(src []byte) error

func (*NullableProductCreateProductRequestV2) Unset

type NullableProductCreateProductResponse

type NullableProductCreateProductResponse struct {
	// contains filtered or unexported fields
}

func (NullableProductCreateProductResponse) Get

func (NullableProductCreateProductResponse) IsSet

func (NullableProductCreateProductResponse) MarshalJSON

func (v NullableProductCreateProductResponse) MarshalJSON() ([]byte, error)

func (*NullableProductCreateProductResponse) Set

func (*NullableProductCreateProductResponse) UnmarshalJSON

func (v *NullableProductCreateProductResponse) UnmarshalJSON(src []byte) error

func (*NullableProductCreateProductResponse) Unset

type NullableProductCreateProductResponseV2

type NullableProductCreateProductResponseV2 struct {
	// contains filtered or unexported fields
}

func (NullableProductCreateProductResponseV2) Get

func (NullableProductCreateProductResponseV2) IsSet

func (NullableProductCreateProductResponseV2) MarshalJSON

func (v NullableProductCreateProductResponseV2) MarshalJSON() ([]byte, error)

func (*NullableProductCreateProductResponseV2) Set

func (*NullableProductCreateProductResponseV2) UnmarshalJSON

func (v *NullableProductCreateProductResponseV2) UnmarshalJSON(src []byte) error

func (*NullableProductCreateProductResponseV2) Unset

type NullableProductDeleteProductRequest

type NullableProductDeleteProductRequest struct {
	// contains filtered or unexported fields
}

func (NullableProductDeleteProductRequest) Get

func (NullableProductDeleteProductRequest) IsSet

func (NullableProductDeleteProductRequest) MarshalJSON

func (v NullableProductDeleteProductRequest) MarshalJSON() ([]byte, error)

func (*NullableProductDeleteProductRequest) Set

func (*NullableProductDeleteProductRequest) UnmarshalJSON

func (v *NullableProductDeleteProductRequest) UnmarshalJSON(src []byte) error

func (*NullableProductDeleteProductRequest) Unset

type NullableProductDeleteRequest

type NullableProductDeleteRequest struct {
	// contains filtered or unexported fields
}

func NewNullableProductDeleteRequest

func NewNullableProductDeleteRequest(val *ProductDeleteRequest) *NullableProductDeleteRequest

func (NullableProductDeleteRequest) Get

func (NullableProductDeleteRequest) IsSet

func (NullableProductDeleteRequest) MarshalJSON

func (v NullableProductDeleteRequest) MarshalJSON() ([]byte, error)

func (*NullableProductDeleteRequest) Set

func (*NullableProductDeleteRequest) UnmarshalJSON

func (v *NullableProductDeleteRequest) UnmarshalJSON(src []byte) error

func (*NullableProductDeleteRequest) Unset

func (v *NullableProductDeleteRequest) Unset()

type NullableProductDeleteResponse

type NullableProductDeleteResponse struct {
	// contains filtered or unexported fields
}

func (NullableProductDeleteResponse) Get

func (NullableProductDeleteResponse) IsSet

func (NullableProductDeleteResponse) MarshalJSON

func (v NullableProductDeleteResponse) MarshalJSON() ([]byte, error)

func (*NullableProductDeleteResponse) Set

func (*NullableProductDeleteResponse) UnmarshalJSON

func (v *NullableProductDeleteResponse) UnmarshalJSON(src []byte) error

func (*NullableProductDeleteResponse) Unset

func (v *NullableProductDeleteResponse) Unset()

type NullableProductFieldMask

type NullableProductFieldMask struct {
	// contains filtered or unexported fields
}

func NewNullableProductFieldMask

func NewNullableProductFieldMask(val *ProductFieldMask) *NullableProductFieldMask

func (NullableProductFieldMask) Get

func (NullableProductFieldMask) IsSet

func (v NullableProductFieldMask) IsSet() bool

func (NullableProductFieldMask) MarshalJSON

func (v NullableProductFieldMask) MarshalJSON() ([]byte, error)

func (*NullableProductFieldMask) Set

func (*NullableProductFieldMask) UnmarshalJSON

func (v *NullableProductFieldMask) UnmarshalJSON(src []byte) error

func (*NullableProductFieldMask) Unset

func (v *NullableProductFieldMask) Unset()

type NullableProductGetProductByCodeRequest

type NullableProductGetProductByCodeRequest struct {
	// contains filtered or unexported fields
}

func (NullableProductGetProductByCodeRequest) Get

func (NullableProductGetProductByCodeRequest) IsSet

func (NullableProductGetProductByCodeRequest) MarshalJSON

func (v NullableProductGetProductByCodeRequest) MarshalJSON() ([]byte, error)

func (*NullableProductGetProductByCodeRequest) Set

func (*NullableProductGetProductByCodeRequest) UnmarshalJSON

func (v *NullableProductGetProductByCodeRequest) UnmarshalJSON(src []byte) error

func (*NullableProductGetProductByCodeRequest) Unset

type NullableProductGetProductByCodeResponse

type NullableProductGetProductByCodeResponse struct {
	// contains filtered or unexported fields
}

func (NullableProductGetProductByCodeResponse) Get

func (NullableProductGetProductByCodeResponse) IsSet

func (NullableProductGetProductByCodeResponse) MarshalJSON

func (v NullableProductGetProductByCodeResponse) MarshalJSON() ([]byte, error)

func (*NullableProductGetProductByCodeResponse) Set

func (*NullableProductGetProductByCodeResponse) UnmarshalJSON

func (v *NullableProductGetProductByCodeResponse) UnmarshalJSON(src []byte) error

func (*NullableProductGetProductByCodeResponse) Unset

type NullableProductGetProductByUrlKeyRequest

type NullableProductGetProductByUrlKeyRequest struct {
	// contains filtered or unexported fields
}

func (NullableProductGetProductByUrlKeyRequest) Get

func (NullableProductGetProductByUrlKeyRequest) IsSet

func (NullableProductGetProductByUrlKeyRequest) MarshalJSON

func (*NullableProductGetProductByUrlKeyRequest) Set

func (*NullableProductGetProductByUrlKeyRequest) UnmarshalJSON

func (v *NullableProductGetProductByUrlKeyRequest) UnmarshalJSON(src []byte) error

func (*NullableProductGetProductByUrlKeyRequest) Unset

type NullableProductGetProductByUrlKeyResponse

type NullableProductGetProductByUrlKeyResponse struct {
	// contains filtered or unexported fields
}

func (NullableProductGetProductByUrlKeyResponse) Get

func (NullableProductGetProductByUrlKeyResponse) IsSet

func (NullableProductGetProductByUrlKeyResponse) MarshalJSON

func (*NullableProductGetProductByUrlKeyResponse) Set

func (*NullableProductGetProductByUrlKeyResponse) UnmarshalJSON

func (v *NullableProductGetProductByUrlKeyResponse) UnmarshalJSON(src []byte) error

func (*NullableProductGetProductByUrlKeyResponse) Unset

type NullableProductGetProductRequest

type NullableProductGetProductRequest struct {
	// contains filtered or unexported fields
}

func (NullableProductGetProductRequest) Get

func (NullableProductGetProductRequest) IsSet

func (NullableProductGetProductRequest) MarshalJSON

func (v NullableProductGetProductRequest) MarshalJSON() ([]byte, error)

func (*NullableProductGetProductRequest) Set

func (*NullableProductGetProductRequest) UnmarshalJSON

func (v *NullableProductGetProductRequest) UnmarshalJSON(src []byte) error

func (*NullableProductGetProductRequest) Unset

type NullableProductGetProductResponse

type NullableProductGetProductResponse struct {
	// contains filtered or unexported fields
}

func (NullableProductGetProductResponse) Get

func (NullableProductGetProductResponse) IsSet

func (NullableProductGetProductResponse) MarshalJSON

func (v NullableProductGetProductResponse) MarshalJSON() ([]byte, error)

func (*NullableProductGetProductResponse) Set

func (*NullableProductGetProductResponse) UnmarshalJSON

func (v *NullableProductGetProductResponse) UnmarshalJSON(src []byte) error

func (*NullableProductGetProductResponse) Unset

type NullableProductListProductsByIdsRequest

type NullableProductListProductsByIdsRequest struct {
	// contains filtered or unexported fields
}

func (NullableProductListProductsByIdsRequest) Get

func (NullableProductListProductsByIdsRequest) IsSet

func (NullableProductListProductsByIdsRequest) MarshalJSON

func (v NullableProductListProductsByIdsRequest) MarshalJSON() ([]byte, error)

func (*NullableProductListProductsByIdsRequest) Set

func (*NullableProductListProductsByIdsRequest) UnmarshalJSON

func (v *NullableProductListProductsByIdsRequest) UnmarshalJSON(src []byte) error

func (*NullableProductListProductsByIdsRequest) Unset

type NullableProductListProductsByIdsResponse

type NullableProductListProductsByIdsResponse struct {
	// contains filtered or unexported fields
}

func (NullableProductListProductsByIdsResponse) Get

func (NullableProductListProductsByIdsResponse) IsSet

func (NullableProductListProductsByIdsResponse) MarshalJSON

func (*NullableProductListProductsByIdsResponse) Set

func (*NullableProductListProductsByIdsResponse) UnmarshalJSON

func (v *NullableProductListProductsByIdsResponse) UnmarshalJSON(src []byte) error

func (*NullableProductListProductsByIdsResponse) Unset

type NullableProductListProductsBySkuRequest

type NullableProductListProductsBySkuRequest struct {
	// contains filtered or unexported fields
}

func (NullableProductListProductsBySkuRequest) Get

func (NullableProductListProductsBySkuRequest) IsSet

func (NullableProductListProductsBySkuRequest) MarshalJSON

func (v NullableProductListProductsBySkuRequest) MarshalJSON() ([]byte, error)

func (*NullableProductListProductsBySkuRequest) Set

func (*NullableProductListProductsBySkuRequest) UnmarshalJSON

func (v *NullableProductListProductsBySkuRequest) UnmarshalJSON(src []byte) error

func (*NullableProductListProductsBySkuRequest) Unset

type NullableProductListProductsBySkuResponse

type NullableProductListProductsBySkuResponse struct {
	// contains filtered or unexported fields
}

func (NullableProductListProductsBySkuResponse) Get

func (NullableProductListProductsBySkuResponse) IsSet

func (NullableProductListProductsBySkuResponse) MarshalJSON

func (*NullableProductListProductsBySkuResponse) Set

func (*NullableProductListProductsBySkuResponse) UnmarshalJSON

func (v *NullableProductListProductsBySkuResponse) UnmarshalJSON(src []byte) error

func (*NullableProductListProductsBySkuResponse) Unset

type NullableProductListProductsRequest

type NullableProductListProductsRequest struct {
	// contains filtered or unexported fields
}

func (NullableProductListProductsRequest) Get

func (NullableProductListProductsRequest) IsSet

func (NullableProductListProductsRequest) MarshalJSON

func (v NullableProductListProductsRequest) MarshalJSON() ([]byte, error)

func (*NullableProductListProductsRequest) Set

func (*NullableProductListProductsRequest) UnmarshalJSON

func (v *NullableProductListProductsRequest) UnmarshalJSON(src []byte) error

func (*NullableProductListProductsRequest) Unset

type NullableProductListProductsResponse

type NullableProductListProductsResponse struct {
	// contains filtered or unexported fields
}

func (NullableProductListProductsResponse) Get

func (NullableProductListProductsResponse) IsSet

func (NullableProductListProductsResponse) MarshalJSON

func (v NullableProductListProductsResponse) MarshalJSON() ([]byte, error)

func (*NullableProductListProductsResponse) Set

func (*NullableProductListProductsResponse) UnmarshalJSON

func (v *NullableProductListProductsResponse) UnmarshalJSON(src []byte) error

func (*NullableProductListProductsResponse) Unset

type NullableProductListVariantsBySkuRequest

type NullableProductListVariantsBySkuRequest struct {
	// contains filtered or unexported fields
}

func (NullableProductListVariantsBySkuRequest) Get

func (NullableProductListVariantsBySkuRequest) IsSet

func (NullableProductListVariantsBySkuRequest) MarshalJSON

func (v NullableProductListVariantsBySkuRequest) MarshalJSON() ([]byte, error)

func (*NullableProductListVariantsBySkuRequest) Set

func (*NullableProductListVariantsBySkuRequest) UnmarshalJSON

func (v *NullableProductListVariantsBySkuRequest) UnmarshalJSON(src []byte) error

func (*NullableProductListVariantsBySkuRequest) Unset

type NullableProductListVariantsBySkuResponse

type NullableProductListVariantsBySkuResponse struct {
	// contains filtered or unexported fields
}

func (NullableProductListVariantsBySkuResponse) Get

func (NullableProductListVariantsBySkuResponse) IsSet

func (NullableProductListVariantsBySkuResponse) MarshalJSON

func (*NullableProductListVariantsBySkuResponse) Set

func (*NullableProductListVariantsBySkuResponse) UnmarshalJSON

func (v *NullableProductListVariantsBySkuResponse) UnmarshalJSON(src []byte) error

func (*NullableProductListVariantsBySkuResponse) Unset

type NullableProductLocalizedAsset

type NullableProductLocalizedAsset struct {
	// contains filtered or unexported fields
}

func (NullableProductLocalizedAsset) Get

func (NullableProductLocalizedAsset) IsSet

func (NullableProductLocalizedAsset) MarshalJSON

func (v NullableProductLocalizedAsset) MarshalJSON() ([]byte, error)

func (*NullableProductLocalizedAsset) Set

func (*NullableProductLocalizedAsset) UnmarshalJSON

func (v *NullableProductLocalizedAsset) UnmarshalJSON(src []byte) error

func (*NullableProductLocalizedAsset) Unset

func (v *NullableProductLocalizedAsset) Unset()

type NullableProductLocalizedText

type NullableProductLocalizedText struct {
	// contains filtered or unexported fields
}

func NewNullableProductLocalizedText

func NewNullableProductLocalizedText(val *ProductLocalizedText) *NullableProductLocalizedText

func (NullableProductLocalizedText) Get

func (NullableProductLocalizedText) IsSet

func (NullableProductLocalizedText) MarshalJSON

func (v NullableProductLocalizedText) MarshalJSON() ([]byte, error)

func (*NullableProductLocalizedText) Set

func (*NullableProductLocalizedText) UnmarshalJSON

func (v *NullableProductLocalizedText) UnmarshalJSON(src []byte) error

func (*NullableProductLocalizedText) Unset

func (v *NullableProductLocalizedText) Unset()

type NullableProductMediaGallery

type NullableProductMediaGallery struct {
	// contains filtered or unexported fields
}

func NewNullableProductMediaGallery

func NewNullableProductMediaGallery(val *ProductMediaGallery) *NullableProductMediaGallery

func (NullableProductMediaGallery) Get

func (NullableProductMediaGallery) IsSet

func (NullableProductMediaGallery) MarshalJSON

func (v NullableProductMediaGallery) MarshalJSON() ([]byte, error)

func (*NullableProductMediaGallery) Set

func (*NullableProductMediaGallery) UnmarshalJSON

func (v *NullableProductMediaGallery) UnmarshalJSON(src []byte) error

func (*NullableProductMediaGallery) Unset

func (v *NullableProductMediaGallery) Unset()

type NullableProductMediaGalleryEntry

type NullableProductMediaGalleryEntry struct {
	// contains filtered or unexported fields
}

func (NullableProductMediaGalleryEntry) Get

func (NullableProductMediaGalleryEntry) IsSet

func (NullableProductMediaGalleryEntry) MarshalJSON

func (v NullableProductMediaGalleryEntry) MarshalJSON() ([]byte, error)

func (*NullableProductMediaGalleryEntry) Set

func (*NullableProductMediaGalleryEntry) UnmarshalJSON

func (v *NullableProductMediaGalleryEntry) UnmarshalJSON(src []byte) error

func (*NullableProductMediaGalleryEntry) Unset

type NullableProductMediaGalleryEntryMetadata

type NullableProductMediaGalleryEntryMetadata struct {
	// contains filtered or unexported fields
}

func (NullableProductMediaGalleryEntryMetadata) Get

func (NullableProductMediaGalleryEntryMetadata) IsSet

func (NullableProductMediaGalleryEntryMetadata) MarshalJSON

func (*NullableProductMediaGalleryEntryMetadata) Set

func (*NullableProductMediaGalleryEntryMetadata) UnmarshalJSON

func (v *NullableProductMediaGalleryEntryMetadata) UnmarshalJSON(src []byte) error

func (*NullableProductMediaGalleryEntryMetadata) Unset

type NullableProductProductEntity

type NullableProductProductEntity struct {
	// contains filtered or unexported fields
}

func NewNullableProductProductEntity

func NewNullableProductProductEntity(val *ProductProductEntity) *NullableProductProductEntity

func (NullableProductProductEntity) Get

func (NullableProductProductEntity) IsSet

func (NullableProductProductEntity) MarshalJSON

func (v NullableProductProductEntity) MarshalJSON() ([]byte, error)

func (*NullableProductProductEntity) Set

func (*NullableProductProductEntity) UnmarshalJSON

func (v *NullableProductProductEntity) UnmarshalJSON(src []byte) error

func (*NullableProductProductEntity) Unset

func (v *NullableProductProductEntity) Unset()

type NullableProductProductResponseError

type NullableProductProductResponseError struct {
	// contains filtered or unexported fields
}

func (NullableProductProductResponseError) Get

func (NullableProductProductResponseError) IsSet

func (NullableProductProductResponseError) MarshalJSON

func (v NullableProductProductResponseError) MarshalJSON() ([]byte, error)

func (*NullableProductProductResponseError) Set

func (*NullableProductProductResponseError) UnmarshalJSON

func (v *NullableProductProductResponseError) UnmarshalJSON(src []byte) error

func (*NullableProductProductResponseError) Unset

type NullableProductProductVariant

type NullableProductProductVariant struct {
	// contains filtered or unexported fields
}

func (NullableProductProductVariant) Get

func (NullableProductProductVariant) IsSet

func (NullableProductProductVariant) MarshalJSON

func (v NullableProductProductVariant) MarshalJSON() ([]byte, error)

func (*NullableProductProductVariant) Set

func (*NullableProductProductVariant) UnmarshalJSON

func (v *NullableProductProductVariant) UnmarshalJSON(src []byte) error

func (*NullableProductProductVariant) Unset

func (v *NullableProductProductVariant) Unset()

type NullableProductRemoveMediaGalleryEntryRequest

type NullableProductRemoveMediaGalleryEntryRequest struct {
	// contains filtered or unexported fields
}

func (NullableProductRemoveMediaGalleryEntryRequest) Get

func (NullableProductRemoveMediaGalleryEntryRequest) IsSet

func (NullableProductRemoveMediaGalleryEntryRequest) MarshalJSON

func (*NullableProductRemoveMediaGalleryEntryRequest) Set

func (*NullableProductRemoveMediaGalleryEntryRequest) UnmarshalJSON

func (*NullableProductRemoveMediaGalleryEntryRequest) Unset

type NullableProductUpdateAssetEntryPayload

type NullableProductUpdateAssetEntryPayload struct {
	// contains filtered or unexported fields
}

func (NullableProductUpdateAssetEntryPayload) Get

func (NullableProductUpdateAssetEntryPayload) IsSet

func (NullableProductUpdateAssetEntryPayload) MarshalJSON

func (v NullableProductUpdateAssetEntryPayload) MarshalJSON() ([]byte, error)

func (*NullableProductUpdateAssetEntryPayload) Set

func (*NullableProductUpdateAssetEntryPayload) UnmarshalJSON

func (v *NullableProductUpdateAssetEntryPayload) UnmarshalJSON(src []byte) error

func (*NullableProductUpdateAssetEntryPayload) Unset

type NullableProductUpdateMediaGalleryEntryRequest

type NullableProductUpdateMediaGalleryEntryRequest struct {
	// contains filtered or unexported fields
}

func (NullableProductUpdateMediaGalleryEntryRequest) Get

func (NullableProductUpdateMediaGalleryEntryRequest) IsSet

func (NullableProductUpdateMediaGalleryEntryRequest) MarshalJSON

func (*NullableProductUpdateMediaGalleryEntryRequest) Set

func (*NullableProductUpdateMediaGalleryEntryRequest) UnmarshalJSON

func (*NullableProductUpdateMediaGalleryEntryRequest) Unset

type NullableProductUpdateProductRequest

type NullableProductUpdateProductRequest struct {
	// contains filtered or unexported fields
}

func (NullableProductUpdateProductRequest) Get

func (NullableProductUpdateProductRequest) IsSet

func (NullableProductUpdateProductRequest) MarshalJSON

func (v NullableProductUpdateProductRequest) MarshalJSON() ([]byte, error)

func (*NullableProductUpdateProductRequest) Set

func (*NullableProductUpdateProductRequest) UnmarshalJSON

func (v *NullableProductUpdateProductRequest) UnmarshalJSON(src []byte) error

func (*NullableProductUpdateProductRequest) Unset

type NullableProductUpdateProductRequestV2

type NullableProductUpdateProductRequestV2 struct {
	// contains filtered or unexported fields
}

func (NullableProductUpdateProductRequestV2) Get

func (NullableProductUpdateProductRequestV2) IsSet

func (NullableProductUpdateProductRequestV2) MarshalJSON

func (v NullableProductUpdateProductRequestV2) MarshalJSON() ([]byte, error)

func (*NullableProductUpdateProductRequestV2) Set

func (*NullableProductUpdateProductRequestV2) UnmarshalJSON

func (v *NullableProductUpdateProductRequestV2) UnmarshalJSON(src []byte) error

func (*NullableProductUpdateProductRequestV2) Unset

type NullableProductUpdateProductResponse

type NullableProductUpdateProductResponse struct {
	// contains filtered or unexported fields
}

func (NullableProductUpdateProductResponse) Get

func (NullableProductUpdateProductResponse) IsSet

func (NullableProductUpdateProductResponse) MarshalJSON

func (v NullableProductUpdateProductResponse) MarshalJSON() ([]byte, error)

func (*NullableProductUpdateProductResponse) Set

func (*NullableProductUpdateProductResponse) UnmarshalJSON

func (v *NullableProductUpdateProductResponse) UnmarshalJSON(src []byte) error

func (*NullableProductUpdateProductResponse) Unset

type NullableProductentitymanagerLocalizedText

type NullableProductentitymanagerLocalizedText struct {
	// contains filtered or unexported fields
}

func (NullableProductentitymanagerLocalizedText) Get

func (NullableProductentitymanagerLocalizedText) IsSet

func (NullableProductentitymanagerLocalizedText) MarshalJSON

func (*NullableProductentitymanagerLocalizedText) Set

func (*NullableProductentitymanagerLocalizedText) UnmarshalJSON

func (v *NullableProductentitymanagerLocalizedText) UnmarshalJSON(src []byte) error

func (*NullableProductentitymanagerLocalizedText) Unset

type NullableProtobufAny

type NullableProtobufAny struct {
	// contains filtered or unexported fields
}

func NewNullableProtobufAny

func NewNullableProtobufAny(val *ProtobufAny) *NullableProtobufAny

func (NullableProtobufAny) Get

func (NullableProtobufAny) IsSet

func (v NullableProtobufAny) IsSet() bool

func (NullableProtobufAny) MarshalJSON

func (v NullableProtobufAny) MarshalJSON() ([]byte, error)

func (*NullableProtobufAny) Set

func (v *NullableProtobufAny) Set(val *ProtobufAny)

func (*NullableProtobufAny) UnmarshalJSON

func (v *NullableProtobufAny) UnmarshalJSON(src []byte) error

func (*NullableProtobufAny) Unset

func (v *NullableProtobufAny) Unset()

type NullableRpcStatus

type NullableRpcStatus struct {
	// contains filtered or unexported fields
}

func NewNullableRpcStatus

func NewNullableRpcStatus(val *RpcStatus) *NullableRpcStatus

func (NullableRpcStatus) Get

func (v NullableRpcStatus) Get() *RpcStatus

func (NullableRpcStatus) IsSet

func (v NullableRpcStatus) IsSet() bool

func (NullableRpcStatus) MarshalJSON

func (v NullableRpcStatus) MarshalJSON() ([]byte, error)

func (*NullableRpcStatus) Set

func (v *NullableRpcStatus) Set(val *RpcStatus)

func (*NullableRpcStatus) UnmarshalJSON

func (v *NullableRpcStatus) UnmarshalJSON(src []byte) error

func (*NullableRpcStatus) Unset

func (v *NullableRpcStatus) 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 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 ProductAPIProductAddMediaGalleryEntryRequest

type ProductAPIProductAddMediaGalleryEntryRequest struct {
	ApiService *ProductAPIService
	// contains filtered or unexported fields
}

func (ProductAPIProductAddMediaGalleryEntryRequest) Execute

type ProductAPIProductBulkAddAssetsEntriesRequest

type ProductAPIProductBulkAddAssetsEntriesRequest struct {
	ApiService *ProductAPIService
	// contains filtered or unexported fields
}

func (ProductAPIProductBulkAddAssetsEntriesRequest) Execute

type ProductAPIProductBulkCreateAttributeRequest

type ProductAPIProductBulkCreateAttributeRequest struct {
	ApiService *ProductAPIService
	// contains filtered or unexported fields
}

func (ProductAPIProductBulkCreateAttributeRequest) Execute

type ProductAPIProductBulkDeleteProductsRequest

type ProductAPIProductBulkDeleteProductsRequest struct {
	ApiService *ProductAPIService
	// contains filtered or unexported fields
}

func (ProductAPIProductBulkDeleteProductsRequest) Execute

func (r ProductAPIProductBulkDeleteProductsRequest) Execute() (map[string]interface{}, *http.Response, error)

type ProductAPIProductBulkRemoveAssetsEntriesRequest

type ProductAPIProductBulkRemoveAssetsEntriesRequest struct {
	ApiService *ProductAPIService
	// contains filtered or unexported fields
}

func (ProductAPIProductBulkRemoveAssetsEntriesRequest) Execute

type ProductAPIProductBulkUpdateAssetsEntriesRequest

type ProductAPIProductBulkUpdateAssetsEntriesRequest struct {
	ApiService *ProductAPIService
	// contains filtered or unexported fields
}

func (ProductAPIProductBulkUpdateAssetsEntriesRequest) Execute

type ProductAPIProductBulkUpdateRequest

type ProductAPIProductBulkUpdateRequest struct {
	ApiService *ProductAPIService
	// contains filtered or unexported fields
}

func (ProductAPIProductBulkUpdateRequest) Body

func (ProductAPIProductBulkUpdateRequest) Execute

type ProductAPIProductBulkUpdateV2Request

type ProductAPIProductBulkUpdateV2Request struct {
	ApiService *ProductAPIService
	// contains filtered or unexported fields
}

func (ProductAPIProductBulkUpdateV2Request) Body

func (ProductAPIProductBulkUpdateV2Request) Execute

type ProductAPIProductCreateAttributeGroupRequest

type ProductAPIProductCreateAttributeGroupRequest struct {
	ApiService *ProductAPIService
	// contains filtered or unexported fields
}

func (ProductAPIProductCreateAttributeGroupRequest) Execute

type ProductAPIProductCreateAttributeOptionsRequest

type ProductAPIProductCreateAttributeOptionsRequest struct {
	ApiService *ProductAPIService
	// contains filtered or unexported fields
}

func (ProductAPIProductCreateAttributeOptionsRequest) Execute

type ProductAPIProductCreateEntityRequest

type ProductAPIProductCreateEntityRequest struct {
	ApiService *ProductAPIService
	// contains filtered or unexported fields
}

func (ProductAPIProductCreateEntityRequest) Body

func (ProductAPIProductCreateEntityRequest) Execute

type ProductAPIProductCreateOptionsListRequest

type ProductAPIProductCreateOptionsListRequest struct {
	ApiService *ProductAPIService
	// contains filtered or unexported fields
}

func (ProductAPIProductCreateOptionsListRequest) Execute

type ProductAPIProductCreateProductRequest

type ProductAPIProductCreateProductRequest struct {
	ApiService *ProductAPIService
	// contains filtered or unexported fields
}

func (ProductAPIProductCreateProductRequest) Execute

type ProductAPIProductCreateProductV2Request

type ProductAPIProductCreateProductV2Request struct {
	ApiService *ProductAPIService
	// contains filtered or unexported fields
}

func (ProductAPIProductCreateProductV2Request) Execute

type ProductAPIProductDeleteAttributeRequest

type ProductAPIProductDeleteAttributeRequest struct {
	ApiService *ProductAPIService
	// contains filtered or unexported fields
}

func (ProductAPIProductDeleteAttributeRequest) Execute

func (r ProductAPIProductDeleteAttributeRequest) Execute() (map[string]interface{}, *http.Response, error)

type ProductAPIProductDeleteProductRequest

type ProductAPIProductDeleteProductRequest struct {
	ApiService *ProductAPIService
	// contains filtered or unexported fields
}

func (ProductAPIProductDeleteProductRequest) Execute

func (r ProductAPIProductDeleteProductRequest) Execute() (map[string]interface{}, *http.Response, error)

type ProductAPIProductDeleteRequest

type ProductAPIProductDeleteRequest struct {
	ApiService *ProductAPIService
	// contains filtered or unexported fields
}

func (ProductAPIProductDeleteRequest) Body

func (ProductAPIProductDeleteRequest) Execute

type ProductAPIProductGetAttributeGroupRequest

type ProductAPIProductGetAttributeGroupRequest struct {
	ApiService *ProductAPIService
	// contains filtered or unexported fields
}

func (ProductAPIProductGetAttributeGroupRequest) Execute

type ProductAPIProductGetAttributeOptionRequest

type ProductAPIProductGetAttributeOptionRequest struct {
	ApiService *ProductAPIService
	// contains filtered or unexported fields
}

func (ProductAPIProductGetAttributeOptionRequest) Execute

type ProductAPIProductGetAttributeOptionsRequest

type ProductAPIProductGetAttributeOptionsRequest struct {
	ApiService *ProductAPIService
	// contains filtered or unexported fields
}

func (ProductAPIProductGetAttributeOptionsRequest) Execute

type ProductAPIProductGetEntityRequest

type ProductAPIProductGetEntityRequest struct {
	ApiService *ProductAPIService
	// contains filtered or unexported fields
}

func (ProductAPIProductGetEntityRequest) Body

func (ProductAPIProductGetEntityRequest) Execute

type ProductAPIProductGetOptionsListRequest

type ProductAPIProductGetOptionsListRequest struct {
	ApiService *ProductAPIService
	// contains filtered or unexported fields
}

func (ProductAPIProductGetOptionsListRequest) Execute

type ProductAPIProductGetProductByCodeRequest

type ProductAPIProductGetProductByCodeRequest struct {
	ApiService *ProductAPIService
	// contains filtered or unexported fields
}

func (ProductAPIProductGetProductByCodeRequest) Execute

type ProductAPIProductGetProductByUrlKeyRequest

type ProductAPIProductGetProductByUrlKeyRequest struct {
	ApiService *ProductAPIService
	// contains filtered or unexported fields
}

func (ProductAPIProductGetProductByUrlKeyRequest) Execute

type ProductAPIProductGetProductRequest

type ProductAPIProductGetProductRequest struct {
	ApiService *ProductAPIService
	// contains filtered or unexported fields
}

func (ProductAPIProductGetProductRequest) Body

func (ProductAPIProductGetProductRequest) Execute

type ProductAPIProductListAttributeGroupsRequest

type ProductAPIProductListAttributeGroupsRequest struct {
	ApiService *ProductAPIService
	// contains filtered or unexported fields
}

func (ProductAPIProductListAttributeGroupsRequest) Execute

type ProductAPIProductListAttributeOptionsRequest

type ProductAPIProductListAttributeOptionsRequest struct {
	ApiService *ProductAPIService
	// contains filtered or unexported fields
}

func (ProductAPIProductListAttributeOptionsRequest) Execute

type ProductAPIProductListEntitiesRequest

type ProductAPIProductListEntitiesRequest struct {
	ApiService *ProductAPIService
	// contains filtered or unexported fields
}

func (ProductAPIProductListEntitiesRequest) Execute

type ProductAPIProductListOptionsListsRequest

type ProductAPIProductListOptionsListsRequest struct {
	ApiService *ProductAPIService
	// contains filtered or unexported fields
}

func (ProductAPIProductListOptionsListsRequest) Execute

type ProductAPIProductListProductsByIdsRequest

type ProductAPIProductListProductsByIdsRequest struct {
	ApiService *ProductAPIService
	// contains filtered or unexported fields
}

func (ProductAPIProductListProductsByIdsRequest) Execute

type ProductAPIProductListProductsBySkuRequest

type ProductAPIProductListProductsBySkuRequest struct {
	ApiService *ProductAPIService
	// contains filtered or unexported fields
}

func (ProductAPIProductListProductsBySkuRequest) Execute

type ProductAPIProductListProductsRequest

type ProductAPIProductListProductsRequest struct {
	ApiService *ProductAPIService
	// contains filtered or unexported fields
}

func (ProductAPIProductListProductsRequest) Body

func (ProductAPIProductListProductsRequest) Execute

type ProductAPIProductListVariantsBySkuRequest

type ProductAPIProductListVariantsBySkuRequest struct {
	ApiService *ProductAPIService
	// contains filtered or unexported fields
}

func (ProductAPIProductListVariantsBySkuRequest) Execute

type ProductAPIProductRemoveMediaGalleryEntryRequest

type ProductAPIProductRemoveMediaGalleryEntryRequest struct {
	ApiService *ProductAPIService
	// contains filtered or unexported fields
}

func (ProductAPIProductRemoveMediaGalleryEntryRequest) Execute

type ProductAPIProductUpdateAttributeGroupRequest

type ProductAPIProductUpdateAttributeGroupRequest struct {
	ApiService *ProductAPIService
	// contains filtered or unexported fields
}

func (ProductAPIProductUpdateAttributeGroupRequest) Execute

type ProductAPIProductUpdateAttributeOptionsRequest

type ProductAPIProductUpdateAttributeOptionsRequest struct {
	ApiService *ProductAPIService
	// contains filtered or unexported fields
}

func (ProductAPIProductUpdateAttributeOptionsRequest) Execute

type ProductAPIProductUpdateAttributeRequest

type ProductAPIProductUpdateAttributeRequest struct {
	ApiService *ProductAPIService
	// contains filtered or unexported fields
}

func (ProductAPIProductUpdateAttributeRequest) Execute

type ProductAPIProductUpdateMediaGalleryEntryRequest

type ProductAPIProductUpdateMediaGalleryEntryRequest struct {
	ApiService *ProductAPIService
	// contains filtered or unexported fields
}

func (ProductAPIProductUpdateMediaGalleryEntryRequest) Execute

type ProductAPIProductUpdateOptionsListRequest

type ProductAPIProductUpdateOptionsListRequest struct {
	ApiService *ProductAPIService
	// contains filtered or unexported fields
}

func (ProductAPIProductUpdateOptionsListRequest) Execute

type ProductAPIProductUpdateProductRequest

type ProductAPIProductUpdateProductRequest struct {
	ApiService *ProductAPIService
	// contains filtered or unexported fields
}

func (ProductAPIProductUpdateProductRequest) Execute

type ProductAPIProductUpdateProductV2Request

type ProductAPIProductUpdateProductV2Request struct {
	ApiService *ProductAPIService
	// contains filtered or unexported fields
}

func (ProductAPIProductUpdateProductV2Request) Execute

func (r ProductAPIProductUpdateProductV2Request) Execute() (map[string]interface{}, *http.Response, error)

type ProductAPIService

type ProductAPIService service

ProductAPIService ProductAPI service

func (*ProductAPIService) ProductAddMediaGalleryEntry

ProductAddMediaGalleryEntry Method for ProductAddMediaGalleryEntry

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

func (*ProductAPIService) ProductAddMediaGalleryEntryExecute

Execute executes the request

@return ProductAddMediaGalleryEntryResponse

func (*ProductAPIService) ProductBulkAddAssetsEntries

ProductBulkAddAssetsEntries Assets endpoints

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

func (*ProductAPIService) ProductBulkAddAssetsEntriesExecute

Execute executes the request

@return ProductBulkAddAssetsEntriesResponse

func (*ProductAPIService) ProductBulkCreateAttribute

ProductBulkCreateAttribute Method for ProductBulkCreateAttribute

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

func (*ProductAPIService) ProductBulkCreateAttributeExecute

Execute executes the request

@return EntitymanagerBulkCreateAttributeResponse

func (*ProductAPIService) ProductBulkDeleteProducts

ProductBulkDeleteProducts Method for ProductBulkDeleteProducts

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

func (*ProductAPIService) ProductBulkDeleteProductsExecute

func (a *ProductAPIService) ProductBulkDeleteProductsExecute(r ProductAPIProductBulkDeleteProductsRequest) (map[string]interface{}, *http.Response, error)

Execute executes the request

@return map[string]interface{}

func (*ProductAPIService) ProductBulkRemoveAssetsEntries

ProductBulkRemoveAssetsEntries Method for ProductBulkRemoveAssetsEntries

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

func (*ProductAPIService) ProductBulkRemoveAssetsEntriesExecute

func (a *ProductAPIService) ProductBulkRemoveAssetsEntriesExecute(r ProductAPIProductBulkRemoveAssetsEntriesRequest) (map[string]interface{}, *http.Response, error)

Execute executes the request

@return map[string]interface{}

func (*ProductAPIService) ProductBulkUpdate

ProductBulkUpdate Method for ProductBulkUpdate

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

Deprecated

func (*ProductAPIService) ProductBulkUpdateAssetsEntries

ProductBulkUpdateAssetsEntries Method for ProductBulkUpdateAssetsEntries

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

func (*ProductAPIService) ProductBulkUpdateAssetsEntriesExecute

Execute executes the request

@return ProductBulkUpdateAssetsEntriesResponse

func (*ProductAPIService) ProductBulkUpdateExecute

Execute executes the request

@return ProductBulkUpdateResponse

Deprecated

func (*ProductAPIService) ProductBulkUpdateV2

ProductBulkUpdateV2 Method for ProductBulkUpdateV2

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

func (*ProductAPIService) ProductBulkUpdateV2Execute

Execute executes the request

@return ProductBulkUpdateResponseV2

func (*ProductAPIService) ProductCreateAttributeGroup

ProductCreateAttributeGroup Method for ProductCreateAttributeGroup

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

func (*ProductAPIService) ProductCreateAttributeGroupExecute

Execute executes the request

@return EntitymanagerAttributeGroup

func (*ProductAPIService) ProductCreateAttributeOptions

ProductCreateAttributeOptions Method for ProductCreateAttributeOptions

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

func (*ProductAPIService) ProductCreateAttributeOptionsExecute

Execute executes the request

@return EntitymanagerCreateAttributeOptionsResponse

func (*ProductAPIService) ProductCreateEntity

ProductCreateEntity Method for ProductCreateEntity

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

func (*ProductAPIService) ProductCreateEntityExecute

Execute executes the request

@return EntitymanagerCreateEntityResponse

func (*ProductAPIService) ProductCreateOptionsList

ProductCreateOptionsList Method for ProductCreateOptionsList

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

func (*ProductAPIService) ProductCreateOptionsListExecute

Execute executes the request

@return EntitymanagerCreateOptionsListResponse

func (*ProductAPIService) ProductCreateProduct

ProductCreateProduct Method for ProductCreateProduct

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

Deprecated

func (*ProductAPIService) ProductCreateProductExecute

Execute executes the request

@return ProductCreateProductResponse

Deprecated

func (*ProductAPIService) ProductCreateProductV2

ProductCreateProductV2 Method for ProductCreateProductV2

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

func (*ProductAPIService) ProductCreateProductV2Execute

Execute executes the request

@return ProductCreateProductResponseV2

func (*ProductAPIService) ProductDelete

ProductDelete Method for ProductDelete

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

Deprecated

func (*ProductAPIService) ProductDeleteAttribute

ProductDeleteAttribute Method for ProductDeleteAttribute

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

func (*ProductAPIService) ProductDeleteAttributeExecute

func (a *ProductAPIService) ProductDeleteAttributeExecute(r ProductAPIProductDeleteAttributeRequest) (map[string]interface{}, *http.Response, error)

Execute executes the request

@return map[string]interface{}

func (*ProductAPIService) ProductDeleteExecute

Execute executes the request

@return ProductDeleteResponse

Deprecated

func (*ProductAPIService) ProductDeleteProduct

ProductDeleteProduct Method for ProductDeleteProduct

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

func (*ProductAPIService) ProductDeleteProductExecute

func (a *ProductAPIService) ProductDeleteProductExecute(r ProductAPIProductDeleteProductRequest) (map[string]interface{}, *http.Response, error)

Execute executes the request

@return map[string]interface{}

func (*ProductAPIService) ProductGetAttributeGroup

ProductGetAttributeGroup Method for ProductGetAttributeGroup

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

func (*ProductAPIService) ProductGetAttributeGroupExecute

Execute executes the request

@return EntitymanagerAttributeGroup

func (*ProductAPIService) ProductGetAttributeOption

ProductGetAttributeOption Method for ProductGetAttributeOption

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

func (*ProductAPIService) ProductGetAttributeOptionExecute

Execute executes the request

@return EntitymanagerGetAttributeOptionResponse

func (*ProductAPIService) ProductGetAttributeOptions

ProductGetAttributeOptions Method for ProductGetAttributeOptions

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

func (*ProductAPIService) ProductGetAttributeOptionsExecute

Execute executes the request

@return EntitymanagerGetAttributeOptionsResponse

func (*ProductAPIService) ProductGetEntity

ProductGetEntity Method for ProductGetEntity

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

func (*ProductAPIService) ProductGetEntityExecute

Execute executes the request

@return EntitymanagerEntity

func (*ProductAPIService) ProductGetOptionsList

ProductGetOptionsList Method for ProductGetOptionsList

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

func (*ProductAPIService) ProductGetOptionsListExecute

Execute executes the request

@return EntitymanagerGetOptionsListResponse

func (*ProductAPIService) ProductGetProduct

ProductGetProduct Method for ProductGetProduct

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

func (*ProductAPIService) ProductGetProductByCode

ProductGetProductByCode Method for ProductGetProductByCode

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

func (*ProductAPIService) ProductGetProductByCodeExecute

Execute executes the request

@return ProductGetProductByCodeResponse

func (*ProductAPIService) ProductGetProductByUrlKey

ProductGetProductByUrlKey Method for ProductGetProductByUrlKey

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

func (*ProductAPIService) ProductGetProductByUrlKeyExecute

Execute executes the request

@return ProductGetProductByUrlKeyResponse

func (*ProductAPIService) ProductGetProductExecute

Execute executes the request

@return ProductGetProductResponse

func (*ProductAPIService) ProductListAttributeGroups

ProductListAttributeGroups Attribute Groups endpoints

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

func (*ProductAPIService) ProductListAttributeGroupsExecute

Execute executes the request

@return EntitymanagerListAttributeGroupsResponse

func (*ProductAPIService) ProductListAttributeOptions

ProductListAttributeOptions Method for ProductListAttributeOptions

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

func (*ProductAPIService) ProductListAttributeOptionsExecute

Execute executes the request

@return EntitymanagerListAttributeOptionsResponse

func (*ProductAPIService) ProductListEntities

ProductListEntities Method for ProductListEntities

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

func (*ProductAPIService) ProductListEntitiesExecute

Execute executes the request

@return EntitymanagerListEntitiesResponse

func (*ProductAPIService) ProductListOptionsLists

ProductListOptionsLists Method for ProductListOptionsLists

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

func (*ProductAPIService) ProductListOptionsListsExecute

Execute executes the request

@return EntitymanagerListOptionsListsResponse

func (*ProductAPIService) ProductListProducts

ProductListProducts Method for ProductListProducts

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

func (*ProductAPIService) ProductListProductsByIds

ProductListProductsByIds Method for ProductListProductsByIds

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

func (*ProductAPIService) ProductListProductsByIdsExecute

Execute executes the request

@return ProductListProductsByIdsResponse

func (*ProductAPIService) ProductListProductsBySku

ProductListProductsBySku Method for ProductListProductsBySku

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

func (*ProductAPIService) ProductListProductsBySkuExecute

Execute executes the request

@return ProductListProductsBySkuResponse

func (*ProductAPIService) ProductListProductsExecute

Execute executes the request

@return ProductListProductsResponse

func (*ProductAPIService) ProductListVariantsBySku

ProductListVariantsBySku Method for ProductListVariantsBySku

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

func (*ProductAPIService) ProductListVariantsBySkuExecute

Execute executes the request

@return ProductListVariantsBySkuResponse

func (*ProductAPIService) ProductRemoveMediaGalleryEntry

ProductRemoveMediaGalleryEntry Method for ProductRemoveMediaGalleryEntry

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

func (*ProductAPIService) ProductRemoveMediaGalleryEntryExecute

func (a *ProductAPIService) ProductRemoveMediaGalleryEntryExecute(r ProductAPIProductRemoveMediaGalleryEntryRequest) (map[string]interface{}, *http.Response, error)

Execute executes the request

@return map[string]interface{}

func (*ProductAPIService) ProductUpdateAttribute

ProductUpdateAttribute Method for ProductUpdateAttribute

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

func (*ProductAPIService) ProductUpdateAttributeExecute

Execute executes the request

@return EntitymanagerAttribute

func (*ProductAPIService) ProductUpdateAttributeGroup

ProductUpdateAttributeGroup Method for ProductUpdateAttributeGroup

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

func (*ProductAPIService) ProductUpdateAttributeGroupExecute

Execute executes the request

@return EntitymanagerAttributeGroup

func (*ProductAPIService) ProductUpdateAttributeOptions

ProductUpdateAttributeOptions rpc GetAttributeOptionByCode (product.entitymanager.GetAttributeOptionByCodeRequest) returns (product.entitymanager.GetAttributeOptionByCodeResponse) {}

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

func (*ProductAPIService) ProductUpdateAttributeOptionsExecute

Execute executes the request

@return EntitymanagerUpdateAttributeOptionsResponse

func (*ProductAPIService) ProductUpdateMediaGalleryEntry

ProductUpdateMediaGalleryEntry Method for ProductUpdateMediaGalleryEntry

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

func (*ProductAPIService) ProductUpdateMediaGalleryEntryExecute

func (a *ProductAPIService) ProductUpdateMediaGalleryEntryExecute(r ProductAPIProductUpdateMediaGalleryEntryRequest) (map[string]interface{}, *http.Response, error)

Execute executes the request

@return map[string]interface{}

func (*ProductAPIService) ProductUpdateOptionsList

ProductUpdateOptionsList Method for ProductUpdateOptionsList

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

func (*ProductAPIService) ProductUpdateOptionsListExecute

Execute executes the request

@return EntitymanagerUpdateOptionsListResponse

func (*ProductAPIService) ProductUpdateProduct

ProductUpdateProduct Method for ProductUpdateProduct

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

Deprecated

func (*ProductAPIService) ProductUpdateProductExecute

Execute executes the request

@return ProductUpdateProductResponse

Deprecated

func (*ProductAPIService) ProductUpdateProductV2

ProductUpdateProductV2 Method for ProductUpdateProductV2

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

func (*ProductAPIService) ProductUpdateProductV2Execute

func (a *ProductAPIService) ProductUpdateProductV2Execute(r ProductAPIProductUpdateProductV2Request) (map[string]interface{}, *http.Response, error)

Execute executes the request

@return map[string]interface{}

type ProductAddMediaGalleryEntryRequest

type ProductAddMediaGalleryEntryRequest struct {
	TenantId  *string                            `json:"tenantId,omitempty"`
	ProductId *string                            `json:"productId,omitempty"`
	AssetGrn  *string                            `json:"assetGrn,omitempty"`
	Position  *int64                             `json:"position,omitempty"`
	Metadata  []ProductMediaGalleryEntryMetadata `json:"metadata,omitempty"`
}

ProductAddMediaGalleryEntryRequest struct for ProductAddMediaGalleryEntryRequest

func NewProductAddMediaGalleryEntryRequest

func NewProductAddMediaGalleryEntryRequest() *ProductAddMediaGalleryEntryRequest

NewProductAddMediaGalleryEntryRequest instantiates a new ProductAddMediaGalleryEntryRequest 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 NewProductAddMediaGalleryEntryRequestWithDefaults

func NewProductAddMediaGalleryEntryRequestWithDefaults() *ProductAddMediaGalleryEntryRequest

NewProductAddMediaGalleryEntryRequestWithDefaults instantiates a new ProductAddMediaGalleryEntryRequest 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 (*ProductAddMediaGalleryEntryRequest) GetAssetGrn

func (o *ProductAddMediaGalleryEntryRequest) GetAssetGrn() string

GetAssetGrn returns the AssetGrn field value if set, zero value otherwise.

func (*ProductAddMediaGalleryEntryRequest) GetAssetGrnOk

func (o *ProductAddMediaGalleryEntryRequest) GetAssetGrnOk() (*string, bool)

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

func (*ProductAddMediaGalleryEntryRequest) GetMetadata

GetMetadata returns the Metadata field value if set, zero value otherwise.

func (*ProductAddMediaGalleryEntryRequest) GetMetadataOk

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

func (*ProductAddMediaGalleryEntryRequest) GetPosition

func (o *ProductAddMediaGalleryEntryRequest) GetPosition() int64

GetPosition returns the Position field value if set, zero value otherwise.

func (*ProductAddMediaGalleryEntryRequest) GetPositionOk

func (o *ProductAddMediaGalleryEntryRequest) GetPositionOk() (*int64, bool)

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

func (*ProductAddMediaGalleryEntryRequest) GetProductId

func (o *ProductAddMediaGalleryEntryRequest) GetProductId() string

GetProductId returns the ProductId field value if set, zero value otherwise.

func (*ProductAddMediaGalleryEntryRequest) GetProductIdOk

func (o *ProductAddMediaGalleryEntryRequest) GetProductIdOk() (*string, bool)

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

func (*ProductAddMediaGalleryEntryRequest) GetTenantId

func (o *ProductAddMediaGalleryEntryRequest) GetTenantId() string

GetTenantId returns the TenantId field value if set, zero value otherwise.

func (*ProductAddMediaGalleryEntryRequest) GetTenantIdOk

func (o *ProductAddMediaGalleryEntryRequest) GetTenantIdOk() (*string, bool)

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

func (*ProductAddMediaGalleryEntryRequest) HasAssetGrn

func (o *ProductAddMediaGalleryEntryRequest) HasAssetGrn() bool

HasAssetGrn returns a boolean if a field has been set.

func (*ProductAddMediaGalleryEntryRequest) HasMetadata

func (o *ProductAddMediaGalleryEntryRequest) HasMetadata() bool

HasMetadata returns a boolean if a field has been set.

func (*ProductAddMediaGalleryEntryRequest) HasPosition

func (o *ProductAddMediaGalleryEntryRequest) HasPosition() bool

HasPosition returns a boolean if a field has been set.

func (*ProductAddMediaGalleryEntryRequest) HasProductId

func (o *ProductAddMediaGalleryEntryRequest) HasProductId() bool

HasProductId returns a boolean if a field has been set.

func (*ProductAddMediaGalleryEntryRequest) HasTenantId

func (o *ProductAddMediaGalleryEntryRequest) HasTenantId() bool

HasTenantId returns a boolean if a field has been set.

func (ProductAddMediaGalleryEntryRequest) MarshalJSON

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

func (*ProductAddMediaGalleryEntryRequest) SetAssetGrn

func (o *ProductAddMediaGalleryEntryRequest) SetAssetGrn(v string)

SetAssetGrn gets a reference to the given string and assigns it to the AssetGrn field.

func (*ProductAddMediaGalleryEntryRequest) SetMetadata

SetMetadata gets a reference to the given []ProductMediaGalleryEntryMetadata and assigns it to the Metadata field.

func (*ProductAddMediaGalleryEntryRequest) SetPosition

func (o *ProductAddMediaGalleryEntryRequest) SetPosition(v int64)

SetPosition gets a reference to the given int64 and assigns it to the Position field.

func (*ProductAddMediaGalleryEntryRequest) SetProductId

func (o *ProductAddMediaGalleryEntryRequest) SetProductId(v string)

SetProductId gets a reference to the given string and assigns it to the ProductId field.

func (*ProductAddMediaGalleryEntryRequest) SetTenantId

func (o *ProductAddMediaGalleryEntryRequest) SetTenantId(v string)

SetTenantId gets a reference to the given string and assigns it to the TenantId field.

func (ProductAddMediaGalleryEntryRequest) ToMap

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

type ProductAddMediaGalleryEntryResponse

type ProductAddMediaGalleryEntryResponse struct {
	MediaGalleryEntry *ProductMediaGalleryEntry `json:"mediaGalleryEntry,omitempty"`
}

ProductAddMediaGalleryEntryResponse struct for ProductAddMediaGalleryEntryResponse

func NewProductAddMediaGalleryEntryResponse

func NewProductAddMediaGalleryEntryResponse() *ProductAddMediaGalleryEntryResponse

NewProductAddMediaGalleryEntryResponse instantiates a new ProductAddMediaGalleryEntryResponse 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 NewProductAddMediaGalleryEntryResponseWithDefaults

func NewProductAddMediaGalleryEntryResponseWithDefaults() *ProductAddMediaGalleryEntryResponse

NewProductAddMediaGalleryEntryResponseWithDefaults instantiates a new ProductAddMediaGalleryEntryResponse 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 (*ProductAddMediaGalleryEntryResponse) GetMediaGalleryEntry

GetMediaGalleryEntry returns the MediaGalleryEntry field value if set, zero value otherwise.

func (*ProductAddMediaGalleryEntryResponse) GetMediaGalleryEntryOk

func (o *ProductAddMediaGalleryEntryResponse) GetMediaGalleryEntryOk() (*ProductMediaGalleryEntry, bool)

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

func (*ProductAddMediaGalleryEntryResponse) HasMediaGalleryEntry

func (o *ProductAddMediaGalleryEntryResponse) HasMediaGalleryEntry() bool

HasMediaGalleryEntry returns a boolean if a field has been set.

func (ProductAddMediaGalleryEntryResponse) MarshalJSON

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

func (*ProductAddMediaGalleryEntryResponse) SetMediaGalleryEntry

SetMediaGalleryEntry gets a reference to the given ProductMediaGalleryEntry and assigns it to the MediaGalleryEntry field.

func (ProductAddMediaGalleryEntryResponse) ToMap

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

type ProductAssetData

type ProductAssetData struct {
	AssetGrn          *string                      `json:"assetGrn,omitempty"`
	LocalizedAssetGrn *ProductLocalizedAsset       `json:"localizedAssetGrn,omitempty"`
	Position          *int64                       `json:"position,omitempty"`
	Metadata          []ProductAssetsEntryMetadata `json:"metadata,omitempty"`
}

ProductAssetData struct for ProductAssetData

func NewProductAssetData

func NewProductAssetData() *ProductAssetData

NewProductAssetData instantiates a new ProductAssetData 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 NewProductAssetDataWithDefaults

func NewProductAssetDataWithDefaults() *ProductAssetData

NewProductAssetDataWithDefaults instantiates a new ProductAssetData 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 (*ProductAssetData) GetAssetGrn

func (o *ProductAssetData) GetAssetGrn() string

GetAssetGrn returns the AssetGrn field value if set, zero value otherwise.

func (*ProductAssetData) GetAssetGrnOk

func (o *ProductAssetData) GetAssetGrnOk() (*string, bool)

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

func (*ProductAssetData) GetLocalizedAssetGrn

func (o *ProductAssetData) GetLocalizedAssetGrn() ProductLocalizedAsset

GetLocalizedAssetGrn returns the LocalizedAssetGrn field value if set, zero value otherwise.

func (*ProductAssetData) GetLocalizedAssetGrnOk

func (o *ProductAssetData) GetLocalizedAssetGrnOk() (*ProductLocalizedAsset, bool)

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

func (*ProductAssetData) GetMetadata

func (o *ProductAssetData) GetMetadata() []ProductAssetsEntryMetadata

GetMetadata returns the Metadata field value if set, zero value otherwise.

func (*ProductAssetData) GetMetadataOk

func (o *ProductAssetData) GetMetadataOk() ([]ProductAssetsEntryMetadata, bool)

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

func (*ProductAssetData) GetPosition

func (o *ProductAssetData) GetPosition() int64

GetPosition returns the Position field value if set, zero value otherwise.

func (*ProductAssetData) GetPositionOk

func (o *ProductAssetData) GetPositionOk() (*int64, bool)

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

func (*ProductAssetData) HasAssetGrn

func (o *ProductAssetData) HasAssetGrn() bool

HasAssetGrn returns a boolean if a field has been set.

func (*ProductAssetData) HasLocalizedAssetGrn

func (o *ProductAssetData) HasLocalizedAssetGrn() bool

HasLocalizedAssetGrn returns a boolean if a field has been set.

func (*ProductAssetData) HasMetadata

func (o *ProductAssetData) HasMetadata() bool

HasMetadata returns a boolean if a field has been set.

func (*ProductAssetData) HasPosition

func (o *ProductAssetData) HasPosition() bool

HasPosition returns a boolean if a field has been set.

func (ProductAssetData) MarshalJSON

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

func (*ProductAssetData) SetAssetGrn

func (o *ProductAssetData) SetAssetGrn(v string)

SetAssetGrn gets a reference to the given string and assigns it to the AssetGrn field.

func (*ProductAssetData) SetLocalizedAssetGrn

func (o *ProductAssetData) SetLocalizedAssetGrn(v ProductLocalizedAsset)

SetLocalizedAssetGrn gets a reference to the given ProductLocalizedAsset and assigns it to the LocalizedAssetGrn field.

func (*ProductAssetData) SetMetadata

func (o *ProductAssetData) SetMetadata(v []ProductAssetsEntryMetadata)

SetMetadata gets a reference to the given []ProductAssetsEntryMetadata and assigns it to the Metadata field.

func (*ProductAssetData) SetPosition

func (o *ProductAssetData) SetPosition(v int64)

SetPosition gets a reference to the given int64 and assigns it to the Position field.

func (ProductAssetData) ToMap

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

type ProductAssets

type ProductAssets struct {
	Entries []ProductAssetsEntry `json:"entries,omitempty"`
}

ProductAssets struct for ProductAssets

func NewProductAssets

func NewProductAssets() *ProductAssets

NewProductAssets instantiates a new ProductAssets 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 NewProductAssetsWithDefaults

func NewProductAssetsWithDefaults() *ProductAssets

NewProductAssetsWithDefaults instantiates a new ProductAssets 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 (*ProductAssets) GetEntries

func (o *ProductAssets) GetEntries() []ProductAssetsEntry

GetEntries returns the Entries field value if set, zero value otherwise.

func (*ProductAssets) GetEntriesOk

func (o *ProductAssets) GetEntriesOk() ([]ProductAssetsEntry, bool)

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

func (*ProductAssets) HasEntries

func (o *ProductAssets) HasEntries() bool

HasEntries returns a boolean if a field has been set.

func (ProductAssets) MarshalJSON

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

func (*ProductAssets) SetEntries

func (o *ProductAssets) SetEntries(v []ProductAssetsEntry)

SetEntries gets a reference to the given []ProductAssetsEntry and assigns it to the Entries field.

func (ProductAssets) ToMap

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

type ProductAssetsEntry

type ProductAssetsEntry struct {
	Id                *string                      `json:"id,omitempty"`
	AssetGrn          *string                      `json:"assetGrn,omitempty"`
	LocalizedAssetGrn *ProductLocalizedAsset       `json:"localizedAssetGrn,omitempty"`
	Locales           []string                     `json:"locales,omitempty"`
	Position          *int64                       `json:"position,omitempty"`
	Metadata          []ProductAssetsEntryMetadata `json:"metadata,omitempty"`
}

ProductAssetsEntry struct for ProductAssetsEntry

func NewProductAssetsEntry

func NewProductAssetsEntry() *ProductAssetsEntry

NewProductAssetsEntry instantiates a new ProductAssetsEntry 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 NewProductAssetsEntryWithDefaults

func NewProductAssetsEntryWithDefaults() *ProductAssetsEntry

NewProductAssetsEntryWithDefaults instantiates a new ProductAssetsEntry 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 (*ProductAssetsEntry) GetAssetGrn

func (o *ProductAssetsEntry) GetAssetGrn() string

GetAssetGrn returns the AssetGrn field value if set, zero value otherwise.

func (*ProductAssetsEntry) GetAssetGrnOk

func (o *ProductAssetsEntry) GetAssetGrnOk() (*string, bool)

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

func (*ProductAssetsEntry) GetId

func (o *ProductAssetsEntry) GetId() string

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

func (*ProductAssetsEntry) GetIdOk

func (o *ProductAssetsEntry) GetIdOk() (*string, 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 (*ProductAssetsEntry) GetLocales

func (o *ProductAssetsEntry) GetLocales() []string

GetLocales returns the Locales field value if set, zero value otherwise.

func (*ProductAssetsEntry) GetLocalesOk

func (o *ProductAssetsEntry) GetLocalesOk() ([]string, bool)

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

func (*ProductAssetsEntry) GetLocalizedAssetGrn

func (o *ProductAssetsEntry) GetLocalizedAssetGrn() ProductLocalizedAsset

GetLocalizedAssetGrn returns the LocalizedAssetGrn field value if set, zero value otherwise.

func (*ProductAssetsEntry) GetLocalizedAssetGrnOk

func (o *ProductAssetsEntry) GetLocalizedAssetGrnOk() (*ProductLocalizedAsset, bool)

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

func (*ProductAssetsEntry) GetMetadata

GetMetadata returns the Metadata field value if set, zero value otherwise.

func (*ProductAssetsEntry) GetMetadataOk

func (o *ProductAssetsEntry) GetMetadataOk() ([]ProductAssetsEntryMetadata, bool)

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

func (*ProductAssetsEntry) GetPosition

func (o *ProductAssetsEntry) GetPosition() int64

GetPosition returns the Position field value if set, zero value otherwise.

func (*ProductAssetsEntry) GetPositionOk

func (o *ProductAssetsEntry) GetPositionOk() (*int64, bool)

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

func (*ProductAssetsEntry) HasAssetGrn

func (o *ProductAssetsEntry) HasAssetGrn() bool

HasAssetGrn returns a boolean if a field has been set.

func (*ProductAssetsEntry) HasId

func (o *ProductAssetsEntry) HasId() bool

HasId returns a boolean if a field has been set.

func (*ProductAssetsEntry) HasLocales

func (o *ProductAssetsEntry) HasLocales() bool

HasLocales returns a boolean if a field has been set.

func (*ProductAssetsEntry) HasLocalizedAssetGrn

func (o *ProductAssetsEntry) HasLocalizedAssetGrn() bool

HasLocalizedAssetGrn returns a boolean if a field has been set.

func (*ProductAssetsEntry) HasMetadata

func (o *ProductAssetsEntry) HasMetadata() bool

HasMetadata returns a boolean if a field has been set.

func (*ProductAssetsEntry) HasPosition

func (o *ProductAssetsEntry) HasPosition() bool

HasPosition returns a boolean if a field has been set.

func (ProductAssetsEntry) MarshalJSON

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

func (*ProductAssetsEntry) SetAssetGrn

func (o *ProductAssetsEntry) SetAssetGrn(v string)

SetAssetGrn gets a reference to the given string and assigns it to the AssetGrn field.

func (*ProductAssetsEntry) SetId

func (o *ProductAssetsEntry) SetId(v string)

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

func (*ProductAssetsEntry) SetLocales

func (o *ProductAssetsEntry) SetLocales(v []string)

SetLocales gets a reference to the given []string and assigns it to the Locales field.

func (*ProductAssetsEntry) SetLocalizedAssetGrn

func (o *ProductAssetsEntry) SetLocalizedAssetGrn(v ProductLocalizedAsset)

SetLocalizedAssetGrn gets a reference to the given ProductLocalizedAsset and assigns it to the LocalizedAssetGrn field.

func (*ProductAssetsEntry) SetMetadata

func (o *ProductAssetsEntry) SetMetadata(v []ProductAssetsEntryMetadata)

SetMetadata gets a reference to the given []ProductAssetsEntryMetadata and assigns it to the Metadata field.

func (*ProductAssetsEntry) SetPosition

func (o *ProductAssetsEntry) SetPosition(v int64)

SetPosition gets a reference to the given int64 and assigns it to the Position field.

func (ProductAssetsEntry) ToMap

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

type ProductAssetsEntryMetadata

type ProductAssetsEntryMetadata struct {
	Roles []string              `json:"roles,omitempty"`
	Alt   *ProductLocalizedText `json:"alt,omitempty"`
}

ProductAssetsEntryMetadata struct for ProductAssetsEntryMetadata

func NewProductAssetsEntryMetadata

func NewProductAssetsEntryMetadata() *ProductAssetsEntryMetadata

NewProductAssetsEntryMetadata instantiates a new ProductAssetsEntryMetadata 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 NewProductAssetsEntryMetadataWithDefaults

func NewProductAssetsEntryMetadataWithDefaults() *ProductAssetsEntryMetadata

NewProductAssetsEntryMetadataWithDefaults instantiates a new ProductAssetsEntryMetadata 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 (*ProductAssetsEntryMetadata) GetAlt

GetAlt returns the Alt field value if set, zero value otherwise.

func (*ProductAssetsEntryMetadata) GetAltOk

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

func (*ProductAssetsEntryMetadata) GetRoles

func (o *ProductAssetsEntryMetadata) GetRoles() []string

GetRoles returns the Roles field value if set, zero value otherwise.

func (*ProductAssetsEntryMetadata) GetRolesOk

func (o *ProductAssetsEntryMetadata) GetRolesOk() ([]string, bool)

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

func (*ProductAssetsEntryMetadata) HasAlt

func (o *ProductAssetsEntryMetadata) HasAlt() bool

HasAlt returns a boolean if a field has been set.

func (*ProductAssetsEntryMetadata) HasRoles

func (o *ProductAssetsEntryMetadata) HasRoles() bool

HasRoles returns a boolean if a field has been set.

func (ProductAssetsEntryMetadata) MarshalJSON

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

func (*ProductAssetsEntryMetadata) SetAlt

SetAlt gets a reference to the given ProductLocalizedText and assigns it to the Alt field.

func (*ProductAssetsEntryMetadata) SetRoles

func (o *ProductAssetsEntryMetadata) SetRoles(v []string)

SetRoles gets a reference to the given []string and assigns it to the Roles field.

func (ProductAssetsEntryMetadata) ToMap

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

type ProductAttributeResponseError

type ProductAttributeResponseError struct {
	Code          *string `json:"code,omitempty"`
	Message       *string `json:"message,omitempty"`
	AttributeCode *string `json:"attributeCode,omitempty"`
}

ProductAttributeResponseError struct for ProductAttributeResponseError

func NewProductAttributeResponseError

func NewProductAttributeResponseError() *ProductAttributeResponseError

NewProductAttributeResponseError instantiates a new ProductAttributeResponseError 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 NewProductAttributeResponseErrorWithDefaults

func NewProductAttributeResponseErrorWithDefaults() *ProductAttributeResponseError

NewProductAttributeResponseErrorWithDefaults instantiates a new ProductAttributeResponseError 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 (*ProductAttributeResponseError) GetAttributeCode

func (o *ProductAttributeResponseError) GetAttributeCode() string

GetAttributeCode returns the AttributeCode field value if set, zero value otherwise.

func (*ProductAttributeResponseError) GetAttributeCodeOk

func (o *ProductAttributeResponseError) GetAttributeCodeOk() (*string, bool)

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

func (*ProductAttributeResponseError) GetCode

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

func (*ProductAttributeResponseError) GetCodeOk

func (o *ProductAttributeResponseError) 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 (*ProductAttributeResponseError) GetMessage

func (o *ProductAttributeResponseError) GetMessage() string

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

func (*ProductAttributeResponseError) GetMessageOk

func (o *ProductAttributeResponseError) 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 (*ProductAttributeResponseError) HasAttributeCode

func (o *ProductAttributeResponseError) HasAttributeCode() bool

HasAttributeCode returns a boolean if a field has been set.

func (*ProductAttributeResponseError) HasCode

func (o *ProductAttributeResponseError) HasCode() bool

HasCode returns a boolean if a field has been set.

func (*ProductAttributeResponseError) HasMessage

func (o *ProductAttributeResponseError) HasMessage() bool

HasMessage returns a boolean if a field has been set.

func (ProductAttributeResponseError) MarshalJSON

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

func (*ProductAttributeResponseError) SetAttributeCode

func (o *ProductAttributeResponseError) SetAttributeCode(v string)

SetAttributeCode gets a reference to the given string and assigns it to the AttributeCode field.

func (*ProductAttributeResponseError) SetCode

func (o *ProductAttributeResponseError) SetCode(v string)

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

func (*ProductAttributeResponseError) SetMessage

func (o *ProductAttributeResponseError) SetMessage(v string)

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

func (ProductAttributeResponseError) ToMap

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

type ProductBulkAddAssetsEntriesRequest

type ProductBulkAddAssetsEntriesRequest struct {
	TenantId  *string            `json:"tenantId,omitempty"`
	ProductId *string            `json:"productId,omitempty"`
	Assets    []ProductAssetData `json:"assets,omitempty"`
}

ProductBulkAddAssetsEntriesRequest struct for ProductBulkAddAssetsEntriesRequest

func NewProductBulkAddAssetsEntriesRequest

func NewProductBulkAddAssetsEntriesRequest() *ProductBulkAddAssetsEntriesRequest

NewProductBulkAddAssetsEntriesRequest instantiates a new ProductBulkAddAssetsEntriesRequest 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 NewProductBulkAddAssetsEntriesRequestWithDefaults

func NewProductBulkAddAssetsEntriesRequestWithDefaults() *ProductBulkAddAssetsEntriesRequest

NewProductBulkAddAssetsEntriesRequestWithDefaults instantiates a new ProductBulkAddAssetsEntriesRequest 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 (*ProductBulkAddAssetsEntriesRequest) GetAssets

GetAssets returns the Assets field value if set, zero value otherwise.

func (*ProductBulkAddAssetsEntriesRequest) GetAssetsOk

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

func (*ProductBulkAddAssetsEntriesRequest) GetProductId

func (o *ProductBulkAddAssetsEntriesRequest) GetProductId() string

GetProductId returns the ProductId field value if set, zero value otherwise.

func (*ProductBulkAddAssetsEntriesRequest) GetProductIdOk

func (o *ProductBulkAddAssetsEntriesRequest) GetProductIdOk() (*string, bool)

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

func (*ProductBulkAddAssetsEntriesRequest) GetTenantId

func (o *ProductBulkAddAssetsEntriesRequest) GetTenantId() string

GetTenantId returns the TenantId field value if set, zero value otherwise.

func (*ProductBulkAddAssetsEntriesRequest) GetTenantIdOk

func (o *ProductBulkAddAssetsEntriesRequest) GetTenantIdOk() (*string, bool)

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

func (*ProductBulkAddAssetsEntriesRequest) HasAssets

HasAssets returns a boolean if a field has been set.

func (*ProductBulkAddAssetsEntriesRequest) HasProductId

func (o *ProductBulkAddAssetsEntriesRequest) HasProductId() bool

HasProductId returns a boolean if a field has been set.

func (*ProductBulkAddAssetsEntriesRequest) HasTenantId

func (o *ProductBulkAddAssetsEntriesRequest) HasTenantId() bool

HasTenantId returns a boolean if a field has been set.

func (ProductBulkAddAssetsEntriesRequest) MarshalJSON

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

func (*ProductBulkAddAssetsEntriesRequest) SetAssets

SetAssets gets a reference to the given []ProductAssetData and assigns it to the Assets field.

func (*ProductBulkAddAssetsEntriesRequest) SetProductId

func (o *ProductBulkAddAssetsEntriesRequest) SetProductId(v string)

SetProductId gets a reference to the given string and assigns it to the ProductId field.

func (*ProductBulkAddAssetsEntriesRequest) SetTenantId

func (o *ProductBulkAddAssetsEntriesRequest) SetTenantId(v string)

SetTenantId gets a reference to the given string and assigns it to the TenantId field.

func (ProductBulkAddAssetsEntriesRequest) ToMap

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

type ProductBulkAddAssetsEntriesResponse

type ProductBulkAddAssetsEntriesResponse struct {
	Assets []ProductAssetsEntry `json:"assets,omitempty"`
}

ProductBulkAddAssetsEntriesResponse struct for ProductBulkAddAssetsEntriesResponse

func NewProductBulkAddAssetsEntriesResponse

func NewProductBulkAddAssetsEntriesResponse() *ProductBulkAddAssetsEntriesResponse

NewProductBulkAddAssetsEntriesResponse instantiates a new ProductBulkAddAssetsEntriesResponse 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 NewProductBulkAddAssetsEntriesResponseWithDefaults

func NewProductBulkAddAssetsEntriesResponseWithDefaults() *ProductBulkAddAssetsEntriesResponse

NewProductBulkAddAssetsEntriesResponseWithDefaults instantiates a new ProductBulkAddAssetsEntriesResponse 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 (*ProductBulkAddAssetsEntriesResponse) GetAssets

GetAssets returns the Assets field value if set, zero value otherwise.

func (*ProductBulkAddAssetsEntriesResponse) GetAssetsOk

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

func (*ProductBulkAddAssetsEntriesResponse) HasAssets

HasAssets returns a boolean if a field has been set.

func (ProductBulkAddAssetsEntriesResponse) MarshalJSON

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

func (*ProductBulkAddAssetsEntriesResponse) SetAssets

SetAssets gets a reference to the given []ProductAssetsEntry and assigns it to the Assets field.

func (ProductBulkAddAssetsEntriesResponse) ToMap

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

type ProductBulkDeleteProductsRequest

type ProductBulkDeleteProductsRequest struct {
	TenantId *string  `json:"tenantId,omitempty"`
	Ids      []string `json:"ids,omitempty"`
}

ProductBulkDeleteProductsRequest struct for ProductBulkDeleteProductsRequest

func NewProductBulkDeleteProductsRequest

func NewProductBulkDeleteProductsRequest() *ProductBulkDeleteProductsRequest

NewProductBulkDeleteProductsRequest instantiates a new ProductBulkDeleteProductsRequest 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 NewProductBulkDeleteProductsRequestWithDefaults

func NewProductBulkDeleteProductsRequestWithDefaults() *ProductBulkDeleteProductsRequest

NewProductBulkDeleteProductsRequestWithDefaults instantiates a new ProductBulkDeleteProductsRequest 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 (*ProductBulkDeleteProductsRequest) GetIds

GetIds returns the Ids field value if set, zero value otherwise.

func (*ProductBulkDeleteProductsRequest) GetIdsOk

func (o *ProductBulkDeleteProductsRequest) GetIdsOk() ([]string, bool)

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

func (*ProductBulkDeleteProductsRequest) GetTenantId

func (o *ProductBulkDeleteProductsRequest) GetTenantId() string

GetTenantId returns the TenantId field value if set, zero value otherwise.

func (*ProductBulkDeleteProductsRequest) GetTenantIdOk

func (o *ProductBulkDeleteProductsRequest) GetTenantIdOk() (*string, bool)

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

func (*ProductBulkDeleteProductsRequest) HasIds

HasIds returns a boolean if a field has been set.

func (*ProductBulkDeleteProductsRequest) HasTenantId

func (o *ProductBulkDeleteProductsRequest) HasTenantId() bool

HasTenantId returns a boolean if a field has been set.

func (ProductBulkDeleteProductsRequest) MarshalJSON

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

func (*ProductBulkDeleteProductsRequest) SetIds

SetIds gets a reference to the given []string and assigns it to the Ids field.

func (*ProductBulkDeleteProductsRequest) SetTenantId

func (o *ProductBulkDeleteProductsRequest) SetTenantId(v string)

SetTenantId gets a reference to the given string and assigns it to the TenantId field.

func (ProductBulkDeleteProductsRequest) ToMap

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

type ProductBulkRemoveAssetsEntriesRequest

type ProductBulkRemoveAssetsEntriesRequest struct {
	TenantId  *string  `json:"tenantId,omitempty"`
	ProductId *string  `json:"productId,omitempty"`
	Ids       []string `json:"ids,omitempty"`
}

ProductBulkRemoveAssetsEntriesRequest struct for ProductBulkRemoveAssetsEntriesRequest

func NewProductBulkRemoveAssetsEntriesRequest

func NewProductBulkRemoveAssetsEntriesRequest() *ProductBulkRemoveAssetsEntriesRequest

NewProductBulkRemoveAssetsEntriesRequest instantiates a new ProductBulkRemoveAssetsEntriesRequest 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 NewProductBulkRemoveAssetsEntriesRequestWithDefaults

func NewProductBulkRemoveAssetsEntriesRequestWithDefaults() *ProductBulkRemoveAssetsEntriesRequest

NewProductBulkRemoveAssetsEntriesRequestWithDefaults instantiates a new ProductBulkRemoveAssetsEntriesRequest 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 (*ProductBulkRemoveAssetsEntriesRequest) GetIds

GetIds returns the Ids field value if set, zero value otherwise.

func (*ProductBulkRemoveAssetsEntriesRequest) GetIdsOk

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

func (*ProductBulkRemoveAssetsEntriesRequest) GetProductId

GetProductId returns the ProductId field value if set, zero value otherwise.

func (*ProductBulkRemoveAssetsEntriesRequest) GetProductIdOk

func (o *ProductBulkRemoveAssetsEntriesRequest) GetProductIdOk() (*string, bool)

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

func (*ProductBulkRemoveAssetsEntriesRequest) GetTenantId

GetTenantId returns the TenantId field value if set, zero value otherwise.

func (*ProductBulkRemoveAssetsEntriesRequest) GetTenantIdOk

func (o *ProductBulkRemoveAssetsEntriesRequest) GetTenantIdOk() (*string, bool)

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

func (*ProductBulkRemoveAssetsEntriesRequest) HasIds

HasIds returns a boolean if a field has been set.

func (*ProductBulkRemoveAssetsEntriesRequest) HasProductId

func (o *ProductBulkRemoveAssetsEntriesRequest) HasProductId() bool

HasProductId returns a boolean if a field has been set.

func (*ProductBulkRemoveAssetsEntriesRequest) HasTenantId

HasTenantId returns a boolean if a field has been set.

func (ProductBulkRemoveAssetsEntriesRequest) MarshalJSON

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

func (*ProductBulkRemoveAssetsEntriesRequest) SetIds

SetIds gets a reference to the given []string and assigns it to the Ids field.

func (*ProductBulkRemoveAssetsEntriesRequest) SetProductId

func (o *ProductBulkRemoveAssetsEntriesRequest) SetProductId(v string)

SetProductId gets a reference to the given string and assigns it to the ProductId field.

func (*ProductBulkRemoveAssetsEntriesRequest) SetTenantId

SetTenantId gets a reference to the given string and assigns it to the TenantId field.

func (ProductBulkRemoveAssetsEntriesRequest) ToMap

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

type ProductBulkUpdateAssetsEntriesRequest

type ProductBulkUpdateAssetsEntriesRequest struct {
	TenantId  *string                                      `json:"tenantId,omitempty"`
	ProductId *string                                      `json:"productId,omitempty"`
	Assets    []BulkUpdateAssetsEntriesRequestUpdateEntity `json:"assets,omitempty"`
}

ProductBulkUpdateAssetsEntriesRequest struct for ProductBulkUpdateAssetsEntriesRequest

func NewProductBulkUpdateAssetsEntriesRequest

func NewProductBulkUpdateAssetsEntriesRequest() *ProductBulkUpdateAssetsEntriesRequest

NewProductBulkUpdateAssetsEntriesRequest instantiates a new ProductBulkUpdateAssetsEntriesRequest 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 NewProductBulkUpdateAssetsEntriesRequestWithDefaults

func NewProductBulkUpdateAssetsEntriesRequestWithDefaults() *ProductBulkUpdateAssetsEntriesRequest

NewProductBulkUpdateAssetsEntriesRequestWithDefaults instantiates a new ProductBulkUpdateAssetsEntriesRequest 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 (*ProductBulkUpdateAssetsEntriesRequest) GetAssets

GetAssets returns the Assets field value if set, zero value otherwise.

func (*ProductBulkUpdateAssetsEntriesRequest) GetAssetsOk

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

func (*ProductBulkUpdateAssetsEntriesRequest) GetProductId

GetProductId returns the ProductId field value if set, zero value otherwise.

func (*ProductBulkUpdateAssetsEntriesRequest) GetProductIdOk

func (o *ProductBulkUpdateAssetsEntriesRequest) GetProductIdOk() (*string, bool)

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

func (*ProductBulkUpdateAssetsEntriesRequest) GetTenantId

GetTenantId returns the TenantId field value if set, zero value otherwise.

func (*ProductBulkUpdateAssetsEntriesRequest) GetTenantIdOk

func (o *ProductBulkUpdateAssetsEntriesRequest) GetTenantIdOk() (*string, bool)

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

func (*ProductBulkUpdateAssetsEntriesRequest) HasAssets

HasAssets returns a boolean if a field has been set.

func (*ProductBulkUpdateAssetsEntriesRequest) HasProductId

func (o *ProductBulkUpdateAssetsEntriesRequest) HasProductId() bool

HasProductId returns a boolean if a field has been set.

func (*ProductBulkUpdateAssetsEntriesRequest) HasTenantId

HasTenantId returns a boolean if a field has been set.

func (ProductBulkUpdateAssetsEntriesRequest) MarshalJSON

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

func (*ProductBulkUpdateAssetsEntriesRequest) SetAssets

SetAssets gets a reference to the given []BulkUpdateAssetsEntriesRequestUpdateEntity and assigns it to the Assets field.

func (*ProductBulkUpdateAssetsEntriesRequest) SetProductId

func (o *ProductBulkUpdateAssetsEntriesRequest) SetProductId(v string)

SetProductId gets a reference to the given string and assigns it to the ProductId field.

func (*ProductBulkUpdateAssetsEntriesRequest) SetTenantId

SetTenantId gets a reference to the given string and assigns it to the TenantId field.

func (ProductBulkUpdateAssetsEntriesRequest) ToMap

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

type ProductBulkUpdateAssetsEntriesResponse

type ProductBulkUpdateAssetsEntriesResponse struct {
	Assets []ProductAssetsEntry `json:"assets,omitempty"`
}

ProductBulkUpdateAssetsEntriesResponse struct for ProductBulkUpdateAssetsEntriesResponse

func NewProductBulkUpdateAssetsEntriesResponse

func NewProductBulkUpdateAssetsEntriesResponse() *ProductBulkUpdateAssetsEntriesResponse

NewProductBulkUpdateAssetsEntriesResponse instantiates a new ProductBulkUpdateAssetsEntriesResponse 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 NewProductBulkUpdateAssetsEntriesResponseWithDefaults

func NewProductBulkUpdateAssetsEntriesResponseWithDefaults() *ProductBulkUpdateAssetsEntriesResponse

NewProductBulkUpdateAssetsEntriesResponseWithDefaults instantiates a new ProductBulkUpdateAssetsEntriesResponse 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 (*ProductBulkUpdateAssetsEntriesResponse) GetAssets

GetAssets returns the Assets field value if set, zero value otherwise.

func (*ProductBulkUpdateAssetsEntriesResponse) GetAssetsOk

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

func (*ProductBulkUpdateAssetsEntriesResponse) HasAssets

HasAssets returns a boolean if a field has been set.

func (ProductBulkUpdateAssetsEntriesResponse) MarshalJSON

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

func (*ProductBulkUpdateAssetsEntriesResponse) SetAssets

SetAssets gets a reference to the given []ProductAssetsEntry and assigns it to the Assets field.

func (ProductBulkUpdateAssetsEntriesResponse) ToMap

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

type ProductBulkUpdateRequest

type ProductBulkUpdateRequest struct {
	TenantId   *string                          `json:"tenantId,omitempty"`
	ProductIds []string                         `json:"productIds,omitempty"`
	Payload    *ProductBulkUpdateRequestPayload `json:"payload,omitempty"`
}

ProductBulkUpdateRequest struct for ProductBulkUpdateRequest

func NewProductBulkUpdateRequest

func NewProductBulkUpdateRequest() *ProductBulkUpdateRequest

NewProductBulkUpdateRequest instantiates a new ProductBulkUpdateRequest 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 NewProductBulkUpdateRequestWithDefaults

func NewProductBulkUpdateRequestWithDefaults() *ProductBulkUpdateRequest

NewProductBulkUpdateRequestWithDefaults instantiates a new ProductBulkUpdateRequest 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 (*ProductBulkUpdateRequest) GetPayload

GetPayload returns the Payload field value if set, zero value otherwise.

func (*ProductBulkUpdateRequest) GetPayloadOk

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

func (*ProductBulkUpdateRequest) GetProductIds

func (o *ProductBulkUpdateRequest) GetProductIds() []string

GetProductIds returns the ProductIds field value if set, zero value otherwise.

func (*ProductBulkUpdateRequest) GetProductIdsOk

func (o *ProductBulkUpdateRequest) GetProductIdsOk() ([]string, bool)

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

func (*ProductBulkUpdateRequest) GetTenantId

func (o *ProductBulkUpdateRequest) GetTenantId() string

GetTenantId returns the TenantId field value if set, zero value otherwise.

func (*ProductBulkUpdateRequest) GetTenantIdOk

func (o *ProductBulkUpdateRequest) GetTenantIdOk() (*string, bool)

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

func (*ProductBulkUpdateRequest) HasPayload

func (o *ProductBulkUpdateRequest) HasPayload() bool

HasPayload returns a boolean if a field has been set.

func (*ProductBulkUpdateRequest) HasProductIds

func (o *ProductBulkUpdateRequest) HasProductIds() bool

HasProductIds returns a boolean if a field has been set.

func (*ProductBulkUpdateRequest) HasTenantId

func (o *ProductBulkUpdateRequest) HasTenantId() bool

HasTenantId returns a boolean if a field has been set.

func (ProductBulkUpdateRequest) MarshalJSON

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

func (*ProductBulkUpdateRequest) SetPayload

SetPayload gets a reference to the given ProductBulkUpdateRequestPayload and assigns it to the Payload field.

func (*ProductBulkUpdateRequest) SetProductIds

func (o *ProductBulkUpdateRequest) SetProductIds(v []string)

SetProductIds gets a reference to the given []string and assigns it to the ProductIds field.

func (*ProductBulkUpdateRequest) SetTenantId

func (o *ProductBulkUpdateRequest) SetTenantId(v string)

SetTenantId gets a reference to the given string and assigns it to the TenantId field.

func (ProductBulkUpdateRequest) ToMap

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

type ProductBulkUpdateRequestPayload

type ProductBulkUpdateRequestPayload struct {
	UpdateMask *ProductFieldMask       `json:"updateMask,omitempty"`
	Attributes *map[string]ProtobufAny `json:"attributes,omitempty"`
}

ProductBulkUpdateRequestPayload struct for ProductBulkUpdateRequestPayload

func NewProductBulkUpdateRequestPayload

func NewProductBulkUpdateRequestPayload() *ProductBulkUpdateRequestPayload

NewProductBulkUpdateRequestPayload instantiates a new ProductBulkUpdateRequestPayload 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 NewProductBulkUpdateRequestPayloadWithDefaults

func NewProductBulkUpdateRequestPayloadWithDefaults() *ProductBulkUpdateRequestPayload

NewProductBulkUpdateRequestPayloadWithDefaults instantiates a new ProductBulkUpdateRequestPayload 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 (*ProductBulkUpdateRequestPayload) GetAttributes

func (o *ProductBulkUpdateRequestPayload) GetAttributes() map[string]ProtobufAny

GetAttributes returns the Attributes field value if set, zero value otherwise.

func (*ProductBulkUpdateRequestPayload) GetAttributesOk

func (o *ProductBulkUpdateRequestPayload) GetAttributesOk() (*map[string]ProtobufAny, bool)

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

func (*ProductBulkUpdateRequestPayload) GetUpdateMask

GetUpdateMask returns the UpdateMask field value if set, zero value otherwise.

func (*ProductBulkUpdateRequestPayload) GetUpdateMaskOk

func (o *ProductBulkUpdateRequestPayload) GetUpdateMaskOk() (*ProductFieldMask, bool)

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

func (*ProductBulkUpdateRequestPayload) HasAttributes

func (o *ProductBulkUpdateRequestPayload) HasAttributes() bool

HasAttributes returns a boolean if a field has been set.

func (*ProductBulkUpdateRequestPayload) HasUpdateMask

func (o *ProductBulkUpdateRequestPayload) HasUpdateMask() bool

HasUpdateMask returns a boolean if a field has been set.

func (ProductBulkUpdateRequestPayload) MarshalJSON

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

func (*ProductBulkUpdateRequestPayload) SetAttributes

func (o *ProductBulkUpdateRequestPayload) SetAttributes(v map[string]ProtobufAny)

SetAttributes gets a reference to the given map[string]ProtobufAny and assigns it to the Attributes field.

func (*ProductBulkUpdateRequestPayload) SetUpdateMask

SetUpdateMask gets a reference to the given ProductFieldMask and assigns it to the UpdateMask field.

func (ProductBulkUpdateRequestPayload) ToMap

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

type ProductBulkUpdateRequestV2

type ProductBulkUpdateRequestV2 struct {
	TenantId   *string                            `json:"tenantId,omitempty"`
	ProductIds []string                           `json:"productIds,omitempty"`
	Payload    *ProductBulkUpdateRequestV2Payload `json:"payload,omitempty"`
}

ProductBulkUpdateRequestV2 struct for ProductBulkUpdateRequestV2

func NewProductBulkUpdateRequestV2

func NewProductBulkUpdateRequestV2() *ProductBulkUpdateRequestV2

NewProductBulkUpdateRequestV2 instantiates a new ProductBulkUpdateRequestV2 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 NewProductBulkUpdateRequestV2WithDefaults

func NewProductBulkUpdateRequestV2WithDefaults() *ProductBulkUpdateRequestV2

NewProductBulkUpdateRequestV2WithDefaults instantiates a new ProductBulkUpdateRequestV2 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 (*ProductBulkUpdateRequestV2) GetPayload

GetPayload returns the Payload field value if set, zero value otherwise.

func (*ProductBulkUpdateRequestV2) GetPayloadOk

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

func (*ProductBulkUpdateRequestV2) GetProductIds

func (o *ProductBulkUpdateRequestV2) GetProductIds() []string

GetProductIds returns the ProductIds field value if set, zero value otherwise.

func (*ProductBulkUpdateRequestV2) GetProductIdsOk

func (o *ProductBulkUpdateRequestV2) GetProductIdsOk() ([]string, bool)

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

func (*ProductBulkUpdateRequestV2) GetTenantId

func (o *ProductBulkUpdateRequestV2) GetTenantId() string

GetTenantId returns the TenantId field value if set, zero value otherwise.

func (*ProductBulkUpdateRequestV2) GetTenantIdOk

func (o *ProductBulkUpdateRequestV2) GetTenantIdOk() (*string, bool)

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

func (*ProductBulkUpdateRequestV2) HasPayload

func (o *ProductBulkUpdateRequestV2) HasPayload() bool

HasPayload returns a boolean if a field has been set.

func (*ProductBulkUpdateRequestV2) HasProductIds

func (o *ProductBulkUpdateRequestV2) HasProductIds() bool

HasProductIds returns a boolean if a field has been set.

func (*ProductBulkUpdateRequestV2) HasTenantId

func (o *ProductBulkUpdateRequestV2) HasTenantId() bool

HasTenantId returns a boolean if a field has been set.

func (ProductBulkUpdateRequestV2) MarshalJSON

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

func (*ProductBulkUpdateRequestV2) SetPayload

SetPayload gets a reference to the given ProductBulkUpdateRequestV2Payload and assigns it to the Payload field.

func (*ProductBulkUpdateRequestV2) SetProductIds

func (o *ProductBulkUpdateRequestV2) SetProductIds(v []string)

SetProductIds gets a reference to the given []string and assigns it to the ProductIds field.

func (*ProductBulkUpdateRequestV2) SetTenantId

func (o *ProductBulkUpdateRequestV2) SetTenantId(v string)

SetTenantId gets a reference to the given string and assigns it to the TenantId field.

func (ProductBulkUpdateRequestV2) ToMap

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

type ProductBulkUpdateRequestV2Payload

type ProductBulkUpdateRequestV2Payload struct {
	UpdateMask *ProductFieldMask       `json:"updateMask,omitempty"`
	Attributes *map[string]ProtobufAny `json:"attributes,omitempty"`
}

ProductBulkUpdateRequestV2Payload struct for ProductBulkUpdateRequestV2Payload

func NewProductBulkUpdateRequestV2Payload

func NewProductBulkUpdateRequestV2Payload() *ProductBulkUpdateRequestV2Payload

NewProductBulkUpdateRequestV2Payload instantiates a new ProductBulkUpdateRequestV2Payload 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 NewProductBulkUpdateRequestV2PayloadWithDefaults

func NewProductBulkUpdateRequestV2PayloadWithDefaults() *ProductBulkUpdateRequestV2Payload

NewProductBulkUpdateRequestV2PayloadWithDefaults instantiates a new ProductBulkUpdateRequestV2Payload 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 (*ProductBulkUpdateRequestV2Payload) GetAttributes

func (o *ProductBulkUpdateRequestV2Payload) GetAttributes() map[string]ProtobufAny

GetAttributes returns the Attributes field value if set, zero value otherwise.

func (*ProductBulkUpdateRequestV2Payload) GetAttributesOk

func (o *ProductBulkUpdateRequestV2Payload) GetAttributesOk() (*map[string]ProtobufAny, bool)

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

func (*ProductBulkUpdateRequestV2Payload) GetUpdateMask

GetUpdateMask returns the UpdateMask field value if set, zero value otherwise.

func (*ProductBulkUpdateRequestV2Payload) GetUpdateMaskOk

func (o *ProductBulkUpdateRequestV2Payload) GetUpdateMaskOk() (*ProductFieldMask, bool)

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

func (*ProductBulkUpdateRequestV2Payload) HasAttributes

func (o *ProductBulkUpdateRequestV2Payload) HasAttributes() bool

HasAttributes returns a boolean if a field has been set.

func (*ProductBulkUpdateRequestV2Payload) HasUpdateMask

func (o *ProductBulkUpdateRequestV2Payload) HasUpdateMask() bool

HasUpdateMask returns a boolean if a field has been set.

func (ProductBulkUpdateRequestV2Payload) MarshalJSON

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

func (*ProductBulkUpdateRequestV2Payload) SetAttributes

func (o *ProductBulkUpdateRequestV2Payload) SetAttributes(v map[string]ProtobufAny)

SetAttributes gets a reference to the given map[string]ProtobufAny and assigns it to the Attributes field.

func (*ProductBulkUpdateRequestV2Payload) SetUpdateMask

SetUpdateMask gets a reference to the given ProductFieldMask and assigns it to the UpdateMask field.

func (ProductBulkUpdateRequestV2Payload) ToMap

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

type ProductBulkUpdateResponse

type ProductBulkUpdateResponse struct {
	ProductResponse []ProductBulkUpdateResponseResponse `json:"productResponse,omitempty"`
}

ProductBulkUpdateResponse struct for ProductBulkUpdateResponse

func NewProductBulkUpdateResponse

func NewProductBulkUpdateResponse() *ProductBulkUpdateResponse

NewProductBulkUpdateResponse instantiates a new ProductBulkUpdateResponse 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 NewProductBulkUpdateResponseWithDefaults

func NewProductBulkUpdateResponseWithDefaults() *ProductBulkUpdateResponse

NewProductBulkUpdateResponseWithDefaults instantiates a new ProductBulkUpdateResponse 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 (*ProductBulkUpdateResponse) GetProductResponse

GetProductResponse returns the ProductResponse field value if set, zero value otherwise.

func (*ProductBulkUpdateResponse) GetProductResponseOk

func (o *ProductBulkUpdateResponse) GetProductResponseOk() ([]ProductBulkUpdateResponseResponse, bool)

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

func (*ProductBulkUpdateResponse) HasProductResponse

func (o *ProductBulkUpdateResponse) HasProductResponse() bool

HasProductResponse returns a boolean if a field has been set.

func (ProductBulkUpdateResponse) MarshalJSON

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

func (*ProductBulkUpdateResponse) SetProductResponse

SetProductResponse gets a reference to the given []ProductBulkUpdateResponseResponse and assigns it to the ProductResponse field.

func (ProductBulkUpdateResponse) ToMap

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

type ProductBulkUpdateResponseResponse

type ProductBulkUpdateResponseResponse struct {
	ProductId  *string                 `json:"productId,omitempty"`
	Success    *bool                   `json:"success,omitempty"`
	Attributes *map[string]ProtobufAny `json:"attributes,omitempty"`
}

ProductBulkUpdateResponseResponse struct for ProductBulkUpdateResponseResponse

func NewProductBulkUpdateResponseResponse

func NewProductBulkUpdateResponseResponse() *ProductBulkUpdateResponseResponse

NewProductBulkUpdateResponseResponse instantiates a new ProductBulkUpdateResponseResponse 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 NewProductBulkUpdateResponseResponseWithDefaults

func NewProductBulkUpdateResponseResponseWithDefaults() *ProductBulkUpdateResponseResponse

NewProductBulkUpdateResponseResponseWithDefaults instantiates a new ProductBulkUpdateResponseResponse 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 (*ProductBulkUpdateResponseResponse) GetAttributes

func (o *ProductBulkUpdateResponseResponse) GetAttributes() map[string]ProtobufAny

GetAttributes returns the Attributes field value if set, zero value otherwise.

func (*ProductBulkUpdateResponseResponse) GetAttributesOk

func (o *ProductBulkUpdateResponseResponse) GetAttributesOk() (*map[string]ProtobufAny, bool)

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

func (*ProductBulkUpdateResponseResponse) GetProductId

func (o *ProductBulkUpdateResponseResponse) GetProductId() string

GetProductId returns the ProductId field value if set, zero value otherwise.

func (*ProductBulkUpdateResponseResponse) GetProductIdOk

func (o *ProductBulkUpdateResponseResponse) GetProductIdOk() (*string, bool)

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

func (*ProductBulkUpdateResponseResponse) GetSuccess

func (o *ProductBulkUpdateResponseResponse) GetSuccess() bool

GetSuccess returns the Success field value if set, zero value otherwise.

func (*ProductBulkUpdateResponseResponse) GetSuccessOk

func (o *ProductBulkUpdateResponseResponse) GetSuccessOk() (*bool, bool)

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

func (*ProductBulkUpdateResponseResponse) HasAttributes

func (o *ProductBulkUpdateResponseResponse) HasAttributes() bool

HasAttributes returns a boolean if a field has been set.

func (*ProductBulkUpdateResponseResponse) HasProductId

func (o *ProductBulkUpdateResponseResponse) HasProductId() bool

HasProductId returns a boolean if a field has been set.

func (*ProductBulkUpdateResponseResponse) HasSuccess

func (o *ProductBulkUpdateResponseResponse) HasSuccess() bool

HasSuccess returns a boolean if a field has been set.

func (ProductBulkUpdateResponseResponse) MarshalJSON

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

func (*ProductBulkUpdateResponseResponse) SetAttributes

func (o *ProductBulkUpdateResponseResponse) SetAttributes(v map[string]ProtobufAny)

SetAttributes gets a reference to the given map[string]ProtobufAny and assigns it to the Attributes field.

func (*ProductBulkUpdateResponseResponse) SetProductId

func (o *ProductBulkUpdateResponseResponse) SetProductId(v string)

SetProductId gets a reference to the given string and assigns it to the ProductId field.

func (*ProductBulkUpdateResponseResponse) SetSuccess

func (o *ProductBulkUpdateResponseResponse) SetSuccess(v bool)

SetSuccess gets a reference to the given bool and assigns it to the Success field.

func (ProductBulkUpdateResponseResponse) ToMap

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

type ProductBulkUpdateResponseV2

type ProductBulkUpdateResponseV2 struct {
	ProductResponse []ProductBulkUpdateResponseV2Response `json:"productResponse,omitempty"`
}

ProductBulkUpdateResponseV2 struct for ProductBulkUpdateResponseV2

func NewProductBulkUpdateResponseV2

func NewProductBulkUpdateResponseV2() *ProductBulkUpdateResponseV2

NewProductBulkUpdateResponseV2 instantiates a new ProductBulkUpdateResponseV2 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 NewProductBulkUpdateResponseV2WithDefaults

func NewProductBulkUpdateResponseV2WithDefaults() *ProductBulkUpdateResponseV2

NewProductBulkUpdateResponseV2WithDefaults instantiates a new ProductBulkUpdateResponseV2 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 (*ProductBulkUpdateResponseV2) GetProductResponse

GetProductResponse returns the ProductResponse field value if set, zero value otherwise.

func (*ProductBulkUpdateResponseV2) GetProductResponseOk

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

func (*ProductBulkUpdateResponseV2) HasProductResponse

func (o *ProductBulkUpdateResponseV2) HasProductResponse() bool

HasProductResponse returns a boolean if a field has been set.

func (ProductBulkUpdateResponseV2) MarshalJSON

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

func (*ProductBulkUpdateResponseV2) SetProductResponse

SetProductResponse gets a reference to the given []ProductBulkUpdateResponseV2Response and assigns it to the ProductResponse field.

func (ProductBulkUpdateResponseV2) ToMap

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

type ProductBulkUpdateResponseV2Response

type ProductBulkUpdateResponseV2Response struct {
	ProductId  *string                 `json:"productId,omitempty"`
	Attributes *map[string]ProtobufAny `json:"attributes,omitempty"`
}

ProductBulkUpdateResponseV2Response struct for ProductBulkUpdateResponseV2Response

func NewProductBulkUpdateResponseV2Response

func NewProductBulkUpdateResponseV2Response() *ProductBulkUpdateResponseV2Response

NewProductBulkUpdateResponseV2Response instantiates a new ProductBulkUpdateResponseV2Response 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 NewProductBulkUpdateResponseV2ResponseWithDefaults

func NewProductBulkUpdateResponseV2ResponseWithDefaults() *ProductBulkUpdateResponseV2Response

NewProductBulkUpdateResponseV2ResponseWithDefaults instantiates a new ProductBulkUpdateResponseV2Response 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 (*ProductBulkUpdateResponseV2Response) GetAttributes

GetAttributes returns the Attributes field value if set, zero value otherwise.

func (*ProductBulkUpdateResponseV2Response) GetAttributesOk

func (o *ProductBulkUpdateResponseV2Response) GetAttributesOk() (*map[string]ProtobufAny, bool)

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

func (*ProductBulkUpdateResponseV2Response) GetProductId

func (o *ProductBulkUpdateResponseV2Response) GetProductId() string

GetProductId returns the ProductId field value if set, zero value otherwise.

func (*ProductBulkUpdateResponseV2Response) GetProductIdOk

func (o *ProductBulkUpdateResponseV2Response) GetProductIdOk() (*string, bool)

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

func (*ProductBulkUpdateResponseV2Response) HasAttributes

func (o *ProductBulkUpdateResponseV2Response) HasAttributes() bool

HasAttributes returns a boolean if a field has been set.

func (*ProductBulkUpdateResponseV2Response) HasProductId

func (o *ProductBulkUpdateResponseV2Response) HasProductId() bool

HasProductId returns a boolean if a field has been set.

func (ProductBulkUpdateResponseV2Response) MarshalJSON

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

func (*ProductBulkUpdateResponseV2Response) SetAttributes

func (o *ProductBulkUpdateResponseV2Response) SetAttributes(v map[string]ProtobufAny)

SetAttributes gets a reference to the given map[string]ProtobufAny and assigns it to the Attributes field.

func (*ProductBulkUpdateResponseV2Response) SetProductId

func (o *ProductBulkUpdateResponseV2Response) SetProductId(v string)

SetProductId gets a reference to the given string and assigns it to the ProductId field.

func (ProductBulkUpdateResponseV2Response) ToMap

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

type ProductCreateProductRequest

type ProductCreateProductRequest struct {
	TenantId               *string                           `json:"tenantId,omitempty"`
	EntityType             *string                           `json:"entityType,omitempty"`
	EntityCode             *string                           `json:"entityCode,omitempty"`
	Code                   *string                           `json:"code,omitempty"`
	IsConfigurable         *bool                             `json:"isConfigurable,omitempty"`
	VariantAttributes      []string                          `json:"variantAttributes,omitempty"`
	IsVirtual              *bool                             `json:"isVirtual,omitempty"`
	IsGiftcard             *bool                             `json:"isGiftcard,omitempty"`
	HasConfigurator        *bool                             `json:"hasConfigurator,omitempty"`
	UrlKey                 *ProductLocalizedText             `json:"urlKey,omitempty"`
	MaxSaleableQuantity    *int64                            `json:"maxSaleableQuantity,omitempty"`
	MediaVariantAttributes []string                          `json:"mediaVariantAttributes,omitempty"`
	Attributes             *map[string]ProtobufAny           `json:"attributes,omitempty"`
	Variants               *map[string]ProductProductVariant `json:"variants,omitempty"`
}

ProductCreateProductRequest struct for ProductCreateProductRequest

func NewProductCreateProductRequest

func NewProductCreateProductRequest() *ProductCreateProductRequest

NewProductCreateProductRequest instantiates a new ProductCreateProductRequest 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 NewProductCreateProductRequestWithDefaults

func NewProductCreateProductRequestWithDefaults() *ProductCreateProductRequest

NewProductCreateProductRequestWithDefaults instantiates a new ProductCreateProductRequest 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 (*ProductCreateProductRequest) GetAttributes

func (o *ProductCreateProductRequest) GetAttributes() map[string]ProtobufAny

GetAttributes returns the Attributes field value if set, zero value otherwise.

func (*ProductCreateProductRequest) GetAttributesOk

func (o *ProductCreateProductRequest) GetAttributesOk() (*map[string]ProtobufAny, bool)

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

func (*ProductCreateProductRequest) GetCode

func (o *ProductCreateProductRequest) GetCode() string

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

func (*ProductCreateProductRequest) GetCodeOk

func (o *ProductCreateProductRequest) 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 (*ProductCreateProductRequest) GetEntityCode

func (o *ProductCreateProductRequest) GetEntityCode() string

GetEntityCode returns the EntityCode field value if set, zero value otherwise.

func (*ProductCreateProductRequest) GetEntityCodeOk

func (o *ProductCreateProductRequest) GetEntityCodeOk() (*string, bool)

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

func (*ProductCreateProductRequest) GetEntityType

func (o *ProductCreateProductRequest) GetEntityType() string

GetEntityType returns the EntityType field value if set, zero value otherwise.

func (*ProductCreateProductRequest) GetEntityTypeOk

func (o *ProductCreateProductRequest) GetEntityTypeOk() (*string, bool)

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

func (*ProductCreateProductRequest) GetHasConfigurator

func (o *ProductCreateProductRequest) GetHasConfigurator() bool

GetHasConfigurator returns the HasConfigurator field value if set, zero value otherwise.

func (*ProductCreateProductRequest) GetHasConfiguratorOk

func (o *ProductCreateProductRequest) GetHasConfiguratorOk() (*bool, bool)

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

func (*ProductCreateProductRequest) GetIsConfigurable

func (o *ProductCreateProductRequest) GetIsConfigurable() bool

GetIsConfigurable returns the IsConfigurable field value if set, zero value otherwise.

func (*ProductCreateProductRequest) GetIsConfigurableOk

func (o *ProductCreateProductRequest) GetIsConfigurableOk() (*bool, bool)

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

func (*ProductCreateProductRequest) GetIsGiftcard

func (o *ProductCreateProductRequest) GetIsGiftcard() bool

GetIsGiftcard returns the IsGiftcard field value if set, zero value otherwise.

func (*ProductCreateProductRequest) GetIsGiftcardOk

func (o *ProductCreateProductRequest) GetIsGiftcardOk() (*bool, bool)

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

func (*ProductCreateProductRequest) GetIsVirtual

func (o *ProductCreateProductRequest) GetIsVirtual() bool

GetIsVirtual returns the IsVirtual field value if set, zero value otherwise.

func (*ProductCreateProductRequest) GetIsVirtualOk

func (o *ProductCreateProductRequest) GetIsVirtualOk() (*bool, bool)

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

func (*ProductCreateProductRequest) GetMaxSaleableQuantity

func (o *ProductCreateProductRequest) GetMaxSaleableQuantity() int64

GetMaxSaleableQuantity returns the MaxSaleableQuantity field value if set, zero value otherwise.

func (*ProductCreateProductRequest) GetMaxSaleableQuantityOk

func (o *ProductCreateProductRequest) GetMaxSaleableQuantityOk() (*int64, bool)

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

func (*ProductCreateProductRequest) GetMediaVariantAttributes

func (o *ProductCreateProductRequest) GetMediaVariantAttributes() []string

GetMediaVariantAttributes returns the MediaVariantAttributes field value if set, zero value otherwise.

func (*ProductCreateProductRequest) GetMediaVariantAttributesOk

func (o *ProductCreateProductRequest) GetMediaVariantAttributesOk() ([]string, bool)

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

func (*ProductCreateProductRequest) GetTenantId

func (o *ProductCreateProductRequest) GetTenantId() string

GetTenantId returns the TenantId field value if set, zero value otherwise.

func (*ProductCreateProductRequest) GetTenantIdOk

func (o *ProductCreateProductRequest) GetTenantIdOk() (*string, bool)

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

func (*ProductCreateProductRequest) GetUrlKey

GetUrlKey returns the UrlKey field value if set, zero value otherwise.

func (*ProductCreateProductRequest) GetUrlKeyOk

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

func (*ProductCreateProductRequest) GetVariantAttributes

func (o *ProductCreateProductRequest) GetVariantAttributes() []string

GetVariantAttributes returns the VariantAttributes field value if set, zero value otherwise.

func (*ProductCreateProductRequest) GetVariantAttributesOk

func (o *ProductCreateProductRequest) GetVariantAttributesOk() ([]string, bool)

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

func (*ProductCreateProductRequest) GetVariants

GetVariants returns the Variants field value if set, zero value otherwise.

func (*ProductCreateProductRequest) GetVariantsOk

func (o *ProductCreateProductRequest) GetVariantsOk() (*map[string]ProductProductVariant, bool)

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

func (*ProductCreateProductRequest) HasAttributes

func (o *ProductCreateProductRequest) HasAttributes() bool

HasAttributes returns a boolean if a field has been set.

func (*ProductCreateProductRequest) HasCode

func (o *ProductCreateProductRequest) HasCode() bool

HasCode returns a boolean if a field has been set.

func (*ProductCreateProductRequest) HasEntityCode

func (o *ProductCreateProductRequest) HasEntityCode() bool

HasEntityCode returns a boolean if a field has been set.

func (*ProductCreateProductRequest) HasEntityType

func (o *ProductCreateProductRequest) HasEntityType() bool

HasEntityType returns a boolean if a field has been set.

func (*ProductCreateProductRequest) HasHasConfigurator

func (o *ProductCreateProductRequest) HasHasConfigurator() bool

HasHasConfigurator returns a boolean if a field has been set.

func (*ProductCreateProductRequest) HasIsConfigurable

func (o *ProductCreateProductRequest) HasIsConfigurable() bool

HasIsConfigurable returns a boolean if a field has been set.

func (*ProductCreateProductRequest) HasIsGiftcard

func (o *ProductCreateProductRequest) HasIsGiftcard() bool

HasIsGiftcard returns a boolean if a field has been set.

func (*ProductCreateProductRequest) HasIsVirtual

func (o *ProductCreateProductRequest) HasIsVirtual() bool

HasIsVirtual returns a boolean if a field has been set.

func (*ProductCreateProductRequest) HasMaxSaleableQuantity

func (o *ProductCreateProductRequest) HasMaxSaleableQuantity() bool

HasMaxSaleableQuantity returns a boolean if a field has been set.

func (*ProductCreateProductRequest) HasMediaVariantAttributes

func (o *ProductCreateProductRequest) HasMediaVariantAttributes() bool

HasMediaVariantAttributes returns a boolean if a field has been set.

func (*ProductCreateProductRequest) HasTenantId

func (o *ProductCreateProductRequest) HasTenantId() bool

HasTenantId returns a boolean if a field has been set.

func (*ProductCreateProductRequest) HasUrlKey

func (o *ProductCreateProductRequest) HasUrlKey() bool

HasUrlKey returns a boolean if a field has been set.

func (*ProductCreateProductRequest) HasVariantAttributes

func (o *ProductCreateProductRequest) HasVariantAttributes() bool

HasVariantAttributes returns a boolean if a field has been set.

func (*ProductCreateProductRequest) HasVariants

func (o *ProductCreateProductRequest) HasVariants() bool

HasVariants returns a boolean if a field has been set.

func (ProductCreateProductRequest) MarshalJSON

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

func (*ProductCreateProductRequest) SetAttributes

func (o *ProductCreateProductRequest) SetAttributes(v map[string]ProtobufAny)

SetAttributes gets a reference to the given map[string]ProtobufAny and assigns it to the Attributes field.

func (*ProductCreateProductRequest) SetCode

func (o *ProductCreateProductRequest) SetCode(v string)

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

func (*ProductCreateProductRequest) SetEntityCode

func (o *ProductCreateProductRequest) SetEntityCode(v string)

SetEntityCode gets a reference to the given string and assigns it to the EntityCode field.

func (*ProductCreateProductRequest) SetEntityType

func (o *ProductCreateProductRequest) SetEntityType(v string)

SetEntityType gets a reference to the given string and assigns it to the EntityType field.

func (*ProductCreateProductRequest) SetHasConfigurator

func (o *ProductCreateProductRequest) SetHasConfigurator(v bool)

SetHasConfigurator gets a reference to the given bool and assigns it to the HasConfigurator field.

func (*ProductCreateProductRequest) SetIsConfigurable

func (o *ProductCreateProductRequest) SetIsConfigurable(v bool)

SetIsConfigurable gets a reference to the given bool and assigns it to the IsConfigurable field.

func (*ProductCreateProductRequest) SetIsGiftcard

func (o *ProductCreateProductRequest) SetIsGiftcard(v bool)

SetIsGiftcard gets a reference to the given bool and assigns it to the IsGiftcard field.

func (*ProductCreateProductRequest) SetIsVirtual

func (o *ProductCreateProductRequest) SetIsVirtual(v bool)

SetIsVirtual gets a reference to the given bool and assigns it to the IsVirtual field.

func (*ProductCreateProductRequest) SetMaxSaleableQuantity

func (o *ProductCreateProductRequest) SetMaxSaleableQuantity(v int64)

SetMaxSaleableQuantity gets a reference to the given int64 and assigns it to the MaxSaleableQuantity field.

func (*ProductCreateProductRequest) SetMediaVariantAttributes

func (o *ProductCreateProductRequest) SetMediaVariantAttributes(v []string)

SetMediaVariantAttributes gets a reference to the given []string and assigns it to the MediaVariantAttributes field.

func (*ProductCreateProductRequest) SetTenantId

func (o *ProductCreateProductRequest) SetTenantId(v string)

SetTenantId gets a reference to the given string and assigns it to the TenantId field.

func (*ProductCreateProductRequest) SetUrlKey

SetUrlKey gets a reference to the given ProductLocalizedText and assigns it to the UrlKey field.

func (*ProductCreateProductRequest) SetVariantAttributes

func (o *ProductCreateProductRequest) SetVariantAttributes(v []string)

SetVariantAttributes gets a reference to the given []string and assigns it to the VariantAttributes field.

func (*ProductCreateProductRequest) SetVariants

SetVariants gets a reference to the given map[string]ProductProductVariant and assigns it to the Variants field.

func (ProductCreateProductRequest) ToMap

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

type ProductCreateProductRequestV2

type ProductCreateProductRequestV2 struct {
	TenantId               *string                           `json:"tenantId,omitempty"`
	EntityType             *string                           `json:"entityType,omitempty"`
	EntityCode             *string                           `json:"entityCode,omitempty"`
	Code                   *string                           `json:"code,omitempty"`
	IsConfigurable         *bool                             `json:"isConfigurable,omitempty"`
	VariantAttributes      []string                          `json:"variantAttributes,omitempty"`
	IsVirtual              *bool                             `json:"isVirtual,omitempty"`
	IsGiftcard             *bool                             `json:"isGiftcard,omitempty"`
	HasConfigurator        *bool                             `json:"hasConfigurator,omitempty"`
	UrlKey                 *ProductLocalizedText             `json:"urlKey,omitempty"`
	MaxSaleableQuantity    *int64                            `json:"maxSaleableQuantity,omitempty"`
	Attributes             *map[string]ProtobufAny           `json:"attributes,omitempty"`
	Variants               *map[string]ProductProductVariant `json:"variants,omitempty"`
	MediaVariantAttributes []string                          `json:"mediaVariantAttributes,omitempty"`
}

ProductCreateProductRequestV2 struct for ProductCreateProductRequestV2

func NewProductCreateProductRequestV2

func NewProductCreateProductRequestV2() *ProductCreateProductRequestV2

NewProductCreateProductRequestV2 instantiates a new ProductCreateProductRequestV2 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 NewProductCreateProductRequestV2WithDefaults

func NewProductCreateProductRequestV2WithDefaults() *ProductCreateProductRequestV2

NewProductCreateProductRequestV2WithDefaults instantiates a new ProductCreateProductRequestV2 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 (*ProductCreateProductRequestV2) GetAttributes

func (o *ProductCreateProductRequestV2) GetAttributes() map[string]ProtobufAny

GetAttributes returns the Attributes field value if set, zero value otherwise.

func (*ProductCreateProductRequestV2) GetAttributesOk

func (o *ProductCreateProductRequestV2) GetAttributesOk() (*map[string]ProtobufAny, bool)

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

func (*ProductCreateProductRequestV2) GetCode

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

func (*ProductCreateProductRequestV2) GetCodeOk

func (o *ProductCreateProductRequestV2) 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 (*ProductCreateProductRequestV2) GetEntityCode

func (o *ProductCreateProductRequestV2) GetEntityCode() string

GetEntityCode returns the EntityCode field value if set, zero value otherwise.

func (*ProductCreateProductRequestV2) GetEntityCodeOk

func (o *ProductCreateProductRequestV2) GetEntityCodeOk() (*string, bool)

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

func (*ProductCreateProductRequestV2) GetEntityType

func (o *ProductCreateProductRequestV2) GetEntityType() string

GetEntityType returns the EntityType field value if set, zero value otherwise.

func (*ProductCreateProductRequestV2) GetEntityTypeOk

func (o *ProductCreateProductRequestV2) GetEntityTypeOk() (*string, bool)

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

func (*ProductCreateProductRequestV2) GetHasConfigurator

func (o *ProductCreateProductRequestV2) GetHasConfigurator() bool

GetHasConfigurator returns the HasConfigurator field value if set, zero value otherwise.

func (*ProductCreateProductRequestV2) GetHasConfiguratorOk

func (o *ProductCreateProductRequestV2) GetHasConfiguratorOk() (*bool, bool)

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

func (*ProductCreateProductRequestV2) GetIsConfigurable

func (o *ProductCreateProductRequestV2) GetIsConfigurable() bool

GetIsConfigurable returns the IsConfigurable field value if set, zero value otherwise.

func (*ProductCreateProductRequestV2) GetIsConfigurableOk

func (o *ProductCreateProductRequestV2) GetIsConfigurableOk() (*bool, bool)

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

func (*ProductCreateProductRequestV2) GetIsGiftcard

func (o *ProductCreateProductRequestV2) GetIsGiftcard() bool

GetIsGiftcard returns the IsGiftcard field value if set, zero value otherwise.

func (*ProductCreateProductRequestV2) GetIsGiftcardOk

func (o *ProductCreateProductRequestV2) GetIsGiftcardOk() (*bool, bool)

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

func (*ProductCreateProductRequestV2) GetIsVirtual

func (o *ProductCreateProductRequestV2) GetIsVirtual() bool

GetIsVirtual returns the IsVirtual field value if set, zero value otherwise.

func (*ProductCreateProductRequestV2) GetIsVirtualOk

func (o *ProductCreateProductRequestV2) GetIsVirtualOk() (*bool, bool)

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

func (*ProductCreateProductRequestV2) GetMaxSaleableQuantity

func (o *ProductCreateProductRequestV2) GetMaxSaleableQuantity() int64

GetMaxSaleableQuantity returns the MaxSaleableQuantity field value if set, zero value otherwise.

func (*ProductCreateProductRequestV2) GetMaxSaleableQuantityOk

func (o *ProductCreateProductRequestV2) GetMaxSaleableQuantityOk() (*int64, bool)

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

func (*ProductCreateProductRequestV2) GetMediaVariantAttributes

func (o *ProductCreateProductRequestV2) GetMediaVariantAttributes() []string

GetMediaVariantAttributes returns the MediaVariantAttributes field value if set, zero value otherwise.

func (*ProductCreateProductRequestV2) GetMediaVariantAttributesOk

func (o *ProductCreateProductRequestV2) GetMediaVariantAttributesOk() ([]string, bool)

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

func (*ProductCreateProductRequestV2) GetTenantId

func (o *ProductCreateProductRequestV2) GetTenantId() string

GetTenantId returns the TenantId field value if set, zero value otherwise.

func (*ProductCreateProductRequestV2) GetTenantIdOk

func (o *ProductCreateProductRequestV2) GetTenantIdOk() (*string, bool)

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

func (*ProductCreateProductRequestV2) GetUrlKey

GetUrlKey returns the UrlKey field value if set, zero value otherwise.

func (*ProductCreateProductRequestV2) GetUrlKeyOk

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

func (*ProductCreateProductRequestV2) GetVariantAttributes

func (o *ProductCreateProductRequestV2) GetVariantAttributes() []string

GetVariantAttributes returns the VariantAttributes field value if set, zero value otherwise.

func (*ProductCreateProductRequestV2) GetVariantAttributesOk

func (o *ProductCreateProductRequestV2) GetVariantAttributesOk() ([]string, bool)

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

func (*ProductCreateProductRequestV2) GetVariants

GetVariants returns the Variants field value if set, zero value otherwise.

func (*ProductCreateProductRequestV2) GetVariantsOk

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

func (*ProductCreateProductRequestV2) HasAttributes

func (o *ProductCreateProductRequestV2) HasAttributes() bool

HasAttributes returns a boolean if a field has been set.

func (*ProductCreateProductRequestV2) HasCode

func (o *ProductCreateProductRequestV2) HasCode() bool

HasCode returns a boolean if a field has been set.

func (*ProductCreateProductRequestV2) HasEntityCode

func (o *ProductCreateProductRequestV2) HasEntityCode() bool

HasEntityCode returns a boolean if a field has been set.

func (*ProductCreateProductRequestV2) HasEntityType

func (o *ProductCreateProductRequestV2) HasEntityType() bool

HasEntityType returns a boolean if a field has been set.

func (*ProductCreateProductRequestV2) HasHasConfigurator

func (o *ProductCreateProductRequestV2) HasHasConfigurator() bool

HasHasConfigurator returns a boolean if a field has been set.

func (*ProductCreateProductRequestV2) HasIsConfigurable

func (o *ProductCreateProductRequestV2) HasIsConfigurable() bool

HasIsConfigurable returns a boolean if a field has been set.

func (*ProductCreateProductRequestV2) HasIsGiftcard

func (o *ProductCreateProductRequestV2) HasIsGiftcard() bool

HasIsGiftcard returns a boolean if a field has been set.

func (*ProductCreateProductRequestV2) HasIsVirtual

func (o *ProductCreateProductRequestV2) HasIsVirtual() bool

HasIsVirtual returns a boolean if a field has been set.

func (*ProductCreateProductRequestV2) HasMaxSaleableQuantity

func (o *ProductCreateProductRequestV2) HasMaxSaleableQuantity() bool

HasMaxSaleableQuantity returns a boolean if a field has been set.

func (*ProductCreateProductRequestV2) HasMediaVariantAttributes

func (o *ProductCreateProductRequestV2) HasMediaVariantAttributes() bool

HasMediaVariantAttributes returns a boolean if a field has been set.

func (*ProductCreateProductRequestV2) HasTenantId

func (o *ProductCreateProductRequestV2) HasTenantId() bool

HasTenantId returns a boolean if a field has been set.

func (*ProductCreateProductRequestV2) HasUrlKey

func (o *ProductCreateProductRequestV2) HasUrlKey() bool

HasUrlKey returns a boolean if a field has been set.

func (*ProductCreateProductRequestV2) HasVariantAttributes

func (o *ProductCreateProductRequestV2) HasVariantAttributes() bool

HasVariantAttributes returns a boolean if a field has been set.

func (*ProductCreateProductRequestV2) HasVariants

func (o *ProductCreateProductRequestV2) HasVariants() bool

HasVariants returns a boolean if a field has been set.

func (ProductCreateProductRequestV2) MarshalJSON

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

func (*ProductCreateProductRequestV2) SetAttributes

func (o *ProductCreateProductRequestV2) SetAttributes(v map[string]ProtobufAny)

SetAttributes gets a reference to the given map[string]ProtobufAny and assigns it to the Attributes field.

func (*ProductCreateProductRequestV2) SetCode

func (o *ProductCreateProductRequestV2) SetCode(v string)

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

func (*ProductCreateProductRequestV2) SetEntityCode

func (o *ProductCreateProductRequestV2) SetEntityCode(v string)

SetEntityCode gets a reference to the given string and assigns it to the EntityCode field.

func (*ProductCreateProductRequestV2) SetEntityType

func (o *ProductCreateProductRequestV2) SetEntityType(v string)

SetEntityType gets a reference to the given string and assigns it to the EntityType field.

func (*ProductCreateProductRequestV2) SetHasConfigurator

func (o *ProductCreateProductRequestV2) SetHasConfigurator(v bool)

SetHasConfigurator gets a reference to the given bool and assigns it to the HasConfigurator field.

func (*ProductCreateProductRequestV2) SetIsConfigurable

func (o *ProductCreateProductRequestV2) SetIsConfigurable(v bool)

SetIsConfigurable gets a reference to the given bool and assigns it to the IsConfigurable field.

func (*ProductCreateProductRequestV2) SetIsGiftcard

func (o *ProductCreateProductRequestV2) SetIsGiftcard(v bool)

SetIsGiftcard gets a reference to the given bool and assigns it to the IsGiftcard field.

func (*ProductCreateProductRequestV2) SetIsVirtual

func (o *ProductCreateProductRequestV2) SetIsVirtual(v bool)

SetIsVirtual gets a reference to the given bool and assigns it to the IsVirtual field.

func (*ProductCreateProductRequestV2) SetMaxSaleableQuantity

func (o *ProductCreateProductRequestV2) SetMaxSaleableQuantity(v int64)

SetMaxSaleableQuantity gets a reference to the given int64 and assigns it to the MaxSaleableQuantity field.

func (*ProductCreateProductRequestV2) SetMediaVariantAttributes

func (o *ProductCreateProductRequestV2) SetMediaVariantAttributes(v []string)

SetMediaVariantAttributes gets a reference to the given []string and assigns it to the MediaVariantAttributes field.

func (*ProductCreateProductRequestV2) SetTenantId

func (o *ProductCreateProductRequestV2) SetTenantId(v string)

SetTenantId gets a reference to the given string and assigns it to the TenantId field.

func (*ProductCreateProductRequestV2) SetUrlKey

SetUrlKey gets a reference to the given ProductLocalizedText and assigns it to the UrlKey field.

func (*ProductCreateProductRequestV2) SetVariantAttributes

func (o *ProductCreateProductRequestV2) SetVariantAttributes(v []string)

SetVariantAttributes gets a reference to the given []string and assigns it to the VariantAttributes field.

func (*ProductCreateProductRequestV2) SetVariants

SetVariants gets a reference to the given map[string]ProductProductVariant and assigns it to the Variants field.

func (ProductCreateProductRequestV2) ToMap

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

type ProductCreateProductResponse

type ProductCreateProductResponse struct {
	Success         *bool                           `json:"success,omitempty"`
	Id              *string                         `json:"id,omitempty"`
	ProductErrors   []ProductProductResponseError   `json:"productErrors,omitempty"`
	AttributeErrors []ProductAttributeResponseError `json:"attributeErrors,omitempty"`
}

ProductCreateProductResponse struct for ProductCreateProductResponse

func NewProductCreateProductResponse

func NewProductCreateProductResponse() *ProductCreateProductResponse

NewProductCreateProductResponse instantiates a new ProductCreateProductResponse 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 NewProductCreateProductResponseWithDefaults

func NewProductCreateProductResponseWithDefaults() *ProductCreateProductResponse

NewProductCreateProductResponseWithDefaults instantiates a new ProductCreateProductResponse 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 (*ProductCreateProductResponse) GetAttributeErrors

GetAttributeErrors returns the AttributeErrors field value if set, zero value otherwise.

func (*ProductCreateProductResponse) GetAttributeErrorsOk

func (o *ProductCreateProductResponse) GetAttributeErrorsOk() ([]ProductAttributeResponseError, bool)

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

func (*ProductCreateProductResponse) GetId

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

func (*ProductCreateProductResponse) GetIdOk

func (o *ProductCreateProductResponse) GetIdOk() (*string, 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 (*ProductCreateProductResponse) GetProductErrors

GetProductErrors returns the ProductErrors field value if set, zero value otherwise.

func (*ProductCreateProductResponse) GetProductErrorsOk

func (o *ProductCreateProductResponse) GetProductErrorsOk() ([]ProductProductResponseError, bool)

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

func (*ProductCreateProductResponse) GetSuccess

func (o *ProductCreateProductResponse) GetSuccess() bool

GetSuccess returns the Success field value if set, zero value otherwise.

func (*ProductCreateProductResponse) GetSuccessOk

func (o *ProductCreateProductResponse) GetSuccessOk() (*bool, bool)

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

func (*ProductCreateProductResponse) HasAttributeErrors

func (o *ProductCreateProductResponse) HasAttributeErrors() bool

HasAttributeErrors returns a boolean if a field has been set.

func (*ProductCreateProductResponse) HasId

HasId returns a boolean if a field has been set.

func (*ProductCreateProductResponse) HasProductErrors

func (o *ProductCreateProductResponse) HasProductErrors() bool

HasProductErrors returns a boolean if a field has been set.

func (*ProductCreateProductResponse) HasSuccess

func (o *ProductCreateProductResponse) HasSuccess() bool

HasSuccess returns a boolean if a field has been set.

func (ProductCreateProductResponse) MarshalJSON

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

func (*ProductCreateProductResponse) SetAttributeErrors

SetAttributeErrors gets a reference to the given []ProductAttributeResponseError and assigns it to the AttributeErrors field.

func (*ProductCreateProductResponse) SetId

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

func (*ProductCreateProductResponse) SetProductErrors

SetProductErrors gets a reference to the given []ProductProductResponseError and assigns it to the ProductErrors field.

func (*ProductCreateProductResponse) SetSuccess

func (o *ProductCreateProductResponse) SetSuccess(v bool)

SetSuccess gets a reference to the given bool and assigns it to the Success field.

func (ProductCreateProductResponse) ToMap

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

type ProductCreateProductResponseV2

type ProductCreateProductResponseV2 struct {
	Id *string `json:"id,omitempty"`
}

ProductCreateProductResponseV2 struct for ProductCreateProductResponseV2

func NewProductCreateProductResponseV2

func NewProductCreateProductResponseV2() *ProductCreateProductResponseV2

NewProductCreateProductResponseV2 instantiates a new ProductCreateProductResponseV2 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 NewProductCreateProductResponseV2WithDefaults

func NewProductCreateProductResponseV2WithDefaults() *ProductCreateProductResponseV2

NewProductCreateProductResponseV2WithDefaults instantiates a new ProductCreateProductResponseV2 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 (*ProductCreateProductResponseV2) GetId

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

func (*ProductCreateProductResponseV2) GetIdOk

func (o *ProductCreateProductResponseV2) GetIdOk() (*string, 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 (*ProductCreateProductResponseV2) HasId

HasId returns a boolean if a field has been set.

func (ProductCreateProductResponseV2) MarshalJSON

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

func (*ProductCreateProductResponseV2) SetId

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

func (ProductCreateProductResponseV2) ToMap

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

type ProductDeleteProductRequest

type ProductDeleteProductRequest struct {
	TenantId *string `json:"tenantId,omitempty"`
	Id       *string `json:"id,omitempty"`
}

ProductDeleteProductRequest struct for ProductDeleteProductRequest

func NewProductDeleteProductRequest

func NewProductDeleteProductRequest() *ProductDeleteProductRequest

NewProductDeleteProductRequest instantiates a new ProductDeleteProductRequest 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 NewProductDeleteProductRequestWithDefaults

func NewProductDeleteProductRequestWithDefaults() *ProductDeleteProductRequest

NewProductDeleteProductRequestWithDefaults instantiates a new ProductDeleteProductRequest 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 (*ProductDeleteProductRequest) GetId

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

func (*ProductDeleteProductRequest) GetIdOk

func (o *ProductDeleteProductRequest) GetIdOk() (*string, 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 (*ProductDeleteProductRequest) GetTenantId

func (o *ProductDeleteProductRequest) GetTenantId() string

GetTenantId returns the TenantId field value if set, zero value otherwise.

func (*ProductDeleteProductRequest) GetTenantIdOk

func (o *ProductDeleteProductRequest) GetTenantIdOk() (*string, bool)

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

func (*ProductDeleteProductRequest) HasId

func (o *ProductDeleteProductRequest) HasId() bool

HasId returns a boolean if a field has been set.

func (*ProductDeleteProductRequest) HasTenantId

func (o *ProductDeleteProductRequest) HasTenantId() bool

HasTenantId returns a boolean if a field has been set.

func (ProductDeleteProductRequest) MarshalJSON

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

func (*ProductDeleteProductRequest) SetId

func (o *ProductDeleteProductRequest) SetId(v string)

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

func (*ProductDeleteProductRequest) SetTenantId

func (o *ProductDeleteProductRequest) SetTenantId(v string)

SetTenantId gets a reference to the given string and assigns it to the TenantId field.

func (ProductDeleteProductRequest) ToMap

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

type ProductDeleteRequest

type ProductDeleteRequest struct {
	Product *ProductProductEntity `json:"product,omitempty"`
}

ProductDeleteRequest struct for ProductDeleteRequest

func NewProductDeleteRequest

func NewProductDeleteRequest() *ProductDeleteRequest

NewProductDeleteRequest instantiates a new ProductDeleteRequest 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 NewProductDeleteRequestWithDefaults

func NewProductDeleteRequestWithDefaults() *ProductDeleteRequest

NewProductDeleteRequestWithDefaults instantiates a new ProductDeleteRequest 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 (*ProductDeleteRequest) GetProduct

GetProduct returns the Product field value if set, zero value otherwise.

func (*ProductDeleteRequest) GetProductOk

func (o *ProductDeleteRequest) GetProductOk() (*ProductProductEntity, bool)

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

func (*ProductDeleteRequest) HasProduct

func (o *ProductDeleteRequest) HasProduct() bool

HasProduct returns a boolean if a field has been set.

func (ProductDeleteRequest) MarshalJSON

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

func (*ProductDeleteRequest) SetProduct

func (o *ProductDeleteRequest) SetProduct(v ProductProductEntity)

SetProduct gets a reference to the given ProductProductEntity and assigns it to the Product field.

func (ProductDeleteRequest) ToMap

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

type ProductDeleteResponse

type ProductDeleteResponse struct {
	Success *bool `json:"success,omitempty"`
}

ProductDeleteResponse struct for ProductDeleteResponse

func NewProductDeleteResponse

func NewProductDeleteResponse() *ProductDeleteResponse

NewProductDeleteResponse instantiates a new ProductDeleteResponse 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 NewProductDeleteResponseWithDefaults

func NewProductDeleteResponseWithDefaults() *ProductDeleteResponse

NewProductDeleteResponseWithDefaults instantiates a new ProductDeleteResponse 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 (*ProductDeleteResponse) GetSuccess

func (o *ProductDeleteResponse) GetSuccess() bool

GetSuccess returns the Success field value if set, zero value otherwise.

func (*ProductDeleteResponse) GetSuccessOk

func (o *ProductDeleteResponse) GetSuccessOk() (*bool, bool)

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

func (*ProductDeleteResponse) HasSuccess

func (o *ProductDeleteResponse) HasSuccess() bool

HasSuccess returns a boolean if a field has been set.

func (ProductDeleteResponse) MarshalJSON

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

func (*ProductDeleteResponse) SetSuccess

func (o *ProductDeleteResponse) SetSuccess(v bool)

SetSuccess gets a reference to the given bool and assigns it to the Success field.

func (ProductDeleteResponse) ToMap

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

type ProductFieldMask

type ProductFieldMask struct {
	Paths []string `json:"paths,omitempty"`
}

ProductFieldMask struct for ProductFieldMask

func NewProductFieldMask

func NewProductFieldMask() *ProductFieldMask

NewProductFieldMask instantiates a new ProductFieldMask 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 NewProductFieldMaskWithDefaults

func NewProductFieldMaskWithDefaults() *ProductFieldMask

NewProductFieldMaskWithDefaults instantiates a new ProductFieldMask 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 (*ProductFieldMask) GetPaths

func (o *ProductFieldMask) GetPaths() []string

GetPaths returns the Paths field value if set, zero value otherwise.

func (*ProductFieldMask) GetPathsOk

func (o *ProductFieldMask) GetPathsOk() ([]string, bool)

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

func (*ProductFieldMask) HasPaths

func (o *ProductFieldMask) HasPaths() bool

HasPaths returns a boolean if a field has been set.

func (ProductFieldMask) MarshalJSON

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

func (*ProductFieldMask) SetPaths

func (o *ProductFieldMask) SetPaths(v []string)

SetPaths gets a reference to the given []string and assigns it to the Paths field.

func (ProductFieldMask) ToMap

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

type ProductGetProductByCodeRequest

type ProductGetProductByCodeRequest struct {
	TenantId *string `json:"tenantId,omitempty"`
	Code     *string `json:"code,omitempty"`
}

ProductGetProductByCodeRequest struct for ProductGetProductByCodeRequest

func NewProductGetProductByCodeRequest

func NewProductGetProductByCodeRequest() *ProductGetProductByCodeRequest

NewProductGetProductByCodeRequest instantiates a new ProductGetProductByCodeRequest 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 NewProductGetProductByCodeRequestWithDefaults

func NewProductGetProductByCodeRequestWithDefaults() *ProductGetProductByCodeRequest

NewProductGetProductByCodeRequestWithDefaults instantiates a new ProductGetProductByCodeRequest 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 (*ProductGetProductByCodeRequest) GetCode

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

func (*ProductGetProductByCodeRequest) GetCodeOk

func (o *ProductGetProductByCodeRequest) 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 (*ProductGetProductByCodeRequest) GetTenantId

func (o *ProductGetProductByCodeRequest) GetTenantId() string

GetTenantId returns the TenantId field value if set, zero value otherwise.

func (*ProductGetProductByCodeRequest) GetTenantIdOk

func (o *ProductGetProductByCodeRequest) GetTenantIdOk() (*string, bool)

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

func (*ProductGetProductByCodeRequest) HasCode

func (o *ProductGetProductByCodeRequest) HasCode() bool

HasCode returns a boolean if a field has been set.

func (*ProductGetProductByCodeRequest) HasTenantId

func (o *ProductGetProductByCodeRequest) HasTenantId() bool

HasTenantId returns a boolean if a field has been set.

func (ProductGetProductByCodeRequest) MarshalJSON

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

func (*ProductGetProductByCodeRequest) SetCode

func (o *ProductGetProductByCodeRequest) SetCode(v string)

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

func (*ProductGetProductByCodeRequest) SetTenantId

func (o *ProductGetProductByCodeRequest) SetTenantId(v string)

SetTenantId gets a reference to the given string and assigns it to the TenantId field.

func (ProductGetProductByCodeRequest) ToMap

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

type ProductGetProductByCodeResponse

type ProductGetProductByCodeResponse struct {
	Product *ProductProductEntity `json:"product,omitempty"`
}

ProductGetProductByCodeResponse struct for ProductGetProductByCodeResponse

func NewProductGetProductByCodeResponse

func NewProductGetProductByCodeResponse() *ProductGetProductByCodeResponse

NewProductGetProductByCodeResponse instantiates a new ProductGetProductByCodeResponse 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 NewProductGetProductByCodeResponseWithDefaults

func NewProductGetProductByCodeResponseWithDefaults() *ProductGetProductByCodeResponse

NewProductGetProductByCodeResponseWithDefaults instantiates a new ProductGetProductByCodeResponse 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 (*ProductGetProductByCodeResponse) GetProduct

GetProduct returns the Product field value if set, zero value otherwise.

func (*ProductGetProductByCodeResponse) GetProductOk

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

func (*ProductGetProductByCodeResponse) HasProduct

func (o *ProductGetProductByCodeResponse) HasProduct() bool

HasProduct returns a boolean if a field has been set.

func (ProductGetProductByCodeResponse) MarshalJSON

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

func (*ProductGetProductByCodeResponse) SetProduct

SetProduct gets a reference to the given ProductProductEntity and assigns it to the Product field.

func (ProductGetProductByCodeResponse) ToMap

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

type ProductGetProductByUrlKeyRequest

type ProductGetProductByUrlKeyRequest struct {
	TenantId *string `json:"tenantId,omitempty"`
	UrlKey   *string `json:"urlKey,omitempty"`
	Locale   *string `json:"locale,omitempty"`
}

ProductGetProductByUrlKeyRequest struct for ProductGetProductByUrlKeyRequest

func NewProductGetProductByUrlKeyRequest

func NewProductGetProductByUrlKeyRequest() *ProductGetProductByUrlKeyRequest

NewProductGetProductByUrlKeyRequest instantiates a new ProductGetProductByUrlKeyRequest 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 NewProductGetProductByUrlKeyRequestWithDefaults

func NewProductGetProductByUrlKeyRequestWithDefaults() *ProductGetProductByUrlKeyRequest

NewProductGetProductByUrlKeyRequestWithDefaults instantiates a new ProductGetProductByUrlKeyRequest 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 (*ProductGetProductByUrlKeyRequest) GetLocale

GetLocale returns the Locale field value if set, zero value otherwise.

func (*ProductGetProductByUrlKeyRequest) GetLocaleOk

func (o *ProductGetProductByUrlKeyRequest) GetLocaleOk() (*string, bool)

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

func (*ProductGetProductByUrlKeyRequest) GetTenantId

func (o *ProductGetProductByUrlKeyRequest) GetTenantId() string

GetTenantId returns the TenantId field value if set, zero value otherwise.

func (*ProductGetProductByUrlKeyRequest) GetTenantIdOk

func (o *ProductGetProductByUrlKeyRequest) GetTenantIdOk() (*string, bool)

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

func (*ProductGetProductByUrlKeyRequest) GetUrlKey

GetUrlKey returns the UrlKey field value if set, zero value otherwise.

func (*ProductGetProductByUrlKeyRequest) GetUrlKeyOk

func (o *ProductGetProductByUrlKeyRequest) GetUrlKeyOk() (*string, bool)

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

func (*ProductGetProductByUrlKeyRequest) HasLocale

func (o *ProductGetProductByUrlKeyRequest) HasLocale() bool

HasLocale returns a boolean if a field has been set.

func (*ProductGetProductByUrlKeyRequest) HasTenantId

func (o *ProductGetProductByUrlKeyRequest) HasTenantId() bool

HasTenantId returns a boolean if a field has been set.

func (*ProductGetProductByUrlKeyRequest) HasUrlKey

func (o *ProductGetProductByUrlKeyRequest) HasUrlKey() bool

HasUrlKey returns a boolean if a field has been set.

func (ProductGetProductByUrlKeyRequest) MarshalJSON

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

func (*ProductGetProductByUrlKeyRequest) SetLocale

func (o *ProductGetProductByUrlKeyRequest) SetLocale(v string)

SetLocale gets a reference to the given string and assigns it to the Locale field.

func (*ProductGetProductByUrlKeyRequest) SetTenantId

func (o *ProductGetProductByUrlKeyRequest) SetTenantId(v string)

SetTenantId gets a reference to the given string and assigns it to the TenantId field.

func (*ProductGetProductByUrlKeyRequest) SetUrlKey

func (o *ProductGetProductByUrlKeyRequest) SetUrlKey(v string)

SetUrlKey gets a reference to the given string and assigns it to the UrlKey field.

func (ProductGetProductByUrlKeyRequest) ToMap

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

type ProductGetProductByUrlKeyResponse

type ProductGetProductByUrlKeyResponse struct {
	Product *ProductProductEntity `json:"product,omitempty"`
}

ProductGetProductByUrlKeyResponse struct for ProductGetProductByUrlKeyResponse

func NewProductGetProductByUrlKeyResponse

func NewProductGetProductByUrlKeyResponse() *ProductGetProductByUrlKeyResponse

NewProductGetProductByUrlKeyResponse instantiates a new ProductGetProductByUrlKeyResponse 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 NewProductGetProductByUrlKeyResponseWithDefaults

func NewProductGetProductByUrlKeyResponseWithDefaults() *ProductGetProductByUrlKeyResponse

NewProductGetProductByUrlKeyResponseWithDefaults instantiates a new ProductGetProductByUrlKeyResponse 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 (*ProductGetProductByUrlKeyResponse) GetProduct

GetProduct returns the Product field value if set, zero value otherwise.

func (*ProductGetProductByUrlKeyResponse) GetProductOk

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

func (*ProductGetProductByUrlKeyResponse) HasProduct

func (o *ProductGetProductByUrlKeyResponse) HasProduct() bool

HasProduct returns a boolean if a field has been set.

func (ProductGetProductByUrlKeyResponse) MarshalJSON

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

func (*ProductGetProductByUrlKeyResponse) SetProduct

SetProduct gets a reference to the given ProductProductEntity and assigns it to the Product field.

func (ProductGetProductByUrlKeyResponse) ToMap

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

type ProductGetProductRequest

type ProductGetProductRequest struct {
	TenantId *string `json:"tenantId,omitempty"`
	Id       *string `json:"id,omitempty"`
}

ProductGetProductRequest struct for ProductGetProductRequest

func NewProductGetProductRequest

func NewProductGetProductRequest() *ProductGetProductRequest

NewProductGetProductRequest instantiates a new ProductGetProductRequest 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 NewProductGetProductRequestWithDefaults

func NewProductGetProductRequestWithDefaults() *ProductGetProductRequest

NewProductGetProductRequestWithDefaults instantiates a new ProductGetProductRequest 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 (*ProductGetProductRequest) GetId

func (o *ProductGetProductRequest) GetId() string

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

func (*ProductGetProductRequest) GetIdOk

func (o *ProductGetProductRequest) GetIdOk() (*string, 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 (*ProductGetProductRequest) GetTenantId

func (o *ProductGetProductRequest) GetTenantId() string

GetTenantId returns the TenantId field value if set, zero value otherwise.

func (*ProductGetProductRequest) GetTenantIdOk

func (o *ProductGetProductRequest) GetTenantIdOk() (*string, bool)

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

func (*ProductGetProductRequest) HasId

func (o *ProductGetProductRequest) HasId() bool

HasId returns a boolean if a field has been set.

func (*ProductGetProductRequest) HasTenantId

func (o *ProductGetProductRequest) HasTenantId() bool

HasTenantId returns a boolean if a field has been set.

func (ProductGetProductRequest) MarshalJSON

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

func (*ProductGetProductRequest) SetId

func (o *ProductGetProductRequest) SetId(v string)

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

func (*ProductGetProductRequest) SetTenantId

func (o *ProductGetProductRequest) SetTenantId(v string)

SetTenantId gets a reference to the given string and assigns it to the TenantId field.

func (ProductGetProductRequest) ToMap

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

type ProductGetProductResponse

type ProductGetProductResponse struct {
	Product *ProductProductEntity `json:"product,omitempty"`
}

ProductGetProductResponse struct for ProductGetProductResponse

func NewProductGetProductResponse

func NewProductGetProductResponse() *ProductGetProductResponse

NewProductGetProductResponse instantiates a new ProductGetProductResponse 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 NewProductGetProductResponseWithDefaults

func NewProductGetProductResponseWithDefaults() *ProductGetProductResponse

NewProductGetProductResponseWithDefaults instantiates a new ProductGetProductResponse 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 (*ProductGetProductResponse) GetProduct

GetProduct returns the Product field value if set, zero value otherwise.

func (*ProductGetProductResponse) GetProductOk

func (o *ProductGetProductResponse) GetProductOk() (*ProductProductEntity, bool)

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

func (*ProductGetProductResponse) HasProduct

func (o *ProductGetProductResponse) HasProduct() bool

HasProduct returns a boolean if a field has been set.

func (ProductGetProductResponse) MarshalJSON

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

func (*ProductGetProductResponse) SetProduct

SetProduct gets a reference to the given ProductProductEntity and assigns it to the Product field.

func (ProductGetProductResponse) ToMap

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

type ProductListProductsByIdsRequest

type ProductListProductsByIdsRequest struct {
	TenantId *string  `json:"tenantId,omitempty"`
	Ids      []string `json:"ids,omitempty"`
}

ProductListProductsByIdsRequest struct for ProductListProductsByIdsRequest

func NewProductListProductsByIdsRequest

func NewProductListProductsByIdsRequest() *ProductListProductsByIdsRequest

NewProductListProductsByIdsRequest instantiates a new ProductListProductsByIdsRequest 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 NewProductListProductsByIdsRequestWithDefaults

func NewProductListProductsByIdsRequestWithDefaults() *ProductListProductsByIdsRequest

NewProductListProductsByIdsRequestWithDefaults instantiates a new ProductListProductsByIdsRequest 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 (*ProductListProductsByIdsRequest) GetIds

GetIds returns the Ids field value if set, zero value otherwise.

func (*ProductListProductsByIdsRequest) GetIdsOk

func (o *ProductListProductsByIdsRequest) GetIdsOk() ([]string, bool)

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

func (*ProductListProductsByIdsRequest) GetTenantId

func (o *ProductListProductsByIdsRequest) GetTenantId() string

GetTenantId returns the TenantId field value if set, zero value otherwise.

func (*ProductListProductsByIdsRequest) GetTenantIdOk

func (o *ProductListProductsByIdsRequest) GetTenantIdOk() (*string, bool)

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

func (*ProductListProductsByIdsRequest) HasIds

HasIds returns a boolean if a field has been set.

func (*ProductListProductsByIdsRequest) HasTenantId

func (o *ProductListProductsByIdsRequest) HasTenantId() bool

HasTenantId returns a boolean if a field has been set.

func (ProductListProductsByIdsRequest) MarshalJSON

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

func (*ProductListProductsByIdsRequest) SetIds

func (o *ProductListProductsByIdsRequest) SetIds(v []string)

SetIds gets a reference to the given []string and assigns it to the Ids field.

func (*ProductListProductsByIdsRequest) SetTenantId

func (o *ProductListProductsByIdsRequest) SetTenantId(v string)

SetTenantId gets a reference to the given string and assigns it to the TenantId field.

func (ProductListProductsByIdsRequest) ToMap

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

type ProductListProductsByIdsResponse

type ProductListProductsByIdsResponse struct {
	Products []ProductProductEntity `json:"products,omitempty"`
}

ProductListProductsByIdsResponse struct for ProductListProductsByIdsResponse

func NewProductListProductsByIdsResponse

func NewProductListProductsByIdsResponse() *ProductListProductsByIdsResponse

NewProductListProductsByIdsResponse instantiates a new ProductListProductsByIdsResponse 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 NewProductListProductsByIdsResponseWithDefaults

func NewProductListProductsByIdsResponseWithDefaults() *ProductListProductsByIdsResponse

NewProductListProductsByIdsResponseWithDefaults instantiates a new ProductListProductsByIdsResponse 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 (*ProductListProductsByIdsResponse) GetProducts

GetProducts returns the Products field value if set, zero value otherwise.

func (*ProductListProductsByIdsResponse) GetProductsOk

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

func (*ProductListProductsByIdsResponse) HasProducts

func (o *ProductListProductsByIdsResponse) HasProducts() bool

HasProducts returns a boolean if a field has been set.

func (ProductListProductsByIdsResponse) MarshalJSON

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

func (*ProductListProductsByIdsResponse) SetProducts

SetProducts gets a reference to the given []ProductProductEntity and assigns it to the Products field.

func (ProductListProductsByIdsResponse) ToMap

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

type ProductListProductsBySkuRequest

type ProductListProductsBySkuRequest struct {
	TenantId *string `json:"tenantId,omitempty"`
	Sku      *string `json:"sku,omitempty"`
}

ProductListProductsBySkuRequest struct for ProductListProductsBySkuRequest

func NewProductListProductsBySkuRequest

func NewProductListProductsBySkuRequest() *ProductListProductsBySkuRequest

NewProductListProductsBySkuRequest instantiates a new ProductListProductsBySkuRequest 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 NewProductListProductsBySkuRequestWithDefaults

func NewProductListProductsBySkuRequestWithDefaults() *ProductListProductsBySkuRequest

NewProductListProductsBySkuRequestWithDefaults instantiates a new ProductListProductsBySkuRequest 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 (*ProductListProductsBySkuRequest) GetSku

GetSku returns the Sku field value if set, zero value otherwise.

func (*ProductListProductsBySkuRequest) GetSkuOk

func (o *ProductListProductsBySkuRequest) GetSkuOk() (*string, bool)

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 (*ProductListProductsBySkuRequest) GetTenantId

func (o *ProductListProductsBySkuRequest) GetTenantId() string

GetTenantId returns the TenantId field value if set, zero value otherwise.

func (*ProductListProductsBySkuRequest) GetTenantIdOk

func (o *ProductListProductsBySkuRequest) GetTenantIdOk() (*string, bool)

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

func (*ProductListProductsBySkuRequest) HasSku

HasSku returns a boolean if a field has been set.

func (*ProductListProductsBySkuRequest) HasTenantId

func (o *ProductListProductsBySkuRequest) HasTenantId() bool

HasTenantId returns a boolean if a field has been set.

func (ProductListProductsBySkuRequest) MarshalJSON

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

func (*ProductListProductsBySkuRequest) SetSku

SetSku gets a reference to the given string and assigns it to the Sku field.

func (*ProductListProductsBySkuRequest) SetTenantId

func (o *ProductListProductsBySkuRequest) SetTenantId(v string)

SetTenantId gets a reference to the given string and assigns it to the TenantId field.

func (ProductListProductsBySkuRequest) ToMap

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

type ProductListProductsBySkuResponse

type ProductListProductsBySkuResponse struct {
	Products []ProductProductEntity `json:"products,omitempty"`
}

ProductListProductsBySkuResponse struct for ProductListProductsBySkuResponse

func NewProductListProductsBySkuResponse

func NewProductListProductsBySkuResponse() *ProductListProductsBySkuResponse

NewProductListProductsBySkuResponse instantiates a new ProductListProductsBySkuResponse 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 NewProductListProductsBySkuResponseWithDefaults

func NewProductListProductsBySkuResponseWithDefaults() *ProductListProductsBySkuResponse

NewProductListProductsBySkuResponseWithDefaults instantiates a new ProductListProductsBySkuResponse 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 (*ProductListProductsBySkuResponse) GetProducts

GetProducts returns the Products field value if set, zero value otherwise.

func (*ProductListProductsBySkuResponse) GetProductsOk

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

func (*ProductListProductsBySkuResponse) HasProducts

func (o *ProductListProductsBySkuResponse) HasProducts() bool

HasProducts returns a boolean if a field has been set.

func (ProductListProductsBySkuResponse) MarshalJSON

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

func (*ProductListProductsBySkuResponse) SetProducts

SetProducts gets a reference to the given []ProductProductEntity and assigns it to the Products field.

func (ProductListProductsBySkuResponse) ToMap

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

type ProductListProductsRequest

type ProductListProductsRequest struct {
	TenantId   *string                    `json:"tenantId,omitempty"`
	PageSize   *string                    `json:"pageSize,omitempty"`
	PageToken  *string                    `json:"pageToken,omitempty"`
	Filter     *ListProductsRequestFilter `json:"filter,omitempty"`
	FilterMask *string                    `json:"filterMask,omitempty"`
}

ProductListProductsRequest struct for ProductListProductsRequest

func NewProductListProductsRequest

func NewProductListProductsRequest() *ProductListProductsRequest

NewProductListProductsRequest instantiates a new ProductListProductsRequest 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 NewProductListProductsRequestWithDefaults

func NewProductListProductsRequestWithDefaults() *ProductListProductsRequest

NewProductListProductsRequestWithDefaults instantiates a new ProductListProductsRequest 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 (*ProductListProductsRequest) GetFilter

GetFilter returns the Filter field value if set, zero value otherwise.

func (*ProductListProductsRequest) GetFilterMask

func (o *ProductListProductsRequest) GetFilterMask() string

GetFilterMask returns the FilterMask field value if set, zero value otherwise.

func (*ProductListProductsRequest) GetFilterMaskOk

func (o *ProductListProductsRequest) GetFilterMaskOk() (*string, bool)

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

func (*ProductListProductsRequest) 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 (*ProductListProductsRequest) GetPageSize

func (o *ProductListProductsRequest) GetPageSize() string

GetPageSize returns the PageSize field value if set, zero value otherwise.

func (*ProductListProductsRequest) GetPageSizeOk

func (o *ProductListProductsRequest) GetPageSizeOk() (*string, bool)

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

func (*ProductListProductsRequest) GetPageToken

func (o *ProductListProductsRequest) GetPageToken() string

GetPageToken returns the PageToken field value if set, zero value otherwise.

func (*ProductListProductsRequest) GetPageTokenOk

func (o *ProductListProductsRequest) GetPageTokenOk() (*string, bool)

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

func (*ProductListProductsRequest) GetTenantId

func (o *ProductListProductsRequest) GetTenantId() string

GetTenantId returns the TenantId field value if set, zero value otherwise.

func (*ProductListProductsRequest) GetTenantIdOk

func (o *ProductListProductsRequest) GetTenantIdOk() (*string, bool)

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

func (*ProductListProductsRequest) HasFilter

func (o *ProductListProductsRequest) HasFilter() bool

HasFilter returns a boolean if a field has been set.

func (*ProductListProductsRequest) HasFilterMask

func (o *ProductListProductsRequest) HasFilterMask() bool

HasFilterMask returns a boolean if a field has been set.

func (*ProductListProductsRequest) HasPageSize

func (o *ProductListProductsRequest) HasPageSize() bool

HasPageSize returns a boolean if a field has been set.

func (*ProductListProductsRequest) HasPageToken

func (o *ProductListProductsRequest) HasPageToken() bool

HasPageToken returns a boolean if a field has been set.

func (*ProductListProductsRequest) HasTenantId

func (o *ProductListProductsRequest) HasTenantId() bool

HasTenantId returns a boolean if a field has been set.

func (ProductListProductsRequest) MarshalJSON

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

func (*ProductListProductsRequest) SetFilter

SetFilter gets a reference to the given ListProductsRequestFilter and assigns it to the Filter field.

func (*ProductListProductsRequest) SetFilterMask

func (o *ProductListProductsRequest) SetFilterMask(v string)

SetFilterMask gets a reference to the given string and assigns it to the FilterMask field.

func (*ProductListProductsRequest) SetPageSize

func (o *ProductListProductsRequest) SetPageSize(v string)

SetPageSize gets a reference to the given string and assigns it to the PageSize field.

func (*ProductListProductsRequest) SetPageToken

func (o *ProductListProductsRequest) SetPageToken(v string)

SetPageToken gets a reference to the given string and assigns it to the PageToken field.

func (*ProductListProductsRequest) SetTenantId

func (o *ProductListProductsRequest) SetTenantId(v string)

SetTenantId gets a reference to the given string and assigns it to the TenantId field.

func (ProductListProductsRequest) ToMap

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

type ProductListProductsResponse

type ProductListProductsResponse struct {
	Products      []ProductProductEntity `json:"products,omitempty"`
	NextPageToken *string                `json:"nextPageToken,omitempty"`
}

ProductListProductsResponse struct for ProductListProductsResponse

func NewProductListProductsResponse

func NewProductListProductsResponse() *ProductListProductsResponse

NewProductListProductsResponse instantiates a new ProductListProductsResponse 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 NewProductListProductsResponseWithDefaults

func NewProductListProductsResponseWithDefaults() *ProductListProductsResponse

NewProductListProductsResponseWithDefaults instantiates a new ProductListProductsResponse 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 (*ProductListProductsResponse) GetNextPageToken

func (o *ProductListProductsResponse) GetNextPageToken() string

GetNextPageToken returns the NextPageToken field value if set, zero value otherwise.

func (*ProductListProductsResponse) GetNextPageTokenOk

func (o *ProductListProductsResponse) GetNextPageTokenOk() (*string, bool)

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

func (*ProductListProductsResponse) GetProducts

GetProducts returns the Products field value if set, zero value otherwise.

func (*ProductListProductsResponse) GetProductsOk

func (o *ProductListProductsResponse) GetProductsOk() ([]ProductProductEntity, bool)

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

func (*ProductListProductsResponse) HasNextPageToken

func (o *ProductListProductsResponse) HasNextPageToken() bool

HasNextPageToken returns a boolean if a field has been set.

func (*ProductListProductsResponse) HasProducts

func (o *ProductListProductsResponse) HasProducts() bool

HasProducts returns a boolean if a field has been set.

func (ProductListProductsResponse) MarshalJSON

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

func (*ProductListProductsResponse) SetNextPageToken

func (o *ProductListProductsResponse) SetNextPageToken(v string)

SetNextPageToken gets a reference to the given string and assigns it to the NextPageToken field.

func (*ProductListProductsResponse) SetProducts

SetProducts gets a reference to the given []ProductProductEntity and assigns it to the Products field.

func (ProductListProductsResponse) ToMap

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

type ProductListVariantsBySkuRequest

type ProductListVariantsBySkuRequest struct {
	TenantId *string `json:"tenantId,omitempty"`
	Sku      *string `json:"sku,omitempty"`
}

ProductListVariantsBySkuRequest struct for ProductListVariantsBySkuRequest

func NewProductListVariantsBySkuRequest

func NewProductListVariantsBySkuRequest() *ProductListVariantsBySkuRequest

NewProductListVariantsBySkuRequest instantiates a new ProductListVariantsBySkuRequest 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 NewProductListVariantsBySkuRequestWithDefaults

func NewProductListVariantsBySkuRequestWithDefaults() *ProductListVariantsBySkuRequest

NewProductListVariantsBySkuRequestWithDefaults instantiates a new ProductListVariantsBySkuRequest 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 (*ProductListVariantsBySkuRequest) GetSku

GetSku returns the Sku field value if set, zero value otherwise.

func (*ProductListVariantsBySkuRequest) GetSkuOk

func (o *ProductListVariantsBySkuRequest) GetSkuOk() (*string, bool)

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 (*ProductListVariantsBySkuRequest) GetTenantId

func (o *ProductListVariantsBySkuRequest) GetTenantId() string

GetTenantId returns the TenantId field value if set, zero value otherwise.

func (*ProductListVariantsBySkuRequest) GetTenantIdOk

func (o *ProductListVariantsBySkuRequest) GetTenantIdOk() (*string, bool)

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

func (*ProductListVariantsBySkuRequest) HasSku

HasSku returns a boolean if a field has been set.

func (*ProductListVariantsBySkuRequest) HasTenantId

func (o *ProductListVariantsBySkuRequest) HasTenantId() bool

HasTenantId returns a boolean if a field has been set.

func (ProductListVariantsBySkuRequest) MarshalJSON

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

func (*ProductListVariantsBySkuRequest) SetSku

SetSku gets a reference to the given string and assigns it to the Sku field.

func (*ProductListVariantsBySkuRequest) SetTenantId

func (o *ProductListVariantsBySkuRequest) SetTenantId(v string)

SetTenantId gets a reference to the given string and assigns it to the TenantId field.

func (ProductListVariantsBySkuRequest) ToMap

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

type ProductListVariantsBySkuResponse

type ProductListVariantsBySkuResponse struct {
	Variants []ProductProductVariant `json:"variants,omitempty"`
}

ProductListVariantsBySkuResponse struct for ProductListVariantsBySkuResponse

func NewProductListVariantsBySkuResponse

func NewProductListVariantsBySkuResponse() *ProductListVariantsBySkuResponse

NewProductListVariantsBySkuResponse instantiates a new ProductListVariantsBySkuResponse 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 NewProductListVariantsBySkuResponseWithDefaults

func NewProductListVariantsBySkuResponseWithDefaults() *ProductListVariantsBySkuResponse

NewProductListVariantsBySkuResponseWithDefaults instantiates a new ProductListVariantsBySkuResponse 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 (*ProductListVariantsBySkuResponse) GetVariants

GetVariants returns the Variants field value if set, zero value otherwise.

func (*ProductListVariantsBySkuResponse) GetVariantsOk

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

func (*ProductListVariantsBySkuResponse) HasVariants

func (o *ProductListVariantsBySkuResponse) HasVariants() bool

HasVariants returns a boolean if a field has been set.

func (ProductListVariantsBySkuResponse) MarshalJSON

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

func (*ProductListVariantsBySkuResponse) SetVariants

SetVariants gets a reference to the given []ProductProductVariant and assigns it to the Variants field.

func (ProductListVariantsBySkuResponse) ToMap

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

type ProductLocalizedAsset

type ProductLocalizedAsset struct {
	Value *map[string]string `json:"value,omitempty"`
}

ProductLocalizedAsset struct for ProductLocalizedAsset

func NewProductLocalizedAsset

func NewProductLocalizedAsset() *ProductLocalizedAsset

NewProductLocalizedAsset instantiates a new ProductLocalizedAsset 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 NewProductLocalizedAssetWithDefaults

func NewProductLocalizedAssetWithDefaults() *ProductLocalizedAsset

NewProductLocalizedAssetWithDefaults instantiates a new ProductLocalizedAsset 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 (*ProductLocalizedAsset) GetValue

func (o *ProductLocalizedAsset) GetValue() map[string]string

GetValue returns the Value field value if set, zero value otherwise.

func (*ProductLocalizedAsset) GetValueOk

func (o *ProductLocalizedAsset) GetValueOk() (*map[string]string, 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.

func (*ProductLocalizedAsset) HasValue

func (o *ProductLocalizedAsset) HasValue() bool

HasValue returns a boolean if a field has been set.

func (ProductLocalizedAsset) MarshalJSON

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

func (*ProductLocalizedAsset) SetValue

func (o *ProductLocalizedAsset) SetValue(v map[string]string)

SetValue gets a reference to the given map[string]string and assigns it to the Value field.

func (ProductLocalizedAsset) ToMap

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

type ProductLocalizedText

type ProductLocalizedText struct {
	Value *map[string]string `json:"value,omitempty"`
}

ProductLocalizedText struct for ProductLocalizedText

func NewProductLocalizedText

func NewProductLocalizedText() *ProductLocalizedText

NewProductLocalizedText instantiates a new ProductLocalizedText 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 NewProductLocalizedTextWithDefaults

func NewProductLocalizedTextWithDefaults() *ProductLocalizedText

NewProductLocalizedTextWithDefaults instantiates a new ProductLocalizedText 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 (*ProductLocalizedText) GetValue

func (o *ProductLocalizedText) GetValue() map[string]string

GetValue returns the Value field value if set, zero value otherwise.

func (*ProductLocalizedText) GetValueOk

func (o *ProductLocalizedText) GetValueOk() (*map[string]string, 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.

func (*ProductLocalizedText) HasValue

func (o *ProductLocalizedText) HasValue() bool

HasValue returns a boolean if a field has been set.

func (ProductLocalizedText) MarshalJSON

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

func (*ProductLocalizedText) SetValue

func (o *ProductLocalizedText) SetValue(v map[string]string)

SetValue gets a reference to the given map[string]string and assigns it to the Value field.

func (ProductLocalizedText) ToMap

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

type ProductMediaGallery

type ProductMediaGallery struct {
	Entries []ProductMediaGalleryEntry `json:"entries,omitempty"`
}

ProductMediaGallery struct for ProductMediaGallery

func NewProductMediaGallery

func NewProductMediaGallery() *ProductMediaGallery

NewProductMediaGallery instantiates a new ProductMediaGallery 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 NewProductMediaGalleryWithDefaults

func NewProductMediaGalleryWithDefaults() *ProductMediaGallery

NewProductMediaGalleryWithDefaults instantiates a new ProductMediaGallery 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 (*ProductMediaGallery) GetEntries

GetEntries returns the Entries field value if set, zero value otherwise.

func (*ProductMediaGallery) GetEntriesOk

func (o *ProductMediaGallery) GetEntriesOk() ([]ProductMediaGalleryEntry, bool)

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

func (*ProductMediaGallery) HasEntries

func (o *ProductMediaGallery) HasEntries() bool

HasEntries returns a boolean if a field has been set.

func (ProductMediaGallery) MarshalJSON

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

func (*ProductMediaGallery) SetEntries

func (o *ProductMediaGallery) SetEntries(v []ProductMediaGalleryEntry)

SetEntries gets a reference to the given []ProductMediaGalleryEntry and assigns it to the Entries field.

func (ProductMediaGallery) ToMap

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

type ProductMediaGalleryEntry

type ProductMediaGalleryEntry struct {
	Id       *string                            `json:"id,omitempty"`
	AssetGrn *string                            `json:"assetGrn,omitempty"`
	Position *int64                             `json:"position,omitempty"`
	Metadata []ProductMediaGalleryEntryMetadata `json:"metadata,omitempty"`
}

ProductMediaGalleryEntry struct for ProductMediaGalleryEntry

func NewProductMediaGalleryEntry

func NewProductMediaGalleryEntry() *ProductMediaGalleryEntry

NewProductMediaGalleryEntry instantiates a new ProductMediaGalleryEntry 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 NewProductMediaGalleryEntryWithDefaults

func NewProductMediaGalleryEntryWithDefaults() *ProductMediaGalleryEntry

NewProductMediaGalleryEntryWithDefaults instantiates a new ProductMediaGalleryEntry 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 (*ProductMediaGalleryEntry) GetAssetGrn

func (o *ProductMediaGalleryEntry) GetAssetGrn() string

GetAssetGrn returns the AssetGrn field value if set, zero value otherwise.

func (*ProductMediaGalleryEntry) GetAssetGrnOk

func (o *ProductMediaGalleryEntry) GetAssetGrnOk() (*string, bool)

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

func (*ProductMediaGalleryEntry) GetId

func (o *ProductMediaGalleryEntry) GetId() string

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

func (*ProductMediaGalleryEntry) GetIdOk

func (o *ProductMediaGalleryEntry) GetIdOk() (*string, 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 (*ProductMediaGalleryEntry) GetMetadata

GetMetadata returns the Metadata field value if set, zero value otherwise.

func (*ProductMediaGalleryEntry) GetMetadataOk

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

func (*ProductMediaGalleryEntry) GetPosition

func (o *ProductMediaGalleryEntry) GetPosition() int64

GetPosition returns the Position field value if set, zero value otherwise.

func (*ProductMediaGalleryEntry) GetPositionOk

func (o *ProductMediaGalleryEntry) GetPositionOk() (*int64, bool)

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

func (*ProductMediaGalleryEntry) HasAssetGrn

func (o *ProductMediaGalleryEntry) HasAssetGrn() bool

HasAssetGrn returns a boolean if a field has been set.

func (*ProductMediaGalleryEntry) HasId

func (o *ProductMediaGalleryEntry) HasId() bool

HasId returns a boolean if a field has been set.

func (*ProductMediaGalleryEntry) HasMetadata

func (o *ProductMediaGalleryEntry) HasMetadata() bool

HasMetadata returns a boolean if a field has been set.

func (*ProductMediaGalleryEntry) HasPosition

func (o *ProductMediaGalleryEntry) HasPosition() bool

HasPosition returns a boolean if a field has been set.

func (ProductMediaGalleryEntry) MarshalJSON

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

func (*ProductMediaGalleryEntry) SetAssetGrn

func (o *ProductMediaGalleryEntry) SetAssetGrn(v string)

SetAssetGrn gets a reference to the given string and assigns it to the AssetGrn field.

func (*ProductMediaGalleryEntry) SetId

func (o *ProductMediaGalleryEntry) SetId(v string)

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

func (*ProductMediaGalleryEntry) SetMetadata

SetMetadata gets a reference to the given []ProductMediaGalleryEntryMetadata and assigns it to the Metadata field.

func (*ProductMediaGalleryEntry) SetPosition

func (o *ProductMediaGalleryEntry) SetPosition(v int64)

SetPosition gets a reference to the given int64 and assigns it to the Position field.

func (ProductMediaGalleryEntry) ToMap

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

type ProductMediaGalleryEntryMetadata

type ProductMediaGalleryEntryMetadata struct {
	Roles []string              `json:"roles,omitempty"`
	Alt   *ProductLocalizedText `json:"alt,omitempty"`
}

ProductMediaGalleryEntryMetadata struct for ProductMediaGalleryEntryMetadata

func NewProductMediaGalleryEntryMetadata

func NewProductMediaGalleryEntryMetadata() *ProductMediaGalleryEntryMetadata

NewProductMediaGalleryEntryMetadata instantiates a new ProductMediaGalleryEntryMetadata 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 NewProductMediaGalleryEntryMetadataWithDefaults

func NewProductMediaGalleryEntryMetadataWithDefaults() *ProductMediaGalleryEntryMetadata

NewProductMediaGalleryEntryMetadataWithDefaults instantiates a new ProductMediaGalleryEntryMetadata 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 (*ProductMediaGalleryEntryMetadata) GetAlt

GetAlt returns the Alt field value if set, zero value otherwise.

func (*ProductMediaGalleryEntryMetadata) GetAltOk

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

func (*ProductMediaGalleryEntryMetadata) GetRoles

func (o *ProductMediaGalleryEntryMetadata) GetRoles() []string

GetRoles returns the Roles field value if set, zero value otherwise.

func (*ProductMediaGalleryEntryMetadata) GetRolesOk

func (o *ProductMediaGalleryEntryMetadata) GetRolesOk() ([]string, bool)

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

func (*ProductMediaGalleryEntryMetadata) HasAlt

HasAlt returns a boolean if a field has been set.

func (*ProductMediaGalleryEntryMetadata) HasRoles

func (o *ProductMediaGalleryEntryMetadata) HasRoles() bool

HasRoles returns a boolean if a field has been set.

func (ProductMediaGalleryEntryMetadata) MarshalJSON

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

func (*ProductMediaGalleryEntryMetadata) SetAlt

SetAlt gets a reference to the given ProductLocalizedText and assigns it to the Alt field.

func (*ProductMediaGalleryEntryMetadata) SetRoles

func (o *ProductMediaGalleryEntryMetadata) SetRoles(v []string)

SetRoles gets a reference to the given []string and assigns it to the Roles field.

func (ProductMediaGalleryEntryMetadata) ToMap

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

type ProductProductEntity

type ProductProductEntity struct {
	TenantId               *string                           `json:"tenantId,omitempty"`
	Grn                    *string                           `json:"grn,omitempty"`
	EntityType             *string                           `json:"entityType,omitempty"`
	EntityCode             *string                           `json:"entityCode,omitempty"`
	Id                     *string                           `json:"id,omitempty"`
	Code                   *string                           `json:"code,omitempty"`
	VariantAttributes      []string                          `json:"variantAttributes,omitempty"`
	IsConfigurable         *bool                             `json:"isConfigurable,omitempty"`
	IsVirtual              *bool                             `json:"isVirtual,omitempty"`
	IsGiftcard             *bool                             `json:"isGiftcard,omitempty"`
	HasConfigurator        *bool                             `json:"hasConfigurator,omitempty"`
	UrlKey                 *ProductLocalizedText             `json:"urlKey,omitempty"`
	MediaVariantAttributes []string                          `json:"mediaVariantAttributes,omitempty"`
	Attributes             *map[string]ProtobufAny           `json:"attributes,omitempty"`
	Variants               *map[string]ProductProductVariant `json:"variants,omitempty"`
	MediaGallery           *ProductMediaGallery              `json:"mediaGallery,omitempty"`
	MaxSaleableQuantity    *int64                            `json:"maxSaleableQuantity,omitempty"`
	Assets                 *ProductAssets                    `json:"assets,omitempty"`
	CreatedAt              *string                           `json:"createdAt,omitempty"`
	UpdatedAt              *string                           `json:"updatedAt,omitempty"`
}

ProductProductEntity struct for ProductProductEntity

func NewProductProductEntity

func NewProductProductEntity() *ProductProductEntity

NewProductProductEntity instantiates a new ProductProductEntity 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 NewProductProductEntityWithDefaults

func NewProductProductEntityWithDefaults() *ProductProductEntity

NewProductProductEntityWithDefaults instantiates a new ProductProductEntity 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 (*ProductProductEntity) GetAssets

func (o *ProductProductEntity) GetAssets() ProductAssets

GetAssets returns the Assets field value if set, zero value otherwise.

func (*ProductProductEntity) GetAssetsOk

func (o *ProductProductEntity) GetAssetsOk() (*ProductAssets, bool)

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

func (*ProductProductEntity) GetAttributes

func (o *ProductProductEntity) GetAttributes() map[string]ProtobufAny

GetAttributes returns the Attributes field value if set, zero value otherwise.

func (*ProductProductEntity) GetAttributesOk

func (o *ProductProductEntity) GetAttributesOk() (*map[string]ProtobufAny, bool)

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

func (*ProductProductEntity) GetCode

func (o *ProductProductEntity) GetCode() string

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

func (*ProductProductEntity) GetCodeOk

func (o *ProductProductEntity) 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 (*ProductProductEntity) GetCreatedAt

func (o *ProductProductEntity) GetCreatedAt() string

GetCreatedAt returns the CreatedAt field value if set, zero value otherwise.

func (*ProductProductEntity) GetCreatedAtOk

func (o *ProductProductEntity) GetCreatedAtOk() (*string, bool)

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 (*ProductProductEntity) GetEntityCode

func (o *ProductProductEntity) GetEntityCode() string

GetEntityCode returns the EntityCode field value if set, zero value otherwise.

func (*ProductProductEntity) GetEntityCodeOk

func (o *ProductProductEntity) GetEntityCodeOk() (*string, bool)

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

func (*ProductProductEntity) GetEntityType

func (o *ProductProductEntity) GetEntityType() string

GetEntityType returns the EntityType field value if set, zero value otherwise.

func (*ProductProductEntity) GetEntityTypeOk

func (o *ProductProductEntity) GetEntityTypeOk() (*string, bool)

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

func (*ProductProductEntity) GetGrn

func (o *ProductProductEntity) GetGrn() string

GetGrn returns the Grn field value if set, zero value otherwise.

func (*ProductProductEntity) GetGrnOk

func (o *ProductProductEntity) GetGrnOk() (*string, bool)

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

func (*ProductProductEntity) GetHasConfigurator

func (o *ProductProductEntity) GetHasConfigurator() bool

GetHasConfigurator returns the HasConfigurator field value if set, zero value otherwise.

func (*ProductProductEntity) GetHasConfiguratorOk

func (o *ProductProductEntity) GetHasConfiguratorOk() (*bool, bool)

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

func (*ProductProductEntity) GetId

func (o *ProductProductEntity) GetId() string

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

func (*ProductProductEntity) GetIdOk

func (o *ProductProductEntity) GetIdOk() (*string, 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 (*ProductProductEntity) GetIsConfigurable

func (o *ProductProductEntity) GetIsConfigurable() bool

GetIsConfigurable returns the IsConfigurable field value if set, zero value otherwise.

func (*ProductProductEntity) GetIsConfigurableOk

func (o *ProductProductEntity) GetIsConfigurableOk() (*bool, bool)

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

func (*ProductProductEntity) GetIsGiftcard

func (o *ProductProductEntity) GetIsGiftcard() bool

GetIsGiftcard returns the IsGiftcard field value if set, zero value otherwise.

func (*ProductProductEntity) GetIsGiftcardOk

func (o *ProductProductEntity) GetIsGiftcardOk() (*bool, bool)

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

func (*ProductProductEntity) GetIsVirtual

func (o *ProductProductEntity) GetIsVirtual() bool

GetIsVirtual returns the IsVirtual field value if set, zero value otherwise.

func (*ProductProductEntity) GetIsVirtualOk

func (o *ProductProductEntity) GetIsVirtualOk() (*bool, bool)

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

func (*ProductProductEntity) GetMaxSaleableQuantity

func (o *ProductProductEntity) GetMaxSaleableQuantity() int64

GetMaxSaleableQuantity returns the MaxSaleableQuantity field value if set, zero value otherwise.

func (*ProductProductEntity) GetMaxSaleableQuantityOk

func (o *ProductProductEntity) GetMaxSaleableQuantityOk() (*int64, bool)

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

func (*ProductProductEntity) GetMediaGallery

func (o *ProductProductEntity) GetMediaGallery() ProductMediaGallery

GetMediaGallery returns the MediaGallery field value if set, zero value otherwise.

func (*ProductProductEntity) GetMediaGalleryOk

func (o *ProductProductEntity) GetMediaGalleryOk() (*ProductMediaGallery, bool)

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

func (*ProductProductEntity) GetMediaVariantAttributes

func (o *ProductProductEntity) GetMediaVariantAttributes() []string

GetMediaVariantAttributes returns the MediaVariantAttributes field value if set, zero value otherwise.

func (*ProductProductEntity) GetMediaVariantAttributesOk

func (o *ProductProductEntity) GetMediaVariantAttributesOk() ([]string, bool)

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

func (*ProductProductEntity) GetTenantId

func (o *ProductProductEntity) GetTenantId() string

GetTenantId returns the TenantId field value if set, zero value otherwise.

func (*ProductProductEntity) GetTenantIdOk

func (o *ProductProductEntity) GetTenantIdOk() (*string, bool)

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

func (*ProductProductEntity) GetUpdatedAt

func (o *ProductProductEntity) GetUpdatedAt() string

GetUpdatedAt returns the UpdatedAt field value if set, zero value otherwise.

func (*ProductProductEntity) GetUpdatedAtOk

func (o *ProductProductEntity) 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 (*ProductProductEntity) GetUrlKey

GetUrlKey returns the UrlKey field value if set, zero value otherwise.

func (*ProductProductEntity) GetUrlKeyOk

func (o *ProductProductEntity) GetUrlKeyOk() (*ProductLocalizedText, bool)

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

func (*ProductProductEntity) GetVariantAttributes

func (o *ProductProductEntity) GetVariantAttributes() []string

GetVariantAttributes returns the VariantAttributes field value if set, zero value otherwise.

func (*ProductProductEntity) GetVariantAttributesOk

func (o *ProductProductEntity) GetVariantAttributesOk() ([]string, bool)

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

func (*ProductProductEntity) GetVariants

func (o *ProductProductEntity) GetVariants() map[string]ProductProductVariant

GetVariants returns the Variants field value if set, zero value otherwise.

func (*ProductProductEntity) GetVariantsOk

func (o *ProductProductEntity) GetVariantsOk() (*map[string]ProductProductVariant, bool)

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

func (*ProductProductEntity) HasAssets

func (o *ProductProductEntity) HasAssets() bool

HasAssets returns a boolean if a field has been set.

func (*ProductProductEntity) HasAttributes

func (o *ProductProductEntity) HasAttributes() bool

HasAttributes returns a boolean if a field has been set.

func (*ProductProductEntity) HasCode

func (o *ProductProductEntity) HasCode() bool

HasCode returns a boolean if a field has been set.

func (*ProductProductEntity) HasCreatedAt

func (o *ProductProductEntity) HasCreatedAt() bool

HasCreatedAt returns a boolean if a field has been set.

func (*ProductProductEntity) HasEntityCode

func (o *ProductProductEntity) HasEntityCode() bool

HasEntityCode returns a boolean if a field has been set.

func (*ProductProductEntity) HasEntityType

func (o *ProductProductEntity) HasEntityType() bool

HasEntityType returns a boolean if a field has been set.

func (*ProductProductEntity) HasGrn

func (o *ProductProductEntity) HasGrn() bool

HasGrn returns a boolean if a field has been set.

func (*ProductProductEntity) HasHasConfigurator

func (o *ProductProductEntity) HasHasConfigurator() bool

HasHasConfigurator returns a boolean if a field has been set.

func (*ProductProductEntity) HasId

func (o *ProductProductEntity) HasId() bool

HasId returns a boolean if a field has been set.

func (*ProductProductEntity) HasIsConfigurable

func (o *ProductProductEntity) HasIsConfigurable() bool

HasIsConfigurable returns a boolean if a field has been set.

func (*ProductProductEntity) HasIsGiftcard

func (o *ProductProductEntity) HasIsGiftcard() bool

HasIsGiftcard returns a boolean if a field has been set.

func (*ProductProductEntity) HasIsVirtual

func (o *ProductProductEntity) HasIsVirtual() bool

HasIsVirtual returns a boolean if a field has been set.

func (*ProductProductEntity) HasMaxSaleableQuantity

func (o *ProductProductEntity) HasMaxSaleableQuantity() bool

HasMaxSaleableQuantity returns a boolean if a field has been set.

func (*ProductProductEntity) HasMediaGallery

func (o *ProductProductEntity) HasMediaGallery() bool

HasMediaGallery returns a boolean if a field has been set.

func (*ProductProductEntity) HasMediaVariantAttributes

func (o *ProductProductEntity) HasMediaVariantAttributes() bool

HasMediaVariantAttributes returns a boolean if a field has been set.

func (*ProductProductEntity) HasTenantId

func (o *ProductProductEntity) HasTenantId() bool

HasTenantId returns a boolean if a field has been set.

func (*ProductProductEntity) HasUpdatedAt

func (o *ProductProductEntity) HasUpdatedAt() bool

HasUpdatedAt returns a boolean if a field has been set.

func (*ProductProductEntity) HasUrlKey

func (o *ProductProductEntity) HasUrlKey() bool

HasUrlKey returns a boolean if a field has been set.

func (*ProductProductEntity) HasVariantAttributes

func (o *ProductProductEntity) HasVariantAttributes() bool

HasVariantAttributes returns a boolean if a field has been set.

func (*ProductProductEntity) HasVariants

func (o *ProductProductEntity) HasVariants() bool

HasVariants returns a boolean if a field has been set.

func (ProductProductEntity) MarshalJSON

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

func (*ProductProductEntity) SetAssets

func (o *ProductProductEntity) SetAssets(v ProductAssets)

SetAssets gets a reference to the given ProductAssets and assigns it to the Assets field.

func (*ProductProductEntity) SetAttributes

func (o *ProductProductEntity) SetAttributes(v map[string]ProtobufAny)

SetAttributes gets a reference to the given map[string]ProtobufAny and assigns it to the Attributes field.

func (*ProductProductEntity) SetCode

func (o *ProductProductEntity) SetCode(v string)

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

func (*ProductProductEntity) SetCreatedAt

func (o *ProductProductEntity) SetCreatedAt(v string)

SetCreatedAt gets a reference to the given string and assigns it to the CreatedAt field.

func (*ProductProductEntity) SetEntityCode

func (o *ProductProductEntity) SetEntityCode(v string)

SetEntityCode gets a reference to the given string and assigns it to the EntityCode field.

func (*ProductProductEntity) SetEntityType

func (o *ProductProductEntity) SetEntityType(v string)

SetEntityType gets a reference to the given string and assigns it to the EntityType field.

func (*ProductProductEntity) SetGrn

func (o *ProductProductEntity) SetGrn(v string)

SetGrn gets a reference to the given string and assigns it to the Grn field.

func (*ProductProductEntity) SetHasConfigurator

func (o *ProductProductEntity) SetHasConfigurator(v bool)

SetHasConfigurator gets a reference to the given bool and assigns it to the HasConfigurator field.

func (*ProductProductEntity) SetId

func (o *ProductProductEntity) SetId(v string)

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

func (*ProductProductEntity) SetIsConfigurable

func (o *ProductProductEntity) SetIsConfigurable(v bool)

SetIsConfigurable gets a reference to the given bool and assigns it to the IsConfigurable field.

func (*ProductProductEntity) SetIsGiftcard

func (o *ProductProductEntity) SetIsGiftcard(v bool)

SetIsGiftcard gets a reference to the given bool and assigns it to the IsGiftcard field.

func (*ProductProductEntity) SetIsVirtual

func (o *ProductProductEntity) SetIsVirtual(v bool)

SetIsVirtual gets a reference to the given bool and assigns it to the IsVirtual field.

func (*ProductProductEntity) SetMaxSaleableQuantity

func (o *ProductProductEntity) SetMaxSaleableQuantity(v int64)

SetMaxSaleableQuantity gets a reference to the given int64 and assigns it to the MaxSaleableQuantity field.

func (*ProductProductEntity) SetMediaGallery

func (o *ProductProductEntity) SetMediaGallery(v ProductMediaGallery)

SetMediaGallery gets a reference to the given ProductMediaGallery and assigns it to the MediaGallery field.

func (*ProductProductEntity) SetMediaVariantAttributes

func (o *ProductProductEntity) SetMediaVariantAttributes(v []string)

SetMediaVariantAttributes gets a reference to the given []string and assigns it to the MediaVariantAttributes field.

func (*ProductProductEntity) SetTenantId

func (o *ProductProductEntity) SetTenantId(v string)

SetTenantId gets a reference to the given string and assigns it to the TenantId field.

func (*ProductProductEntity) SetUpdatedAt

func (o *ProductProductEntity) SetUpdatedAt(v string)

SetUpdatedAt gets a reference to the given string and assigns it to the UpdatedAt field.

func (*ProductProductEntity) SetUrlKey

SetUrlKey gets a reference to the given ProductLocalizedText and assigns it to the UrlKey field.

func (*ProductProductEntity) SetVariantAttributes

func (o *ProductProductEntity) SetVariantAttributes(v []string)

SetVariantAttributes gets a reference to the given []string and assigns it to the VariantAttributes field.

func (*ProductProductEntity) SetVariants

func (o *ProductProductEntity) SetVariants(v map[string]ProductProductVariant)

SetVariants gets a reference to the given map[string]ProductProductVariant and assigns it to the Variants field.

func (ProductProductEntity) ToMap

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

type ProductProductResponseError

type ProductProductResponseError struct {
	Code    *string `json:"code,omitempty"`
	Message *string `json:"message,omitempty"`
}

ProductProductResponseError struct for ProductProductResponseError

func NewProductProductResponseError

func NewProductProductResponseError() *ProductProductResponseError

NewProductProductResponseError instantiates a new ProductProductResponseError 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 NewProductProductResponseErrorWithDefaults

func NewProductProductResponseErrorWithDefaults() *ProductProductResponseError

NewProductProductResponseErrorWithDefaults instantiates a new ProductProductResponseError 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 (*ProductProductResponseError) GetCode

func (o *ProductProductResponseError) GetCode() string

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

func (*ProductProductResponseError) GetCodeOk

func (o *ProductProductResponseError) 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 (*ProductProductResponseError) GetMessage

func (o *ProductProductResponseError) GetMessage() string

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

func (*ProductProductResponseError) GetMessageOk

func (o *ProductProductResponseError) 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 (*ProductProductResponseError) HasCode

func (o *ProductProductResponseError) HasCode() bool

HasCode returns a boolean if a field has been set.

func (*ProductProductResponseError) HasMessage

func (o *ProductProductResponseError) HasMessage() bool

HasMessage returns a boolean if a field has been set.

func (ProductProductResponseError) MarshalJSON

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

func (*ProductProductResponseError) SetCode

func (o *ProductProductResponseError) SetCode(v string)

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

func (*ProductProductResponseError) SetMessage

func (o *ProductProductResponseError) SetMessage(v string)

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

func (ProductProductResponseError) ToMap

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

type ProductProductVariant

type ProductProductVariant struct {
	Id                  *string                 `json:"id,omitempty"`
	Grn                 *string                 `json:"grn,omitempty"`
	MaxSaleableQuantity *int64                  `json:"maxSaleableQuantity,omitempty"`
	Attributes          *map[string]ProtobufAny `json:"attributes,omitempty"`
}

ProductProductVariant struct for ProductProductVariant

func NewProductProductVariant

func NewProductProductVariant() *ProductProductVariant

NewProductProductVariant instantiates a new ProductProductVariant 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 NewProductProductVariantWithDefaults

func NewProductProductVariantWithDefaults() *ProductProductVariant

NewProductProductVariantWithDefaults instantiates a new ProductProductVariant 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 (*ProductProductVariant) GetAttributes

func (o *ProductProductVariant) GetAttributes() map[string]ProtobufAny

GetAttributes returns the Attributes field value if set, zero value otherwise.

func (*ProductProductVariant) GetAttributesOk

func (o *ProductProductVariant) GetAttributesOk() (*map[string]ProtobufAny, bool)

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

func (*ProductProductVariant) GetGrn

func (o *ProductProductVariant) GetGrn() string

GetGrn returns the Grn field value if set, zero value otherwise.

func (*ProductProductVariant) GetGrnOk

func (o *ProductProductVariant) GetGrnOk() (*string, bool)

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

func (*ProductProductVariant) GetId

func (o *ProductProductVariant) GetId() string

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

func (*ProductProductVariant) GetIdOk

func (o *ProductProductVariant) GetIdOk() (*string, 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 (*ProductProductVariant) GetMaxSaleableQuantity

func (o *ProductProductVariant) GetMaxSaleableQuantity() int64

GetMaxSaleableQuantity returns the MaxSaleableQuantity field value if set, zero value otherwise.

func (*ProductProductVariant) GetMaxSaleableQuantityOk

func (o *ProductProductVariant) GetMaxSaleableQuantityOk() (*int64, bool)

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

func (*ProductProductVariant) HasAttributes

func (o *ProductProductVariant) HasAttributes() bool

HasAttributes returns a boolean if a field has been set.

func (*ProductProductVariant) HasGrn

func (o *ProductProductVariant) HasGrn() bool

HasGrn returns a boolean if a field has been set.

func (*ProductProductVariant) HasId

func (o *ProductProductVariant) HasId() bool

HasId returns a boolean if a field has been set.

func (*ProductProductVariant) HasMaxSaleableQuantity

func (o *ProductProductVariant) HasMaxSaleableQuantity() bool

HasMaxSaleableQuantity returns a boolean if a field has been set.

func (ProductProductVariant) MarshalJSON

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

func (*ProductProductVariant) SetAttributes

func (o *ProductProductVariant) SetAttributes(v map[string]ProtobufAny)

SetAttributes gets a reference to the given map[string]ProtobufAny and assigns it to the Attributes field.

func (*ProductProductVariant) SetGrn

func (o *ProductProductVariant) SetGrn(v string)

SetGrn gets a reference to the given string and assigns it to the Grn field.

func (*ProductProductVariant) SetId

func (o *ProductProductVariant) SetId(v string)

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

func (*ProductProductVariant) SetMaxSaleableQuantity

func (o *ProductProductVariant) SetMaxSaleableQuantity(v int64)

SetMaxSaleableQuantity gets a reference to the given int64 and assigns it to the MaxSaleableQuantity field.

func (ProductProductVariant) ToMap

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

type ProductRemoveMediaGalleryEntryRequest

type ProductRemoveMediaGalleryEntryRequest struct {
	TenantId  *string `json:"tenantId,omitempty"`
	ProductId *string `json:"productId,omitempty"`
	Id        *string `json:"id,omitempty"`
}

ProductRemoveMediaGalleryEntryRequest struct for ProductRemoveMediaGalleryEntryRequest

func NewProductRemoveMediaGalleryEntryRequest

func NewProductRemoveMediaGalleryEntryRequest() *ProductRemoveMediaGalleryEntryRequest

NewProductRemoveMediaGalleryEntryRequest instantiates a new ProductRemoveMediaGalleryEntryRequest 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 NewProductRemoveMediaGalleryEntryRequestWithDefaults

func NewProductRemoveMediaGalleryEntryRequestWithDefaults() *ProductRemoveMediaGalleryEntryRequest

NewProductRemoveMediaGalleryEntryRequestWithDefaults instantiates a new ProductRemoveMediaGalleryEntryRequest 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 (*ProductRemoveMediaGalleryEntryRequest) GetId

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

func (*ProductRemoveMediaGalleryEntryRequest) 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 (*ProductRemoveMediaGalleryEntryRequest) GetProductId

GetProductId returns the ProductId field value if set, zero value otherwise.

func (*ProductRemoveMediaGalleryEntryRequest) GetProductIdOk

func (o *ProductRemoveMediaGalleryEntryRequest) GetProductIdOk() (*string, bool)

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

func (*ProductRemoveMediaGalleryEntryRequest) GetTenantId

GetTenantId returns the TenantId field value if set, zero value otherwise.

func (*ProductRemoveMediaGalleryEntryRequest) GetTenantIdOk

func (o *ProductRemoveMediaGalleryEntryRequest) GetTenantIdOk() (*string, bool)

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

func (*ProductRemoveMediaGalleryEntryRequest) HasId

HasId returns a boolean if a field has been set.

func (*ProductRemoveMediaGalleryEntryRequest) HasProductId

func (o *ProductRemoveMediaGalleryEntryRequest) HasProductId() bool

HasProductId returns a boolean if a field has been set.

func (*ProductRemoveMediaGalleryEntryRequest) HasTenantId

HasTenantId returns a boolean if a field has been set.

func (ProductRemoveMediaGalleryEntryRequest) MarshalJSON

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

func (*ProductRemoveMediaGalleryEntryRequest) SetId

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

func (*ProductRemoveMediaGalleryEntryRequest) SetProductId

func (o *ProductRemoveMediaGalleryEntryRequest) SetProductId(v string)

SetProductId gets a reference to the given string and assigns it to the ProductId field.

func (*ProductRemoveMediaGalleryEntryRequest) SetTenantId

SetTenantId gets a reference to the given string and assigns it to the TenantId field.

func (ProductRemoveMediaGalleryEntryRequest) ToMap

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

type ProductUpdateAssetEntryPayload

type ProductUpdateAssetEntryPayload struct {
	AssetGrn          *string                      `json:"assetGrn,omitempty"`
	LocalizedAssetGrn *ProductLocalizedAsset       `json:"localizedAssetGrn,omitempty"`
	Position          *int64                       `json:"position,omitempty"`
	Metadata          []ProductAssetsEntryMetadata `json:"metadata,omitempty"`
}

ProductUpdateAssetEntryPayload struct for ProductUpdateAssetEntryPayload

func NewProductUpdateAssetEntryPayload

func NewProductUpdateAssetEntryPayload() *ProductUpdateAssetEntryPayload

NewProductUpdateAssetEntryPayload instantiates a new ProductUpdateAssetEntryPayload 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 NewProductUpdateAssetEntryPayloadWithDefaults

func NewProductUpdateAssetEntryPayloadWithDefaults() *ProductUpdateAssetEntryPayload

NewProductUpdateAssetEntryPayloadWithDefaults instantiates a new ProductUpdateAssetEntryPayload 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 (*ProductUpdateAssetEntryPayload) GetAssetGrn

func (o *ProductUpdateAssetEntryPayload) GetAssetGrn() string

GetAssetGrn returns the AssetGrn field value if set, zero value otherwise.

func (*ProductUpdateAssetEntryPayload) GetAssetGrnOk

func (o *ProductUpdateAssetEntryPayload) GetAssetGrnOk() (*string, bool)

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

func (*ProductUpdateAssetEntryPayload) GetLocalizedAssetGrn

func (o *ProductUpdateAssetEntryPayload) GetLocalizedAssetGrn() ProductLocalizedAsset

GetLocalizedAssetGrn returns the LocalizedAssetGrn field value if set, zero value otherwise.

func (*ProductUpdateAssetEntryPayload) GetLocalizedAssetGrnOk

func (o *ProductUpdateAssetEntryPayload) GetLocalizedAssetGrnOk() (*ProductLocalizedAsset, bool)

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

func (*ProductUpdateAssetEntryPayload) GetMetadata

GetMetadata returns the Metadata field value if set, zero value otherwise.

func (*ProductUpdateAssetEntryPayload) GetMetadataOk

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

func (*ProductUpdateAssetEntryPayload) GetPosition

func (o *ProductUpdateAssetEntryPayload) GetPosition() int64

GetPosition returns the Position field value if set, zero value otherwise.

func (*ProductUpdateAssetEntryPayload) GetPositionOk

func (o *ProductUpdateAssetEntryPayload) GetPositionOk() (*int64, bool)

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

func (*ProductUpdateAssetEntryPayload) HasAssetGrn

func (o *ProductUpdateAssetEntryPayload) HasAssetGrn() bool

HasAssetGrn returns a boolean if a field has been set.

func (*ProductUpdateAssetEntryPayload) HasLocalizedAssetGrn

func (o *ProductUpdateAssetEntryPayload) HasLocalizedAssetGrn() bool

HasLocalizedAssetGrn returns a boolean if a field has been set.

func (*ProductUpdateAssetEntryPayload) HasMetadata

func (o *ProductUpdateAssetEntryPayload) HasMetadata() bool

HasMetadata returns a boolean if a field has been set.

func (*ProductUpdateAssetEntryPayload) HasPosition

func (o *ProductUpdateAssetEntryPayload) HasPosition() bool

HasPosition returns a boolean if a field has been set.

func (ProductUpdateAssetEntryPayload) MarshalJSON

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

func (*ProductUpdateAssetEntryPayload) SetAssetGrn

func (o *ProductUpdateAssetEntryPayload) SetAssetGrn(v string)

SetAssetGrn gets a reference to the given string and assigns it to the AssetGrn field.

func (*ProductUpdateAssetEntryPayload) SetLocalizedAssetGrn

func (o *ProductUpdateAssetEntryPayload) SetLocalizedAssetGrn(v ProductLocalizedAsset)

SetLocalizedAssetGrn gets a reference to the given ProductLocalizedAsset and assigns it to the LocalizedAssetGrn field.

func (*ProductUpdateAssetEntryPayload) SetMetadata

SetMetadata gets a reference to the given []ProductAssetsEntryMetadata and assigns it to the Metadata field.

func (*ProductUpdateAssetEntryPayload) SetPosition

func (o *ProductUpdateAssetEntryPayload) SetPosition(v int64)

SetPosition gets a reference to the given int64 and assigns it to the Position field.

func (ProductUpdateAssetEntryPayload) ToMap

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

type ProductUpdateMediaGalleryEntryRequest

type ProductUpdateMediaGalleryEntryRequest struct {
	TenantId  *string                            `json:"tenantId,omitempty"`
	ProductId *string                            `json:"productId,omitempty"`
	Id        *string                            `json:"id,omitempty"`
	AssetGrn  *string                            `json:"assetGrn,omitempty"`
	Position  *int64                             `json:"position,omitempty"`
	Metadata  []ProductMediaGalleryEntryMetadata `json:"metadata,omitempty"`
}

ProductUpdateMediaGalleryEntryRequest struct for ProductUpdateMediaGalleryEntryRequest

func NewProductUpdateMediaGalleryEntryRequest

func NewProductUpdateMediaGalleryEntryRequest() *ProductUpdateMediaGalleryEntryRequest

NewProductUpdateMediaGalleryEntryRequest instantiates a new ProductUpdateMediaGalleryEntryRequest 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 NewProductUpdateMediaGalleryEntryRequestWithDefaults

func NewProductUpdateMediaGalleryEntryRequestWithDefaults() *ProductUpdateMediaGalleryEntryRequest

NewProductUpdateMediaGalleryEntryRequestWithDefaults instantiates a new ProductUpdateMediaGalleryEntryRequest 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 (*ProductUpdateMediaGalleryEntryRequest) GetAssetGrn

GetAssetGrn returns the AssetGrn field value if set, zero value otherwise.

func (*ProductUpdateMediaGalleryEntryRequest) GetAssetGrnOk

func (o *ProductUpdateMediaGalleryEntryRequest) GetAssetGrnOk() (*string, bool)

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

func (*ProductUpdateMediaGalleryEntryRequest) GetId

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

func (*ProductUpdateMediaGalleryEntryRequest) 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 (*ProductUpdateMediaGalleryEntryRequest) GetMetadata

GetMetadata returns the Metadata field value if set, zero value otherwise.

func (*ProductUpdateMediaGalleryEntryRequest) GetMetadataOk

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

func (*ProductUpdateMediaGalleryEntryRequest) GetPosition

GetPosition returns the Position field value if set, zero value otherwise.

func (*ProductUpdateMediaGalleryEntryRequest) GetPositionOk

func (o *ProductUpdateMediaGalleryEntryRequest) GetPositionOk() (*int64, bool)

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

func (*ProductUpdateMediaGalleryEntryRequest) GetProductId

GetProductId returns the ProductId field value if set, zero value otherwise.

func (*ProductUpdateMediaGalleryEntryRequest) GetProductIdOk

func (o *ProductUpdateMediaGalleryEntryRequest) GetProductIdOk() (*string, bool)

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

func (*ProductUpdateMediaGalleryEntryRequest) GetTenantId

GetTenantId returns the TenantId field value if set, zero value otherwise.

func (*ProductUpdateMediaGalleryEntryRequest) GetTenantIdOk

func (o *ProductUpdateMediaGalleryEntryRequest) GetTenantIdOk() (*string, bool)

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

func (*ProductUpdateMediaGalleryEntryRequest) HasAssetGrn

HasAssetGrn returns a boolean if a field has been set.

func (*ProductUpdateMediaGalleryEntryRequest) HasId

HasId returns a boolean if a field has been set.

func (*ProductUpdateMediaGalleryEntryRequest) HasMetadata

HasMetadata returns a boolean if a field has been set.

func (*ProductUpdateMediaGalleryEntryRequest) HasPosition

HasPosition returns a boolean if a field has been set.

func (*ProductUpdateMediaGalleryEntryRequest) HasProductId

func (o *ProductUpdateMediaGalleryEntryRequest) HasProductId() bool

HasProductId returns a boolean if a field has been set.

func (*ProductUpdateMediaGalleryEntryRequest) HasTenantId

HasTenantId returns a boolean if a field has been set.

func (ProductUpdateMediaGalleryEntryRequest) MarshalJSON

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

func (*ProductUpdateMediaGalleryEntryRequest) SetAssetGrn

SetAssetGrn gets a reference to the given string and assigns it to the AssetGrn field.

func (*ProductUpdateMediaGalleryEntryRequest) SetId

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

func (*ProductUpdateMediaGalleryEntryRequest) SetMetadata

SetMetadata gets a reference to the given []ProductMediaGalleryEntryMetadata and assigns it to the Metadata field.

func (*ProductUpdateMediaGalleryEntryRequest) SetPosition

func (o *ProductUpdateMediaGalleryEntryRequest) SetPosition(v int64)

SetPosition gets a reference to the given int64 and assigns it to the Position field.

func (*ProductUpdateMediaGalleryEntryRequest) SetProductId

func (o *ProductUpdateMediaGalleryEntryRequest) SetProductId(v string)

SetProductId gets a reference to the given string and assigns it to the ProductId field.

func (*ProductUpdateMediaGalleryEntryRequest) SetTenantId

SetTenantId gets a reference to the given string and assigns it to the TenantId field.

func (ProductUpdateMediaGalleryEntryRequest) ToMap

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

type ProductUpdateProductRequest

type ProductUpdateProductRequest struct {
	TenantId               *string                           `json:"tenantId,omitempty"`
	Id                     *string                           `json:"id,omitempty"`
	Code                   *string                           `json:"code,omitempty"`
	AttributesMask         *ProductFieldMask                 `json:"attributesMask,omitempty"`
	UrlKey                 *ProductLocalizedText             `json:"urlKey,omitempty"`
	MaxSaleableQuantity    *int64                            `json:"maxSaleableQuantity,omitempty"`
	MediaVariantAttributes []string                          `json:"mediaVariantAttributes,omitempty"`
	Attributes             *map[string]ProtobufAny           `json:"attributes,omitempty"`
	Variants               *map[string]ProductProductVariant `json:"variants,omitempty"`
}

ProductUpdateProductRequest struct for ProductUpdateProductRequest

func NewProductUpdateProductRequest

func NewProductUpdateProductRequest() *ProductUpdateProductRequest

NewProductUpdateProductRequest instantiates a new ProductUpdateProductRequest 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 NewProductUpdateProductRequestWithDefaults

func NewProductUpdateProductRequestWithDefaults() *ProductUpdateProductRequest

NewProductUpdateProductRequestWithDefaults instantiates a new ProductUpdateProductRequest 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 (*ProductUpdateProductRequest) GetAttributes

func (o *ProductUpdateProductRequest) GetAttributes() map[string]ProtobufAny

GetAttributes returns the Attributes field value if set, zero value otherwise.

func (*ProductUpdateProductRequest) GetAttributesMask

func (o *ProductUpdateProductRequest) GetAttributesMask() ProductFieldMask

GetAttributesMask returns the AttributesMask field value if set, zero value otherwise.

func (*ProductUpdateProductRequest) GetAttributesMaskOk

func (o *ProductUpdateProductRequest) GetAttributesMaskOk() (*ProductFieldMask, bool)

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

func (*ProductUpdateProductRequest) GetAttributesOk

func (o *ProductUpdateProductRequest) GetAttributesOk() (*map[string]ProtobufAny, bool)

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

func (*ProductUpdateProductRequest) GetCode

func (o *ProductUpdateProductRequest) GetCode() string

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

func (*ProductUpdateProductRequest) GetCodeOk

func (o *ProductUpdateProductRequest) 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 (*ProductUpdateProductRequest) GetId

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

func (*ProductUpdateProductRequest) GetIdOk

func (o *ProductUpdateProductRequest) GetIdOk() (*string, 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 (*ProductUpdateProductRequest) GetMaxSaleableQuantity

func (o *ProductUpdateProductRequest) GetMaxSaleableQuantity() int64

GetMaxSaleableQuantity returns the MaxSaleableQuantity field value if set, zero value otherwise.

func (*ProductUpdateProductRequest) GetMaxSaleableQuantityOk

func (o *ProductUpdateProductRequest) GetMaxSaleableQuantityOk() (*int64, bool)

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

func (*ProductUpdateProductRequest) GetMediaVariantAttributes

func (o *ProductUpdateProductRequest) GetMediaVariantAttributes() []string

GetMediaVariantAttributes returns the MediaVariantAttributes field value if set, zero value otherwise.

func (*ProductUpdateProductRequest) GetMediaVariantAttributesOk

func (o *ProductUpdateProductRequest) GetMediaVariantAttributesOk() ([]string, bool)

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

func (*ProductUpdateProductRequest) GetTenantId

func (o *ProductUpdateProductRequest) GetTenantId() string

GetTenantId returns the TenantId field value if set, zero value otherwise.

func (*ProductUpdateProductRequest) GetTenantIdOk

func (o *ProductUpdateProductRequest) GetTenantIdOk() (*string, bool)

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

func (*ProductUpdateProductRequest) GetUrlKey

GetUrlKey returns the UrlKey field value if set, zero value otherwise.

func (*ProductUpdateProductRequest) GetUrlKeyOk

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

func (*ProductUpdateProductRequest) GetVariants

GetVariants returns the Variants field value if set, zero value otherwise.

func (*ProductUpdateProductRequest) GetVariantsOk

func (o *ProductUpdateProductRequest) GetVariantsOk() (*map[string]ProductProductVariant, bool)

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

func (*ProductUpdateProductRequest) HasAttributes

func (o *ProductUpdateProductRequest) HasAttributes() bool

HasAttributes returns a boolean if a field has been set.

func (*ProductUpdateProductRequest) HasAttributesMask

func (o *ProductUpdateProductRequest) HasAttributesMask() bool

HasAttributesMask returns a boolean if a field has been set.

func (*ProductUpdateProductRequest) HasCode

func (o *ProductUpdateProductRequest) HasCode() bool

HasCode returns a boolean if a field has been set.

func (*ProductUpdateProductRequest) HasId

func (o *ProductUpdateProductRequest) HasId() bool

HasId returns a boolean if a field has been set.

func (*ProductUpdateProductRequest) HasMaxSaleableQuantity

func (o *ProductUpdateProductRequest) HasMaxSaleableQuantity() bool

HasMaxSaleableQuantity returns a boolean if a field has been set.

func (*ProductUpdateProductRequest) HasMediaVariantAttributes

func (o *ProductUpdateProductRequest) HasMediaVariantAttributes() bool

HasMediaVariantAttributes returns a boolean if a field has been set.

func (*ProductUpdateProductRequest) HasTenantId

func (o *ProductUpdateProductRequest) HasTenantId() bool

HasTenantId returns a boolean if a field has been set.

func (*ProductUpdateProductRequest) HasUrlKey

func (o *ProductUpdateProductRequest) HasUrlKey() bool

HasUrlKey returns a boolean if a field has been set.

func (*ProductUpdateProductRequest) HasVariants

func (o *ProductUpdateProductRequest) HasVariants() bool

HasVariants returns a boolean if a field has been set.

func (ProductUpdateProductRequest) MarshalJSON

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

func (*ProductUpdateProductRequest) SetAttributes

func (o *ProductUpdateProductRequest) SetAttributes(v map[string]ProtobufAny)

SetAttributes gets a reference to the given map[string]ProtobufAny and assigns it to the Attributes field.

func (*ProductUpdateProductRequest) SetAttributesMask

func (o *ProductUpdateProductRequest) SetAttributesMask(v ProductFieldMask)

SetAttributesMask gets a reference to the given ProductFieldMask and assigns it to the AttributesMask field.

func (*ProductUpdateProductRequest) SetCode

func (o *ProductUpdateProductRequest) SetCode(v string)

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

func (*ProductUpdateProductRequest) SetId

func (o *ProductUpdateProductRequest) SetId(v string)

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

func (*ProductUpdateProductRequest) SetMaxSaleableQuantity

func (o *ProductUpdateProductRequest) SetMaxSaleableQuantity(v int64)

SetMaxSaleableQuantity gets a reference to the given int64 and assigns it to the MaxSaleableQuantity field.

func (*ProductUpdateProductRequest) SetMediaVariantAttributes

func (o *ProductUpdateProductRequest) SetMediaVariantAttributes(v []string)

SetMediaVariantAttributes gets a reference to the given []string and assigns it to the MediaVariantAttributes field.

func (*ProductUpdateProductRequest) SetTenantId

func (o *ProductUpdateProductRequest) SetTenantId(v string)

SetTenantId gets a reference to the given string and assigns it to the TenantId field.

func (*ProductUpdateProductRequest) SetUrlKey

SetUrlKey gets a reference to the given ProductLocalizedText and assigns it to the UrlKey field.

func (*ProductUpdateProductRequest) SetVariants

SetVariants gets a reference to the given map[string]ProductProductVariant and assigns it to the Variants field.

func (ProductUpdateProductRequest) ToMap

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

type ProductUpdateProductRequestV2

type ProductUpdateProductRequestV2 struct {
	TenantId               *string                           `json:"tenantId,omitempty"`
	Id                     *string                           `json:"id,omitempty"`
	Code                   *string                           `json:"code,omitempty"`
	AttributesMask         *ProductFieldMask                 `json:"attributesMask,omitempty"`
	UrlKey                 *ProductLocalizedText             `json:"urlKey,omitempty"`
	MaxSaleableQuantity    *int64                            `json:"maxSaleableQuantity,omitempty"`
	Attributes             *map[string]ProtobufAny           `json:"attributes,omitempty"`
	Variants               *map[string]ProductProductVariant `json:"variants,omitempty"`
	MediaVariantAttributes []string                          `json:"mediaVariantAttributes,omitempty"`
}

ProductUpdateProductRequestV2 struct for ProductUpdateProductRequestV2

func NewProductUpdateProductRequestV2

func NewProductUpdateProductRequestV2() *ProductUpdateProductRequestV2

NewProductUpdateProductRequestV2 instantiates a new ProductUpdateProductRequestV2 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 NewProductUpdateProductRequestV2WithDefaults

func NewProductUpdateProductRequestV2WithDefaults() *ProductUpdateProductRequestV2

NewProductUpdateProductRequestV2WithDefaults instantiates a new ProductUpdateProductRequestV2 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 (*ProductUpdateProductRequestV2) GetAttributes

func (o *ProductUpdateProductRequestV2) GetAttributes() map[string]ProtobufAny

GetAttributes returns the Attributes field value if set, zero value otherwise.

func (*ProductUpdateProductRequestV2) GetAttributesMask

func (o *ProductUpdateProductRequestV2) GetAttributesMask() ProductFieldMask

GetAttributesMask returns the AttributesMask field value if set, zero value otherwise.

func (*ProductUpdateProductRequestV2) GetAttributesMaskOk

func (o *ProductUpdateProductRequestV2) GetAttributesMaskOk() (*ProductFieldMask, bool)

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

func (*ProductUpdateProductRequestV2) GetAttributesOk

func (o *ProductUpdateProductRequestV2) GetAttributesOk() (*map[string]ProtobufAny, bool)

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

func (*ProductUpdateProductRequestV2) GetCode

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

func (*ProductUpdateProductRequestV2) GetCodeOk

func (o *ProductUpdateProductRequestV2) 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 (*ProductUpdateProductRequestV2) GetId

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

func (*ProductUpdateProductRequestV2) GetIdOk

func (o *ProductUpdateProductRequestV2) GetIdOk() (*string, 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 (*ProductUpdateProductRequestV2) GetMaxSaleableQuantity

func (o *ProductUpdateProductRequestV2) GetMaxSaleableQuantity() int64

GetMaxSaleableQuantity returns the MaxSaleableQuantity field value if set, zero value otherwise.

func (*ProductUpdateProductRequestV2) GetMaxSaleableQuantityOk

func (o *ProductUpdateProductRequestV2) GetMaxSaleableQuantityOk() (*int64, bool)

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

func (*ProductUpdateProductRequestV2) GetMediaVariantAttributes

func (o *ProductUpdateProductRequestV2) GetMediaVariantAttributes() []string

GetMediaVariantAttributes returns the MediaVariantAttributes field value if set, zero value otherwise.

func (*ProductUpdateProductRequestV2) GetMediaVariantAttributesOk

func (o *ProductUpdateProductRequestV2) GetMediaVariantAttributesOk() ([]string, bool)

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

func (*ProductUpdateProductRequestV2) GetTenantId

func (o *ProductUpdateProductRequestV2) GetTenantId() string

GetTenantId returns the TenantId field value if set, zero value otherwise.

func (*ProductUpdateProductRequestV2) GetTenantIdOk

func (o *ProductUpdateProductRequestV2) GetTenantIdOk() (*string, bool)

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

func (*ProductUpdateProductRequestV2) GetUrlKey

GetUrlKey returns the UrlKey field value if set, zero value otherwise.

func (*ProductUpdateProductRequestV2) GetUrlKeyOk

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

func (*ProductUpdateProductRequestV2) GetVariants

GetVariants returns the Variants field value if set, zero value otherwise.

func (*ProductUpdateProductRequestV2) GetVariantsOk

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

func (*ProductUpdateProductRequestV2) HasAttributes

func (o *ProductUpdateProductRequestV2) HasAttributes() bool

HasAttributes returns a boolean if a field has been set.

func (*ProductUpdateProductRequestV2) HasAttributesMask

func (o *ProductUpdateProductRequestV2) HasAttributesMask() bool

HasAttributesMask returns a boolean if a field has been set.

func (*ProductUpdateProductRequestV2) HasCode

func (o *ProductUpdateProductRequestV2) HasCode() bool

HasCode returns a boolean if a field has been set.

func (*ProductUpdateProductRequestV2) HasId

HasId returns a boolean if a field has been set.

func (*ProductUpdateProductRequestV2) HasMaxSaleableQuantity

func (o *ProductUpdateProductRequestV2) HasMaxSaleableQuantity() bool

HasMaxSaleableQuantity returns a boolean if a field has been set.

func (*ProductUpdateProductRequestV2) HasMediaVariantAttributes

func (o *ProductUpdateProductRequestV2) HasMediaVariantAttributes() bool

HasMediaVariantAttributes returns a boolean if a field has been set.

func (*ProductUpdateProductRequestV2) HasTenantId

func (o *ProductUpdateProductRequestV2) HasTenantId() bool

HasTenantId returns a boolean if a field has been set.

func (*ProductUpdateProductRequestV2) HasUrlKey

func (o *ProductUpdateProductRequestV2) HasUrlKey() bool

HasUrlKey returns a boolean if a field has been set.

func (*ProductUpdateProductRequestV2) HasVariants

func (o *ProductUpdateProductRequestV2) HasVariants() bool

HasVariants returns a boolean if a field has been set.

func (ProductUpdateProductRequestV2) MarshalJSON

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

func (*ProductUpdateProductRequestV2) SetAttributes

func (o *ProductUpdateProductRequestV2) SetAttributes(v map[string]ProtobufAny)

SetAttributes gets a reference to the given map[string]ProtobufAny and assigns it to the Attributes field.

func (*ProductUpdateProductRequestV2) SetAttributesMask

func (o *ProductUpdateProductRequestV2) SetAttributesMask(v ProductFieldMask)

SetAttributesMask gets a reference to the given ProductFieldMask and assigns it to the AttributesMask field.

func (*ProductUpdateProductRequestV2) SetCode

func (o *ProductUpdateProductRequestV2) SetCode(v string)

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

func (*ProductUpdateProductRequestV2) SetId

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

func (*ProductUpdateProductRequestV2) SetMaxSaleableQuantity

func (o *ProductUpdateProductRequestV2) SetMaxSaleableQuantity(v int64)

SetMaxSaleableQuantity gets a reference to the given int64 and assigns it to the MaxSaleableQuantity field.

func (*ProductUpdateProductRequestV2) SetMediaVariantAttributes

func (o *ProductUpdateProductRequestV2) SetMediaVariantAttributes(v []string)

SetMediaVariantAttributes gets a reference to the given []string and assigns it to the MediaVariantAttributes field.

func (*ProductUpdateProductRequestV2) SetTenantId

func (o *ProductUpdateProductRequestV2) SetTenantId(v string)

SetTenantId gets a reference to the given string and assigns it to the TenantId field.

func (*ProductUpdateProductRequestV2) SetUrlKey

SetUrlKey gets a reference to the given ProductLocalizedText and assigns it to the UrlKey field.

func (*ProductUpdateProductRequestV2) SetVariants

SetVariants gets a reference to the given map[string]ProductProductVariant and assigns it to the Variants field.

func (ProductUpdateProductRequestV2) ToMap

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

type ProductUpdateProductResponse

type ProductUpdateProductResponse struct {
	Success         *bool                           `json:"success,omitempty"`
	ProductErrors   []ProductProductResponseError   `json:"productErrors,omitempty"`
	AttributeErrors []ProductAttributeResponseError `json:"attributeErrors,omitempty"`
}

ProductUpdateProductResponse struct for ProductUpdateProductResponse

func NewProductUpdateProductResponse

func NewProductUpdateProductResponse() *ProductUpdateProductResponse

NewProductUpdateProductResponse instantiates a new ProductUpdateProductResponse 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 NewProductUpdateProductResponseWithDefaults

func NewProductUpdateProductResponseWithDefaults() *ProductUpdateProductResponse

NewProductUpdateProductResponseWithDefaults instantiates a new ProductUpdateProductResponse 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 (*ProductUpdateProductResponse) GetAttributeErrors

GetAttributeErrors returns the AttributeErrors field value if set, zero value otherwise.

func (*ProductUpdateProductResponse) GetAttributeErrorsOk

func (o *ProductUpdateProductResponse) GetAttributeErrorsOk() ([]ProductAttributeResponseError, bool)

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

func (*ProductUpdateProductResponse) GetProductErrors

GetProductErrors returns the ProductErrors field value if set, zero value otherwise.

func (*ProductUpdateProductResponse) GetProductErrorsOk

func (o *ProductUpdateProductResponse) GetProductErrorsOk() ([]ProductProductResponseError, bool)

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

func (*ProductUpdateProductResponse) GetSuccess

func (o *ProductUpdateProductResponse) GetSuccess() bool

GetSuccess returns the Success field value if set, zero value otherwise.

func (*ProductUpdateProductResponse) GetSuccessOk

func (o *ProductUpdateProductResponse) GetSuccessOk() (*bool, bool)

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

func (*ProductUpdateProductResponse) HasAttributeErrors

func (o *ProductUpdateProductResponse) HasAttributeErrors() bool

HasAttributeErrors returns a boolean if a field has been set.

func (*ProductUpdateProductResponse) HasProductErrors

func (o *ProductUpdateProductResponse) HasProductErrors() bool

HasProductErrors returns a boolean if a field has been set.

func (*ProductUpdateProductResponse) HasSuccess

func (o *ProductUpdateProductResponse) HasSuccess() bool

HasSuccess returns a boolean if a field has been set.

func (ProductUpdateProductResponse) MarshalJSON

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

func (*ProductUpdateProductResponse) SetAttributeErrors

SetAttributeErrors gets a reference to the given []ProductAttributeResponseError and assigns it to the AttributeErrors field.

func (*ProductUpdateProductResponse) SetProductErrors

SetProductErrors gets a reference to the given []ProductProductResponseError and assigns it to the ProductErrors field.

func (*ProductUpdateProductResponse) SetSuccess

func (o *ProductUpdateProductResponse) SetSuccess(v bool)

SetSuccess gets a reference to the given bool and assigns it to the Success field.

func (ProductUpdateProductResponse) ToMap

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

type ProductentitymanagerLocalizedText

type ProductentitymanagerLocalizedText struct {
	Value *map[string]string `json:"value,omitempty"`
}

ProductentitymanagerLocalizedText struct for ProductentitymanagerLocalizedText

func NewProductentitymanagerLocalizedText

func NewProductentitymanagerLocalizedText() *ProductentitymanagerLocalizedText

NewProductentitymanagerLocalizedText instantiates a new ProductentitymanagerLocalizedText 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 NewProductentitymanagerLocalizedTextWithDefaults

func NewProductentitymanagerLocalizedTextWithDefaults() *ProductentitymanagerLocalizedText

NewProductentitymanagerLocalizedTextWithDefaults instantiates a new ProductentitymanagerLocalizedText 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 (*ProductentitymanagerLocalizedText) GetValue

GetValue returns the Value field value if set, zero value otherwise.

func (*ProductentitymanagerLocalizedText) GetValueOk

func (o *ProductentitymanagerLocalizedText) GetValueOk() (*map[string]string, 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.

func (*ProductentitymanagerLocalizedText) HasValue

HasValue returns a boolean if a field has been set.

func (ProductentitymanagerLocalizedText) MarshalJSON

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

func (*ProductentitymanagerLocalizedText) SetValue

func (o *ProductentitymanagerLocalizedText) SetValue(v map[string]string)

SetValue gets a reference to the given map[string]string and assigns it to the Value field.

func (ProductentitymanagerLocalizedText) ToMap

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

type ProtobufAny

type ProtobufAny struct {
	// A URL/resource name that uniquely identifies the type of the serialized protocol buffer message. This string must contain at least one \"/\" character. The last segment of the URL's path must represent the fully qualified name of the type (as in `path/google.protobuf.Duration`). The name should be in a canonical form (e.g., leading \".\" is not accepted).  In practice, teams usually precompile into the binary all types that they expect it to use in the context of Any. However, for URLs which use the scheme `http`, `https`, or no scheme, one can optionally set up a type server that maps type URLs to message definitions as follows:  * If no scheme is provided, `https` is assumed. * An HTTP GET on the URL must yield a [google.protobuf.Type][]   value in binary format, or produce an error. * Applications are allowed to cache lookup results based on the   URL, or have them precompiled into a binary to avoid any   lookup. Therefore, binary compatibility needs to be preserved   on changes to types. (Use versioned type names to manage   breaking changes.)  Note: this functionality is not currently available in the official protobuf release, and it is not used for type URLs beginning with type.googleapis.com.  Schemes other than `http`, `https` (or the empty scheme) might be used with implementation specific semantics.
	Type                 *string `json:"@type,omitempty"`
	AdditionalProperties map[string]interface{}
}

ProtobufAny `Any` contains an arbitrary serialized protocol buffer message along with a URL that describes the type of the serialized message. Protobuf library provides support to pack/unpack Any values in the form of utility functions or additional generated methods of the Any type. Example 1: Pack and unpack a message in C++. Foo foo = ...; Any any; any.PackFrom(foo); ... if (any.UnpackTo(&foo)) { ... } Example 2: Pack and unpack a message in Java. Foo foo = ...; Any any = Any.pack(foo); ... if (any.is(Foo.class)) { foo = any.unpack(Foo.class); } Example 3: Pack and unpack a message in Python. foo = Foo(...) any = Any() any.Pack(foo) ... if any.Is(Foo.DESCRIPTOR): any.Unpack(foo) ... Example 4: Pack and unpack a message in Go foo := &pb.Foo{...} any, err := anypb.New(foo) if err != nil { ... } ... foo := &pb.Foo{} if err := any.UnmarshalTo(foo); err != nil { ... } The pack methods provided by protobuf library will by default use 'type.googleapis.com/full.type.name' as the type URL and the unpack methods only use the fully qualified type name after the last '/' in the type URL, for example \"foo.bar.com/x/y.z\" will yield type name \"y.z\". JSON The JSON representation of an `Any` value uses the regular representation of the deserialized, embedded message, with an additional field `@type` which contains the type URL. Example: package google.profile; message Person { string first_name = 1; string last_name = 2; } { \"@type\": \"type.googleapis.com/google.profile.Person\", \"firstName\": <string>, \"lastName\": <string> } If the embedded message type is well-known and has a custom JSON representation, that representation will be embedded adding a field `value` which holds the custom JSON in addition to the `@type` field. Example (for message [google.protobuf.Duration][]): { \"@type\": \"type.googleapis.com/google.protobuf.Duration\", \"value\": \"1.212s\" }

func NewProtobufAny

func NewProtobufAny() *ProtobufAny

NewProtobufAny instantiates a new ProtobufAny 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 NewProtobufAnyWithDefaults

func NewProtobufAnyWithDefaults() *ProtobufAny

NewProtobufAnyWithDefaults instantiates a new ProtobufAny 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 (*ProtobufAny) GetType

func (o *ProtobufAny) GetType() string

GetType returns the Type field value if set, zero value otherwise.

func (*ProtobufAny) GetTypeOk

func (o *ProtobufAny) GetTypeOk() (*string, bool)

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

func (*ProtobufAny) GetValue added in v1.0.4

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

GetValue returns the value of well-known types

func (*ProtobufAny) HasType

func (o *ProtobufAny) HasType() bool

HasType returns a boolean if a field has been set.

func (ProtobufAny) MarshalJSON

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

func (*ProtobufAny) SetType

func (o *ProtobufAny) SetType(v string)

SetType gets a reference to the given string and assigns it to the Type field.

func (*ProtobufAny) SetValue added in v1.0.5

func (o *ProtobufAny) SetValue(value interface{})

SetValue populate the value of well-known types

func (ProtobufAny) ToMap

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

func (*ProtobufAny) UnmarshalJSON

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

type RpcStatus

type RpcStatus struct {
	Code    *int32        `json:"code,omitempty"`
	Message *string       `json:"message,omitempty"`
	Details []ProtobufAny `json:"details,omitempty"`
}

RpcStatus struct for RpcStatus

func NewRpcStatus

func NewRpcStatus() *RpcStatus

NewRpcStatus instantiates a new RpcStatus 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 NewRpcStatusWithDefaults

func NewRpcStatusWithDefaults() *RpcStatus

NewRpcStatusWithDefaults instantiates a new RpcStatus 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 (*RpcStatus) GetCode

func (o *RpcStatus) GetCode() int32

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

func (*RpcStatus) GetCodeOk

func (o *RpcStatus) GetCodeOk() (*int32, 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 (*RpcStatus) GetDetails

func (o *RpcStatus) GetDetails() []ProtobufAny

GetDetails returns the Details field value if set, zero value otherwise.

func (*RpcStatus) GetDetailsOk

func (o *RpcStatus) GetDetailsOk() ([]ProtobufAny, bool)

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

func (*RpcStatus) GetMessage

func (o *RpcStatus) GetMessage() string

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

func (*RpcStatus) GetMessageOk

func (o *RpcStatus) 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 (*RpcStatus) HasCode

func (o *RpcStatus) HasCode() bool

HasCode returns a boolean if a field has been set.

func (*RpcStatus) HasDetails

func (o *RpcStatus) HasDetails() bool

HasDetails returns a boolean if a field has been set.

func (*RpcStatus) HasMessage

func (o *RpcStatus) HasMessage() bool

HasMessage returns a boolean if a field has been set.

func (RpcStatus) MarshalJSON

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

func (*RpcStatus) SetCode

func (o *RpcStatus) SetCode(v int32)

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

func (*RpcStatus) SetDetails

func (o *RpcStatus) SetDetails(v []ProtobufAny)

SetDetails gets a reference to the given []ProtobufAny and assigns it to the Details field.

func (*RpcStatus) SetMessage

func (o *RpcStatus) SetMessage(v string)

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

func (RpcStatus) ToMap

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

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

Source Files

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL