Documentation ¶
Index ¶
- func NewCancelOrder(id types.Guid) command.Command
- func NewCancelOrder1(id types.Guid, orderId types.Guid) command.Command
- func NewConfirmOrder(id types.Guid) command.Command
- func NewConfirmOrder1(id types.Guid, orderId types.Guid, paymentId types.Guid) command.Command
- func NewCreateOrder(id types.Guid) command.Command
- func NewCreateOrder1(id types.Guid, orderId types.Guid) command.Command
- func NewReserveOrder(id types.Guid) command.Command
- func NewReserveOrder1(id types.Guid, orderId types.Guid) command.Command
- type CancelOrder
- type ConfirmOrder
- type CreateOrder
- type ReserveOrder
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func NewConfirmOrder1 ¶
Types ¶
type CancelOrder ¶
type CancelOrder struct { OrderId types.Guid `json:"order_id"` // contains filtered or unexported fields }
func (*CancelOrder) Id ¶
func (co *CancelOrder) Id() types.Guid
type ConfirmOrder ¶
type ConfirmOrder struct { OrderId types.Guid `json:"order_id"` PaymentId types.Guid `json:"payment_id"` // contains filtered or unexported fields }
func (*ConfirmOrder) Id ¶
func (co *ConfirmOrder) Id() types.Guid
type CreateOrder ¶
type CreateOrder struct { OrderId types.Guid `json:"order_id"` // contains filtered or unexported fields }
func (*CreateOrder) Id ¶
func (co *CreateOrder) Id() types.Guid
type ReserveOrder ¶
type ReserveOrder struct { OrderId types.Guid `json:"order_id"` // contains filtered or unexported fields }
func (*ReserveOrder) Id ¶
func (co *ReserveOrder) Id() types.Guid
Click to show internal directories.
Click to hide internal directories.