mirror of
https://github.com/cubixle/go-ebay.git
synced 2026-04-24 22:54:43 +01:00
62 lines
2.4 KiB
Go
62 lines
2.4 KiB
Go
package types
|
|
|
|
const (
|
|
PeriodCodeCustom string = "CustomCode"
|
|
PeriodCodeDays1 string = "Days_1"
|
|
PeriodCodeDays180 string = "Days_180"
|
|
PeriodCodeDays30 string = "Days_30"
|
|
PeriodCodeDays360 string = "Days_360"
|
|
PeriodCodeDays540 string = "Days_540"
|
|
)
|
|
|
|
const (
|
|
HitCountCodeTypeBasicStyle string = "BasicStyle"
|
|
HitCountCodeTypeCustomCode string = "CustomCode"
|
|
HitCountCodeTypeGreenLED string = "GreenLED"
|
|
HitCountCodeTypeHidden string = "Hidden"
|
|
HitCountCodeTypeHiddenStyle string = "HiddenStyle"
|
|
HitCountCodeTypeHonestyStyle string = "HonestyStyle"
|
|
HitCountCodeTypeNoHitCounter string = "NoHitCounter"
|
|
HitCountCodeTypeRetroStyle string = "RetroStyle"
|
|
)
|
|
|
|
const (
|
|
InventoryTrackingMethodCodeTypeCustomCode string = "CustomCode"
|
|
InventoryTrackingMethodCodeTypeItemID string = "ItemID"
|
|
InventoryTrackingMethodCodeTypeSKU string = "SKU"
|
|
)
|
|
|
|
const (
|
|
ListingEnhancementsCodeTypeBoldTitle string = "BoldTitle"
|
|
ListingEnhancementsCodeTypeCustomCode string = "CustomCode"
|
|
ListingEnhancementsCodeTypeHomePageFeatured string = "HomePageFeatured"
|
|
ListingEnhancementsCodeTypeValuePackBundle string = "ValuePackBundle"
|
|
)
|
|
|
|
const (
|
|
ListingTypeCodeTypeAdType string = "AdType"
|
|
ListingTypeCodeTypeAuction string = "Auction"
|
|
ListingTypeCodeTypeChinese string = "Chinese"
|
|
ListingTypeCodeTypeCustomCode string = "CustomCode"
|
|
ListingTypeCodeTypeFixedPriceItem string = "FixedPriceItem"
|
|
ListingTypeCodeTypeLeadGeneration string = "LeadGeneration"
|
|
ListingTypeCodeTypePersonalOffer string = "PersonalOffer"
|
|
ListingTypeCodeTypeUnkown string = "Unkown"
|
|
)
|
|
|
|
const (
|
|
BuyerPaymentMethodCodeTypePayPal string = "PayPal"
|
|
)
|
|
|
|
const (
|
|
ShippingTypeCodeTypeCalculated string = "Calculated"
|
|
ShippingTypeCodeTypeCalculatedDomesticFlatInternational string = "CalculatedDomesticFlatInternational"
|
|
ShippingTypeCodeTypeCustomCode string = "CustomCode"
|
|
ShippingTypeCodeTypeFlat string = "Flat"
|
|
ShippingTypeCodeTypeFlatDomesticCalculatedInternational string = "FlatDomesticCalculatedInternational"
|
|
ShippingTypeCodeTypeFree string = "Free"
|
|
ShippingTypeCodeTypeFreight string = "Freight"
|
|
ShippingTypeCodeTypeFreightFlat string = "FreightFlat"
|
|
ShippingTypeCodeTypeNotSpecified string = "NotSpecified"
|
|
)
|