Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type ArrayOfRestartedItem ¶
type ArrayOfRestartedItem struct {
RestartedItem []*RestartedItem `xml:"RestartedItem,omitempty" json:"RestartedItem,omitempty"`
}
type AuthenticationHeader ¶
type ConfigurationHeader ¶
type GetItemRestarts ¶
type GetItemRestartsResponse ¶
type GetItemRestartsResponse struct {
XMLName xml.Name `xml:"http://api.tradera.com GetItemRestartsResponse"`
GetItemRestartsResult *ItemRestarts `xml:"GetItemRestartsResult,omitempty" json:"GetItemRestartsResult,omitempty"`
}
type ItemRestarts ¶
type ItemRestarts struct {
LastRestartedItemId int32 `xml:"LastRestartedItemId,omitempty" json:"LastRestartedItemId,omitempty"`
AncestorItemId int32 `xml:"AncestorItemId,omitempty" json:"AncestorItemId,omitempty"`
RestartedItems *ArrayOfRestartedItem `xml:"RestartedItems,omitempty" json:"RestartedItems,omitempty"`
}
type ListingServiceHttpGet ¶
type ListingServiceHttpGet interface {
GetItemRestarts(request *string) (*ItemRestarts, error)
GetItemRestartsContext(ctx context.Context, request *string) (*ItemRestarts, error)
}
func NewListingServiceHttpGet ¶
func NewListingServiceHttpGet(client *soap.Client) ListingServiceHttpGet
type ListingServiceHttpPost ¶
type ListingServiceHttpPost interface {
GetItemRestarts(request *string) (*ItemRestarts, error)
GetItemRestartsContext(ctx context.Context, request *string) (*ItemRestarts, error)
}
func NewListingServiceHttpPost ¶
func NewListingServiceHttpPost(client *soap.Client) ListingServiceHttpPost
type ListingServiceSoap ¶
type ListingServiceSoap interface {
GetItemRestarts(request *GetItemRestarts) (*GetItemRestartsResponse, error)
GetItemRestartsContext(ctx context.Context, request *GetItemRestarts) (*GetItemRestartsResponse, error)
}
func NewListingServiceSoap ¶
func NewListingServiceSoap(client *soap.Client) ListingServiceSoap
type RestartedItem ¶
type RestartedItem struct {
RestartedItemId int32 `xml:"RestartedItemId,omitempty" json:"RestartedItemId,omitempty"`
RestartedAsItemId int32 `xml:"RestartedAsItemId,omitempty" json:"RestartedAsItemId,omitempty"`
RestartedDate soap.XSDDateTime `xml:"RestartedDate,omitempty" json:"RestartedDate,omitempty"`
}
Click to show internal directories.
Click to hide internal directories.