Discover Packages
github.com/pennsieve/pennsieve-go-core
pkg
changelog
package
Version:
v1.4.7
Opens a new window with list of versions in this module.
Published: May 11, 2023
License: Apache-2.0
Opens a new window with license information.
Imports: 6
Opens a new window with list of imports.
Imported by: 1
Opens a new window with list of known importers.
Documentation
Documentation
¶
type Event struct {
EventType Type `json:"eventType"`
EventDetail interface{} `json:"eventDetail"`
Timestamp time .Time `json:"timestamp"`
}
type Message struct {
DatasetChangelogEventJob MessageParams `json:"DatasetChangelogEventJob"`
}
type MessageParams struct {
OrganizationId int64 `json:"organizationId"`
DatasetId int64 `json:"datasetId"`
UserId string `json:"userId"`
Events []Event `json:"events"`
TraceId string `json:"traceId"`
Id string `json:"id"`
}
type PackageCreateEvent struct {
Id int64 `json:"id"`
Name string `json:"name"`
NodeId string `json:"nodeId"`
}
type ParentPackage struct {
Id int64 `json:"id"`
Name string `json:"name"`
NodeId string `json:"nodeId"`
}
const (
CreatePackage Type = iota
DeletePackage
)
TODO: add other types based on API
Source Files
¶
Click to show internal directories.
Click to hide internal directories.