Documentation ¶
Index ¶
- func Describe(i interface{}) (string, string)
- func Serialize(i interface{}) []byte
- func Wrap(i interface{}) interface{}
- type ChatMessage
- type ChatRead
- type ChatTyping
- type CompletionNotification
- type Data
- type DisputeCloseNotification
- type DisputeOpenNotification
- type DisputeUpdateNotification
- type FollowNotification
- type FulfillmentNotification
- type IncomingTransaction
- type ModeratorAddNotification
- type ModeratorRemoveNotification
- type Notification
- type OrderCancelNotification
- type OrderConfirmationNotification
- type OrderNotification
- type PaymentNotification
- type RefundNotification
- type StatusNotification
- type UnfollowNotification
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
Types ¶
type ChatMessage ¶ added in v0.3.1
type ChatTyping ¶ added in v0.5.0
type CompletionNotification ¶ added in v0.2.2
type CompletionNotification struct {
OrderId string `json:"orderId"`
}
type DisputeCloseNotification ¶ added in v0.3.0
type DisputeCloseNotification struct {
OrderId string `json:"orderId"`
}
type DisputeOpenNotification ¶ added in v0.3.0
type DisputeOpenNotification struct {
OrderId string `json:"orderId"`
}
type DisputeUpdateNotification ¶ added in v0.3.0
type DisputeUpdateNotification struct {
OrderId string `json:"orderId"`
}
type FollowNotification ¶
type FollowNotification struct {
Follow string `json:"follow"`
}
type FulfillmentNotification ¶ added in v0.2.2
type FulfillmentNotification struct {
OrderId string `json:"orderId"`
}
type IncomingTransaction ¶ added in v0.5.3
type IncomingTransaction struct { Txid string `json:"txid"` Value int64 `json:"value"` Address string `json:"address"` Status string `json:"status"` Memo string `json:"memo"` Timestamp time.Time `json:"timestamp"` Confirmations int32 `json:"confirmations"` OrderId string `json:"orderId"` Thumbnail string `json:"thumbnail"` Height int32 `json:"height"` CanBumpFee bool `json:"canBumpFee"` }
type ModeratorAddNotification ¶ added in v0.5.1
type ModeratorAddNotification struct {
ModeratorAdd string `json:"moderatorAdd"`
}
type ModeratorRemoveNotification ¶ added in v0.5.1
type ModeratorRemoveNotification struct {
ModeratorRemove string `json:"moderatorRemove"`
}
type Notification ¶ added in v0.3.1
type OrderCancelNotification ¶ added in v0.2.1
type OrderCancelNotification struct {
OrderId string `json:"orderId"`
}
type OrderConfirmationNotification ¶ added in v0.2.1
type OrderConfirmationNotification struct {
OrderId string `json:"orderId"`
}
type OrderNotification ¶
type PaymentNotification ¶
type RefundNotification ¶ added in v0.2.1
type RefundNotification struct {
OrderId string `json:"orderId"`
}
type StatusNotification ¶ added in v0.5.0
type StatusNotification struct {
Status string `json:"status"`
}
type UnfollowNotification ¶
type UnfollowNotification struct {
Unfollow string `json:"unfollow"`
}
Click to show internal directories.
Click to hide internal directories.