mirror of
https://github.com/logos-messaging/logos-messaging-go-bindings.git
synced 2026-05-25 11:09:28 +00:00
12 lines
273 B
Go
12 lines
273 B
Go
|
|
package types
|
||
|
|
|
||
|
|
// SubscriptionOptions represents the parameters passed to Subscribe()
|
||
|
|
// to customize the subscription behavior.
|
||
|
|
type SubscriptionOptions struct {
|
||
|
|
PrivateKeyID string
|
||
|
|
SymKeyID string
|
||
|
|
PoW float64
|
||
|
|
PubsubTopic string
|
||
|
|
Topics [][]byte
|
||
|
|
}
|