Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
View Source
var ( // EnumQSODownloadStatusMap contains ALL records, including un-released and import-only statuses EnumQSODownloadStatusMap map[QSODownloadStatus]*EnumQSODownloadStatusItem // EnumQSODownloadStatusListAll contains ALL records, including un-released and import-only statuses EnumQSODownloadStatusListAll []*EnumQSODownloadStatusItem // EnumQSODownloadStatusList // is a filtered list. // It excludes un-released and import-only records. EnumQSODownloadStatusList []*EnumQSODownloadStatusItem )
Functions ¶
This section is empty.
Types ¶
type EnumQSODownloadStatusItem ¶
type EnumQSODownloadStatusItem struct { shared.ImportRecordRoot ID QSODownloadStatus `csv:"Status"` // The value that is stored in the QRZCOM_QSO_DOWNLOAD_STATUS ADIF field. Description string `csv:"Description"` }
EnumQSODownloadStatusItem represents a QSO download status item
type QSODownloadStatus ¶
type QSODownloadStatus string
QSODownloadStatus represents the download status of a QSO
var ( Y QSODownloadStatus = "Y" // Y = the QSO has been downloaded from the online service N QSODownloadStatus = "N" // N = the QSO has not been downloaded from the online service I QSODownloadStatus = "I" // I = ignore or invalid )
Click to show internal directories.
Click to hide internal directories.