/**
 * CyberSource Merged Spec
 * All CyberSource API specs merged together. These are available at https://developer.cybersource.com/api/reference/api-reference.html
 *
 * OpenAPI spec version: 0.0.1
 *
 *
 * NOTE: This class is auto generated by the swagger code generator program.
 * https://github.com/swagger-api/swagger-codegen.git
 * Do not edit the class manually.
 */
import { ReportingV3ReportsGet200ResponseLink } from './reporting-v3-reports-get200-response-link';
/**
 * Report Search Result Bean
 * @export
 * @interface ReportingV3ReportsGet200ResponseReportSearchResults
 */
export interface ReportingV3ReportsGet200ResponseReportSearchResults {
    /**
     *
     * @type {ReportingV3ReportsGet200ResponseLink}
     * @memberof ReportingV3ReportsGet200ResponseReportSearchResults
     */
    link?: ReportingV3ReportsGet200ResponseLink;
    /**
     * Unique Report Identifier of each report type
     * @type {string}
     * @memberof ReportingV3ReportsGet200ResponseReportSearchResults
     */
    reportDefinitionId?: string;
    /**
     * Name of the report specified by merchant while creating the report
     * @type {string}
     * @memberof ReportingV3ReportsGet200ResponseReportSearchResults
     */
    reportName?: string;
    /**
     * Format of the report to get generated Valid Values: - application/xml - text/csv
     * @type {string}
     * @memberof ReportingV3ReportsGet200ResponseReportSearchResults
     */
    reportMimeType?: string;
    /**
     * Frequency of the report to get generated Valid Values: - DAILY - WEEKLY - MONTHLY - ADHOC
     * @type {string}
     * @memberof ReportingV3ReportsGet200ResponseReportSearchResults
     */
    reportFrequency?: string;
    /**
     * Status of the report Valid Values: - COMPLETED - PENDING - QUEUED - RUNNING - ERROR - NO_DATA
     * @type {string}
     * @memberof ReportingV3ReportsGet200ResponseReportSearchResults
     */
    status?: string;
    /**
     * Specifies the report start time in ISO 8601 format
     * @type {Date}
     * @memberof ReportingV3ReportsGet200ResponseReportSearchResults
     */
    reportStartTime?: Date;
    /**
     * Specifies the report end time in ISO 8601 format
     * @type {Date}
     * @memberof ReportingV3ReportsGet200ResponseReportSearchResults
     */
    reportEndTime?: Date;
    /**
     * Time Zone
     * @type {string}
     * @memberof ReportingV3ReportsGet200ResponseReportSearchResults
     */
    timezone?: string;
    /**
     * Unique identifier generated for every reports
     * @type {string}
     * @memberof ReportingV3ReportsGet200ResponseReportSearchResults
     */
    reportId?: string;
    /**
     * CyberSource Merchant Id
     * @type {string}
     * @memberof ReportingV3ReportsGet200ResponseReportSearchResults
     */
    organizationId?: string;
    /**
     * Specifies the time of the report in queued  in ISO 8601 format
     * @type {Date}
     * @memberof ReportingV3ReportsGet200ResponseReportSearchResults
     */
    queuedTime?: Date;
    /**
     * Specifies the time of the report started to generate  in ISO 8601 format
     * @type {Date}
     * @memberof ReportingV3ReportsGet200ResponseReportSearchResults
     */
    reportGeneratingTime?: Date;
    /**
     * Specifies the time of the report completed the generation  in ISO 8601 format
     * @type {Date}
     * @memberof ReportingV3ReportsGet200ResponseReportSearchResults
     */
    reportCompletedTime?: Date;
    /**
     * Specifies whether the subscription created is either Custom, Standard or Classic
     * @type {string}
     * @memberof ReportingV3ReportsGet200ResponseReportSearchResults
     */
    subscriptionType?: string;
    /**
     * Id for selected group.
     * @type {string}
     * @memberof ReportingV3ReportsGet200ResponseReportSearchResults
     */
    groupId?: string;
}
