Documentation
¶
Overview ¶
Package reportdownloads contains methods related to ReportDownloads
Index ¶
- type ReportDownloadsV1
- func (r *ReportDownloadsV1) CreateReportDownload(body models.CreateReportDownloadV1Request) (*models.CreateReportDownloadResponse, *apiutils.APIError)
- func (r *ReportDownloadsV1) ListReportDownloads(limit *int64, start *string, filter *string) (*models.ListReportDownloadsResponse, *apiutils.APIError)
- type ReportDownloadsV1Client
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type ReportDownloadsV1 ¶
type ReportDownloadsV1 struct {
// contains filtered or unexported fields
}
ReportDownloadsV1 represents a custom type struct
func (*ReportDownloadsV1) CreateReportDownload ¶
func (r *ReportDownloadsV1) CreateReportDownload( body models.CreateReportDownloadV1Request) ( *models.CreateReportDownloadResponse, *apiutils.APIError)
CreateReportDownload Generates a report of a specified type given certain general conditions such as time range and other type-specific filters.
func (*ReportDownloadsV1) ListReportDownloads ¶
func (r *ReportDownloadsV1) ListReportDownloads( limit *int64, start *string, filter *string) ( *models.ListReportDownloadsResponse, *apiutils.APIError)
ListReportDownloads Returns a list of unexpired, generated reports.
type ReportDownloadsV1Client ¶
type ReportDownloadsV1Client interface { // ListReportDownloads Returns a list of unexpired, generated reports. ListReportDownloads( limit *int64, start *string, filter *string) ( *models.ListReportDownloadsResponse, *apiutils.APIError) // CreateReportDownload Generates a report of a specified type given certain general conditions such as time range and other type-specific filters. CreateReportDownload( body models.CreateReportDownloadV1Request) ( *models.CreateReportDownloadResponse, *apiutils.APIError) }
ReportDownloadsV1Client represents a custom type interface
func NewReportDownloadsV1 ¶
func NewReportDownloadsV1(config config.Config) ReportDownloadsV1Client
NewReportDownloadsV1 returns ReportDownloadsV1Client
Click to show internal directories.
Click to hide internal directories.