Documentation ¶
Index ¶
- type AddGlobalItemResult
- type AddGlobalItemResultResponse
- type AddGlobalModelResult
- type AddItemRequestItemEntity
- type AttributeEntity
- type AttributeValueEntity
- type BrandEntity
- type CategoryEntity
- type CreatePublishTaskItemEntity
- type CreatePublishTaskModelEntity
- type CreatePublishTaskPreOrderEntity
- type CreatePublishTaskResult
- type CreatePublishTaskResultResponse
- type DaysToShipLimitEntity
- type DeleteGlobalItemResult
- type DeleteGlobalItemResultResponse
- type DeleteGlobalModelResult
- type DeleteGlobalModelResultResponse
- type DimensionEntity
- type FailureDeleteItemEntity
- type FailureEntity
- type GetAttributesResult
- type GetAttributesResultResponse
- type GetBoostedListItemListEntity
- type GetBrandListResult
- type GetBrandListResultResponse
- type GetCategoryResult
- type GetCategoryResultResponse
- type GetDtsLimitResult
- type GetDtsLimitResultResponse
- type GetGlobalItemIDResult
- type GetGlobalItemIDResultResponse
- type GetGlobalItemInfoResult
- type GetGlobalItemInfoResultResponse
- type GetGlobalItemLimitResult
- type GetGlobalItemLimitResultResponse
- type GetGlobalItemListResult
- type GetGlobalItemListResultResponse
- type GetModelListResult
- type GetModelListResultResponse
- type GetPublishTaskResult
- type GetPublishTaskResultFailureEntity
- type GetPublishTaskResultResponse
- type GetPublishTaskResultSuccessEntity
- type GetPublishableShopResult
- type GetPublishableShopResultResponse
- type GetPublishedListResult
- type GetPublishedListResultResponse
- type GlobalItemEntity
- type GlobalItemListEntity
- type ImageEntity
- type InitTierVariationModelEntity
- type InitTierVariationResult
- type ItemDescriptionLengthLimitEntity
- type ItemEntity
- type ItemExtraEntity
- type ItemIdMapEntity
- type ItemImageCountLimitEntity
- type ItemListEntity
- type ItemNameLengthLimitEntity
- type LogisticEntity
- type ModelEntity
- type OptionEntity
- type ParentAttributeEntity
- type ParentBrandEntity
- type PreOrderEntity
- type PriceEntity
- type PriceInfoEntity
- type PriceLimitEntity
- type PublishableShopEntity
- type PublishedItemEntity
- type SetSyncFieldResult
- type ShopSyncEntity
- type StockInfoEntity
- type StockLimitEntity
- type SupportGlobalSizeChartResult
- type SupportSizeChartResultResponse
- type TierImageEntity
- type TierVariationEntity
- type TierVariationNameLengthLimitEntity
- type TierVariationOptionLengthLimitEntity
- type UnlistItemItemListEntity
- type UpdateGlobalModelResult
- type UpdateGlobalPriceResult
- type UpdateGlobalSizeChartResult
- type UpdateGlobalStockResult
- type UpdateItemRequestItemEntity
- type UpdateModelEntity
- type UpdateStockStockInfoEntity
- type UpdateTierVariationResult
- type VideoEntity
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type AddGlobalItemResult ¶
type AddGlobalItemResult struct { commonentity.Result Warning string `json:"warning"` Response AddGlobalItemResultResponse `json:"response"` }
AddGlobalItemResult
type AddGlobalItemResultResponse ¶
type AddGlobalItemResultResponse struct {
GlobalItemID int64 `json:"global_item_id"`
}
AddGlobalItemResultResponse
func (AddGlobalItemResultResponse) String ¶
func (g AddGlobalItemResultResponse) String() string
String
type AddGlobalModelResult ¶
type AddGlobalModelResult struct { commonentity.Result Warning string `json:"warning"` }
AddGlobalModelResult
type AddItemRequestItemEntity ¶
type AddItemRequestItemEntity struct { OriginalPrice float32 `json:"original_price "` Description string `json:"description"` Weight float32 `json:"weight"` GlobalItemName string `json:"global_item_name"` Dimension DimensionEntity `json:"dimension"` NormalStock int `json:"normal_stock"` AttributeList []AttributeEntity `json:"attribute_list"` CategoryID int64 `json:"category_id"` Image ImageEntity `json:"image"` PreOrder PreOrderEntity `json:"pre_order"` GlobalItemSku string `json:"global_item_sku"` Condition string `json:"condition"` VideoUploadID []string `json:"video_upload_id"` Brand BrandEntity `json:"brand"` }
AddItemRequestItemEntity
type AttributeEntity ¶
type AttributeEntity struct { AttributeID int64 `json:"attribute_id"` OriginalAttributeName string `json:"original_attribute_name"` DisplayAttributeName string `json:"display_attribute_name"` InputValidationType string `json:"input_validation_type"` FormatType string `json:"format_type"` DateFormatType string `json:"date_format_type"` InputType string `json:"input_type"` AttributeUnit []string `json:"attribute_unit"` IsMandatory bool `json:"is_mandatory"` AttributeType int `json:"attribute_type"` AttributeValueList []AttributeValueEntity `json:"attribute_value_list"` }
AttributeEntity
type AttributeValueEntity ¶
type AttributeValueEntity struct { ValueID int64 `json:"value_id"` OriginalValueName string `json:"original_value_name"` ValueUnit string `json:"value_unit"` DisplayValueName string `json:"display_value_name"` ParentAttributeList []ParentAttributeEntity `json:"parent_attribute_list"` ParentBrandList []ParentBrandEntity `json:"parent_brand_list"` }
AttributeValueEntity
type BrandEntity ¶
type BrandEntity struct { BrandID int64 `json:"brand_id"` OriginalBrandName string `json:"original_brand_name"` }
BrandEntity
type CategoryEntity ¶
type CategoryEntity struct { CategoryID int64 `json:"category_id"` ParentCategoryID int64 `json:"parent_category_id"` OriginalCategoryName string `json:"original_category_name"` DisplayCategoryName string `json:"display_category_name"` HasChildren bool `json:"has_children"` }
CategoryEntity
type CreatePublishTaskItemEntity ¶
type CreatePublishTaskItemEntity struct { PreOrder CreatePublishTaskPreOrderEntity `json:"pre_order"` // contains filtered or unexported fields }
CreatePublishTaskItemEntity
func (CreatePublishTaskItemEntity) String ¶
func (i CreatePublishTaskItemEntity) String() string
String
type CreatePublishTaskModelEntity ¶
type CreatePublishTaskModelEntity struct { TierIndex []int `json:"tier_index"` OriginalPrice float32 `json:"original_price"` }
CreatePublishTaskModelEntity
func (CreatePublishTaskModelEntity) String ¶
func (s CreatePublishTaskModelEntity) String() string
String
type CreatePublishTaskPreOrderEntity ¶
type CreatePublishTaskPreOrderEntity struct { DaysToShip int `json:"days_to_ship"` IsPreOrder bool `json:"is_pre_order"` }
func (CreatePublishTaskPreOrderEntity) String ¶
func (p CreatePublishTaskPreOrderEntity) String() string
String
type CreatePublishTaskResult ¶
type CreatePublishTaskResult struct { commonentity.Result Response CreatePublishTaskResultResponse `json:"response"` Warning string `json:"warning"` }
CreatePublishTaskResult
type CreatePublishTaskResultResponse ¶
type CreatePublishTaskResultResponse struct {
PublishTaskID int64 `json:"publish_task_id"`
}
CreatePublishTaskResultResponse
func (CreatePublishTaskResultResponse) String ¶
func (g CreatePublishTaskResultResponse) String() string
String
type DaysToShipLimitEntity ¶
type DaysToShipLimitEntity struct { MinLimit int `json:"min_limit"` MaxLimit int `json:"max_limit"` }
DaysToShipLimitEntity
type DeleteGlobalItemResult ¶
type DeleteGlobalItemResult struct { commonentity.Result Response DeleteGlobalItemResultResponse `json:"response"` Warning string `json:"warning"` }
DeleteGlobalItemResult
type DeleteGlobalItemResultResponse ¶
type DeleteGlobalItemResultResponse struct {
FailureDeleteItem []FailureDeleteItemEntity `json:"failure_delete_item"`
}
DeleteGlobalItemResultResponse
func (DeleteGlobalItemResultResponse) String ¶
func (g DeleteGlobalItemResultResponse) String() string
String
type DeleteGlobalModelResult ¶
type DeleteGlobalModelResult struct { commonentity.Result Warning string `json:"warning"` Response DeleteGlobalModelResultResponse `json:"response"` }
DeleteGlobalModelResult
type DeleteGlobalModelResultResponse ¶
type DeleteGlobalModelResultResponse struct { GlobalModelID int64 `json:"global_model_id"` Failures []FailureEntity `json:"failures"` }
DeleteGlobalModelResultResponse
func (DeleteGlobalModelResultResponse) String ¶
func (g DeleteGlobalModelResultResponse) String() string
String
type DimensionEntity ¶
type DimensionEntity struct { PackageLength int `json:"package_length"` PackageWidth int `json:"package_width"` PackageHeight int `json:"package_height"` }
DimensionEntity
type FailureDeleteItemEntity ¶
FailureDeleteItemEntity
type FailureEntity ¶
type FailureEntity struct { ShopID int64 `json:"shop_id"` ItemID int64 `json:"item_id"` ModelID int64 `json:"model_id"` }
FailureEntity
type GetAttributesResult ¶
type GetAttributesResult struct { commonentity.Result Response GetAttributesResultResponse `json:"response"` Warning string `json:"warning"` }
GetAttributesResult
type GetAttributesResultResponse ¶
type GetAttributesResultResponse struct {
AttributeList []AttributeEntity `json:"attribute_list"`
}
GetAttributesResultResponse
func (GetAttributesResultResponse) String ¶
func (g GetAttributesResultResponse) String() string
String
type GetBoostedListItemListEntity ¶
type GetBoostedListItemListEntity struct { ItemID int64 `json:"item_id"` CoolDownSecond int `json:"cool_down_second"` }
GetBoostedListItemListEntity
func (GetBoostedListItemListEntity) String ¶
func (i GetBoostedListItemListEntity) String() string
String
type GetBrandListResult ¶
type GetBrandListResult struct { commonentity.Result Response GetBrandListResultResponse `json:"response"` Warning string `json:"warning"` }
GetBrandListResult
type GetBrandListResultResponse ¶
type GetBrandListResultResponse struct { BrandList []BrandEntity `json:"brand_list"` HasNextPage bool `json:"has_next_page"` NextOffset int `json:"next_offset"` IsMandatory bool `json:"is_mandatory"` InputType string `json:"input_type"` }
GetBrandListResultResponse
type GetCategoryResult ¶
type GetCategoryResult struct { commonentity.Result Warning string `json:"warning"` Response GetCategoryResultResponse `json:"response"` }
GetCategoryResult
type GetCategoryResultResponse ¶
type GetCategoryResultResponse struct {
CategoryList []CategoryEntity `json:"category_list"`
}
GetCategoryResultResponse
type GetDtsLimitResult ¶
type GetDtsLimitResult struct { commonentity.Result Response GetDtsLimitResultResponse `json:"response"` Warning string `json:"warning"` }
GetDtsLimitResult
type GetDtsLimitResultResponse ¶
type GetDtsLimitResultResponse struct {
DaysToShipLimit []DaysToShipLimitEntity `json:"days_to_ship_limit"`
}
GetDtsLimitResultResponse
type GetGlobalItemIDResult ¶
type GetGlobalItemIDResult struct { commonentity.Result Warning string `json:"warning"` Response GetGlobalItemIDResultResponse `json:"response"` }
GetGlobalItemIDResult
type GetGlobalItemIDResultResponse ¶
type GetGlobalItemIDResultResponse struct {
ItemIdMap []ItemIdMapEntity `json:"item_id_map"`
}
GetGlobalItemIDResultResponse
func (GetGlobalItemIDResultResponse) String ¶
func (r GetGlobalItemIDResultResponse) String() string
String
type GetGlobalItemInfoResult ¶
type GetGlobalItemInfoResult struct { commonentity.Result Response GetGlobalItemInfoResultResponse `json:"response"` Warning string `json:"warning"` }
GetGlobalItemInfoResult
type GetGlobalItemInfoResultResponse ¶
type GetGlobalItemInfoResultResponse struct {
GlobalItemList []GlobalItemEntity `json:"global_item_list"`
}
GetGlobalItemInfoResultResponse
func (GetGlobalItemInfoResultResponse) String ¶
func (g GetGlobalItemInfoResultResponse) String() string
String
type GetGlobalItemLimitResult ¶
type GetGlobalItemLimitResult struct { commonentity.Result Response GetGlobalItemLimitResultResponse `json:"response"` Warning string `json:"warning"` TextLengthMultiplier float32 `json:"text_length_multiplier"` }
GetGlobalItemLimitResult
type GetGlobalItemLimitResultResponse ¶
type GetGlobalItemLimitResultResponse struct { PriceLimit PriceLimitEntity `json:"price_limit"` StockLimit StockLimitEntity `json:"stock_limit"` ItemNameLengthLimit ItemNameLengthLimitEntity `json:"global_item_name_length_limit"` ItemImageCountLimit ItemImageCountLimitEntity `json:"global_item_image_count_limit"` ItemDescriptionLengthLimit ItemDescriptionLengthLimitEntity `json:"global_item_description_length_limit"` TierVariationNameLengthLimit TierVariationNameLengthLimitEntity `json:"tier_variation_name_length_limit"` TierVariationOptionLengthLimit TierVariationOptionLengthLimitEntity `json:"tier_variation_option_length_limit"` }
GetGlobalItemLimitResultResponse
func (GetGlobalItemLimitResultResponse) String ¶
func (g GetGlobalItemLimitResultResponse) String() string
String
type GetGlobalItemListResult ¶
type GetGlobalItemListResult struct { commonentity.Result Response GetGlobalItemListResultResponse `json:"response"` Warning string `json:"warning"` }
GetItemListResult
type GetGlobalItemListResultResponse ¶
type GetGlobalItemListResultResponse struct { GlobalItemList []GlobalItemListEntity `json:"global_item_list"` TotalCount int `json:"total_count"` HasNextPage bool `json:"has_next_page"` Offset string `json:"offset"` }
GetItemListResultResponse
func (GetGlobalItemListResultResponse) String ¶
func (g GetGlobalItemListResultResponse) String() string
String
type GetModelListResult ¶
type GetModelListResult struct { commonentity.Result Response GetModelListResultResponse `json:"response"` Warning string `json:"warning"` }
GetModelListResult
type GetModelListResultResponse ¶
type GetModelListResultResponse struct { TierVariation []TierVariationEntity `json:"tier_variation"` GlobalModel []ModelEntity `json:"global_model"` }
GetModelListResultResponse
func (GetModelListResultResponse) String ¶
func (g GetModelListResultResponse) String() string
String
type GetPublishTaskResult ¶
type GetPublishTaskResult struct { commonentity.Result Response GetPublishTaskResultResponse `json:"response"` Warning string `json:"warning"` }
GetPublishTaskResult
type GetPublishTaskResultFailureEntity ¶
type GetPublishTaskResultFailureEntity struct {
FailedReason string `json:"failed_reason"`
}
GetPublishTaskResultFailureEntity
func (GetPublishTaskResultFailureEntity) String ¶
func (p GetPublishTaskResultFailureEntity) String() string
String
type GetPublishTaskResultResponse ¶
type GetPublishTaskResultResponse struct { PublishStatus string `json:"publish_status"` Success GetPublishTaskResultSuccessEntity `json:"success"` Failed GetPublishTaskResultFailureEntity `json:"failed"` }
GetPublishTaskResultResponse
func (GetPublishTaskResultResponse) String ¶
func (g GetPublishTaskResultResponse) String() string
String
type GetPublishTaskResultSuccessEntity ¶
type GetPublishTaskResultSuccessEntity struct { Region string `json:"region"` ShopID int64 `json:"shop_id"` ItemID int64 `json:"item_id"` }
GetPublishTaskResultSuccessEntity
func (GetPublishTaskResultSuccessEntity) String ¶
func (p GetPublishTaskResultSuccessEntity) String() string
String
type GetPublishableShopResult ¶
type GetPublishableShopResult struct { commonentity.Result Response GetPublishableShopResultResponse `json:"response"` Warning string `json:"warning"` }
GetPublishableShopResult
type GetPublishableShopResultResponse ¶
type GetPublishableShopResultResponse struct {
PublishableShop []PublishableShopEntity `json:"publishable_shop"`
}
GetPublishableShopResultResponse
func (GetPublishableShopResultResponse) String ¶
func (g GetPublishableShopResultResponse) String() string
String
type GetPublishedListResult ¶
type GetPublishedListResult struct { commonentity.Result Response GetPublishedListResultResponse `json:"response"` Warning string `json:"warning"` }
GetPublishedListResult
type GetPublishedListResultResponse ¶
type GetPublishedListResultResponse struct {
PublishedItem []PublishedItemEntity `json:"published_item"`
}
GetPublishedListResultResponse
func (GetPublishedListResultResponse) String ¶
func (g GetPublishedListResultResponse) String() string
String
type GlobalItemEntity ¶
type GlobalItemEntity struct { GlobalItemID int64 `json:"global_item_id"` GlobalItemName string `json:"global_item_name"` Description string `json:"description"` GlobalItemSku string `json:"global_item_sku"` GlobalItemStatus string `json:"global_item_status"` CreateTime int `json:"create_time"` UpdateTime int `json:"update_time"` StockInfo StockInfoEntity `json:"stock_info"` PriceInfo PriceInfoEntity `json:"price_info"` Image ImageEntity `json:"image"` Weight float32 `json:"weight"` Dimension DimensionEntity `json:"dimension"` PreOrder PreOrderEntity `json:"pre_order"` SizeChart string `json:"size_chart"` Condition string `json:"condition"` HasModel bool `json:"has_model"` Video VideoEntity `json:"video"` CategoryID int64 `json:"category_id"` Brand BrandEntity `json:"brand"` AttributeList []AttributeEntity `json:"attribute_list"` }
GlobalItemEntity
type GlobalItemListEntity ¶
type GlobalItemListEntity struct { GlobalItemID int64 `json:"global_item_id"` UpdateTime int `json:"update_time"` }
GlobalItemListEntity
type ImageEntity ¶
type ImageEntity struct { ImageIdList []string `json:"image_id_list"` ImageUrlList []string `json:"image_url_list"` }
ImageEntity
type InitTierVariationModelEntity ¶
type InitTierVariationModelEntity struct { TierIndex []int `json:"tier_index"` NormalStock int `json:"normal_stock"` OriginalPrice float32 `json:"original_price"` GlobalModelSku string `json:"global_model_sku"` }
InitTierVariationModelEntity
func (InitTierVariationModelEntity) String ¶
func (s InitTierVariationModelEntity) String() string
String
type InitTierVariationResult ¶
type InitTierVariationResult struct { commonentity.Result Warning string `json:"warning"` }
InitTierVariationResult
type ItemDescriptionLengthLimitEntity ¶
type ItemDescriptionLengthLimitEntity struct { MinLimit int `json:"min_limit"` MaxLimit int `json:"max_limit"` }
ItemDescriptionLengthLimitEntity
func (ItemDescriptionLengthLimitEntity) String ¶
func (p ItemDescriptionLengthLimitEntity) String() string
String
type ItemEntity ¶
type ItemEntity struct { ItemID int64 `json:"item_id"` CategoryID int64 `json:"category_id"` ItemName string `json:"item_name"` Description string `json:"description"` ItemSku string `json:"item_sku"` CreateTime int `json:"create_time"` UpdateTime int `json:"update_time"` AttributeList []AttributeEntity `json:"attribute_list"` PriceInfo []PriceInfoEntity `json:"price_info"` StockInfo []StockInfoEntity `json:"stock_info"` Image ImageEntity `json:"image"` Weight string `json:"weight"` Dimension DimensionEntity `json:"dimension"` PreOrder PreOrderEntity `json:"pre_order"` Condition string `json:"condition"` SizeChart string `json:"size_chart"` ItemStatus string `json:"item_status"` HasModel bool `json:"has_model"` PromotionID int64 `json:"promotion_id"` Brand BrandEntity `json:"brand"` ItemDangerous int `json:"item_dangerous"` }
ItemEntity
type ItemExtraEntity ¶
type ItemExtraEntity struct { ItemID int64 `json:"item_id"` Sale int `json:"sale"` Views int `json:"views"` Likes int `json:"likes"` RatingStar float32 `json:"rating_star"` CommentCount int `json:"comment_count"` }
ItemEntity
type ItemIdMapEntity ¶
type ItemIdMapEntity struct { ItemID int64 `json:"item_id"` GlobalItemID int64 `json:"global_item_id"` }
ItemIdMapEntity
type ItemImageCountLimitEntity ¶
type ItemImageCountLimitEntity struct { MinLimit int `json:"min_limit"` MaxLimit int `json:"max_limit"` }
ItemImageCountLimitEntity
type ItemListEntity ¶
type ItemListEntity struct { ItemID int64 `json:"item_id"` ItemStatus string `json:"item_status"` UpdateTime int `json:"update_time"` }
ItemListEntity
type ItemNameLengthLimitEntity ¶
type ItemNameLengthLimitEntity struct { MinLimit int `json:"min_limit"` MaxLimit int `json:"max_limit"` }
ItemNameLengthLimitEntity
type LogisticEntity ¶
type LogisticEntity struct { LogisticID int64 `json:"logistic_id"` LogisticName string `json:"logistic_name"` Enabled bool `json:"enabled"` ShippingFee float32 `json:"shipping_fee"` SizeID int64 `json:"size_id"` IsFree bool `json:"is_free"` EstimatedShippingFee bool `json:"estimated_shipping_fee"` }
LogisticEntity
type ModelEntity ¶
type ModelEntity struct { PriceInfo []PriceInfoEntity `json:"price_info"` GlobalModelID int64 `json:"global_model_id"` StockInfo []StockInfoEntity `json:"stock_info"` TierIndex []int `json:"tier_index"` PromotionID int64 `json:"promotion_id"` GlobalModelSku string `json:"global_model_sku"` }
ModelEntity
type OptionEntity ¶
type OptionEntity struct { Option string `json:"option"` Image *TierImageEntity `json:"image"` }
OptionEntity
type ParentAttributeEntity ¶
type ParentAttributeEntity struct { ParentAttributeID int64 `json:"parent_attribute_id"` ParentValueID int64 `json:"parent_value_id"` }
ParentAttributeEntity
type ParentBrandEntity ¶
type ParentBrandEntity struct {
ParentBrandID int64 `json:"parent_brand_id"`
}
ParentBrandEntity
type PreOrderEntity ¶
type PreOrderEntity struct {
DaysToShip int `json:"days_to_ship"`
}
PreOrderEntity
type PriceEntity ¶
type PriceEntity struct { GlobalModelID int64 `json:"global_model_id"` OriginalPrice float32 `json:"original_price"` }
PriceEntity
type PriceInfoEntity ¶
type PriceInfoEntity struct { Currency string `json:"currency"` OriginalPrice float32 `json:"original_price"` }
PriceInfoEntity
type PriceLimitEntity ¶
type PriceLimitEntity struct { MinLimit float32 `json:"min_limit"` MaxLimit float32 `json:"max_limit"` }
PriceLimitEntity
type PublishableShopEntity ¶
type PublishableShopEntity struct { ShopID int64 `json:"shop_id"` ShopRegion string `json:"shop_region"` }
PublishableShopEntity
type PublishedItemEntity ¶
type PublishedItemEntity struct { ShopID int64 `json:"shop_id"` ShopRegion string `json:"shop_region"` ItemID int64 `json:"item_id"` ItemStatus int `json:"item_status"` }
PublishedItemEntity
type SetSyncFieldResult ¶
type SetSyncFieldResult struct { commonentity.Result Warning string `json:"warning"` }
SetSyncFieldResult
type ShopSyncEntity ¶
type ShopSyncEntity struct { ShopID int64 `json:"shop_id"` ShopRegion string `json:"shop_region"` NameAndDescription bool `json:"name_and_description"` MediaInformation bool `json:"media_information"` Category bool `json:"category"` TierVariationNameAndOption bool `json:"tier_variation_name_and_option"` Price bool `json:"price"` DaysToShip bool `json:"days_to_ship"` }
ShopSyncEntity
type StockInfoEntity ¶
type StockInfoEntity struct { StockType int `json:"stock_type"` StockLocationID string `json:"stock_location_id"` NormalStock int `json:"normal_stock"` ReservedStock int `json:"reserved_stock"` }
StockInfoEntity
type StockLimitEntity ¶
StockLimitEntity
type SupportGlobalSizeChartResult ¶
type SupportGlobalSizeChartResult struct { commonentity.Result Warning string `json:"warning"` Response SupportSizeChartResultResponse `json:"response"` }
SupportSizeChartResult
func (SupportGlobalSizeChartResult) String ¶
func (r SupportGlobalSizeChartResult) String() string
String
type SupportSizeChartResultResponse ¶
type SupportSizeChartResultResponse struct {
SupportSizeChart bool `json:"support_size_chart"`
}
SupportSizeChartResultResponse
func (SupportSizeChartResultResponse) String ¶
func (r SupportSizeChartResultResponse) String() string
String
type TierImageEntity ¶
TierImageEntity
type TierVariationEntity ¶
type TierVariationEntity struct { OptionList []OptionEntity `json:"option_list"` Name string `json:"name"` }
TierVariationEntity
type TierVariationNameLengthLimitEntity ¶
type TierVariationNameLengthLimitEntity struct { MinLimit int `json:"min_limit"` MaxLimit int `json:"max_limit"` }
TierVariationNameLengthLimitEntity
func (TierVariationNameLengthLimitEntity) String ¶
func (p TierVariationNameLengthLimitEntity) String() string
String
type TierVariationOptionLengthLimitEntity ¶
type TierVariationOptionLengthLimitEntity struct { MinLimit int `json:"min_limit"` MaxLimit int `json:"max_limit"` }
TierVariationOptionLengthLimitEntity
func (TierVariationOptionLengthLimitEntity) String ¶
func (p TierVariationOptionLengthLimitEntity) String() string
String
type UnlistItemItemListEntity ¶
UnlistItemItemListEntity
type UpdateGlobalModelResult ¶
type UpdateGlobalModelResult struct { commonentity.Result Warning string `json:"warning"` }
UpdateGlobalModelResult
type UpdateGlobalPriceResult ¶
type UpdateGlobalPriceResult struct { commonentity.Result Warning string `json:"warning"` }
UpdateGlobalPriceResult
type UpdateGlobalSizeChartResult ¶
type UpdateGlobalSizeChartResult struct { commonentity.Result Warning string `json:"warning"` }
UpdateGlobalSizeChartResult
func (UpdateGlobalSizeChartResult) String ¶
func (r UpdateGlobalSizeChartResult) String() string
String
type UpdateGlobalStockResult ¶
type UpdateGlobalStockResult struct { commonentity.Result Warning string `json:"warning"` }
UpdateGlobalStockResult
type UpdateItemRequestItemEntity ¶
type UpdateItemRequestItemEntity struct { GlobalItemID int64 `json:"global_item_id"` OriginalPrice float32 `json:"original_price "` Description string `json:"description"` Weight float32 `json:"weight"` GlobalItemName string `json:"global_item_name"` Dimension DimensionEntity `json:"dimension"` NormalStock int `json:"normal_stock"` AttributeList []AttributeEntity `json:"attribute_list"` CategoryID int64 `json:"category_id"` Image ImageEntity `json:"image"` PreOrder PreOrderEntity `json:"pre_order"` GlobalItemSku string `json:"global_item_sku"` Condition string `json:"condition"` VideoUploadID []string `json:"video_upload_id"` Brand BrandEntity `json:"brand"` }
UpdateItemRequestItemEntity
func (UpdateItemRequestItemEntity) String ¶
func (i UpdateItemRequestItemEntity) String() string
String
type UpdateModelEntity ¶
type UpdateModelEntity struct { GlobalModelID int64 `json:"global_model_id"` GlobalModelSku string `json:"global_model_sku"` }
UpdateModelEntity
type UpdateStockStockInfoEntity ¶
type UpdateStockStockInfoEntity struct { GlobalModelID int64 `json:"global_model_id"` NormalStock int `json:"normal_stock"` }
UpdateStockStockInfoEntity
func (UpdateStockStockInfoEntity) String ¶
func (p UpdateStockStockInfoEntity) String() string
String
type UpdateTierVariationResult ¶
type UpdateTierVariationResult struct { commonentity.Result Warning string `json:"warning"` }
UpdateTierVariationResult
type VideoEntity ¶
type VideoEntity struct { VideoUrl string `json:"video_url"` ThumbnailUrl string `json:"thumbnail_url"` Duration int `json:"duration"` }
VideoEntity
Source Files ¶
- addglobalitemresult.go
- addglobalmodelresult.go
- attributeentity.go
- attributevalueentity.go
- brandentity.go
- categoryentity.go
- createpublishtaskresult.go
- daystoshiplimitentity.go
- deleteglobalitemresult.go
- deleteglobalmodelresult.go
- dimensionentity.go
- failuredeleteitementity.go
- failuresentity.go
- getattributesresult.go
- getbrandlistresult.go
- getcategoryresult.go
- getdtslimitresult.go
- getglobalitemidresult.go
- getglobaliteminforesult.go
- getglobalitemlimitresult.go
- getglobalitemlistresult.go
- getmodellistresult.go
- getpublishableshopresult.go
- getpublishedlistresult.go
- getpublishtaskresult.go
- globalitementity.go
- globalitemlistentity.go
- imageentity.go
- inittiervariationresult.go
- itemdescriptionlengthlimitentity.go
- itementity.go
- itemidmapentity.go
- itemimagecountlimitentity.go
- itemnamelengthlimitentity.go
- logisticentity.go
- modelentity.go
- optionentity.go
- parentattributeentity.go
- parentbrandentity.go
- preorderentity.go
- priceinfoentity.go
- pricelimitentity.go
- publishableshopentity.go
- publisheditementity.go
- setsyncfieldresult.go
- shopsyncentity.go
- stockinfoentity.go
- stocklimitentity.go
- successentity.go
- supportsizechartresult.go
- tiervariationentity.go
- tiervariationnamelengthlimitentity.go
- tiervariationoptionlengthlimitentity.go
- updateglobalmodelresult.go
- updatepriceresult.go
- updatesizechartresult.go
- updatestockresult.go
- updatetiervariationresult.go
- videoentity.go