mirror of
https://github.com/crawlab-team/crawlab.git
synced 2026-01-21 17:21:09 +01:00
15 lines
227 B
Go
15 lines
227 B
Go
package interfaces
|
|
|
|
import "time"
|
|
|
|
type Export interface {
|
|
GetId() string
|
|
GetType() string
|
|
GetTarget() string
|
|
GetFilter() Filter
|
|
GetStatus() string
|
|
GetStartTs() time.Time
|
|
GetEndTs() time.Time
|
|
GetDownloadPath() string
|
|
}
|