2020-01-13 19:17:30 +00:00
|
|
|
package types
|
|
|
|
|
|
|
|
// SubscriptionOptions represents the parameters passed to Subscribe()
|
|
|
|
// to customize the subscription behavior.
|
|
|
|
type SubscriptionOptions struct {
|
|
|
|
PrivateKeyID string
|
|
|
|
SymKeyID string
|
|
|
|
PoW float64
|
2023-05-22 21:38:02 +00:00
|
|
|
PubsubTopic string
|
2020-01-13 19:17:30 +00:00
|
|
|
Topics [][]byte
|
|
|
|
}
|