import { AbstractEntity } from '../../abstractEntity'; import { ChecksAggType, MonthlyTrendAggType, WellArchitectedPaginationType, WellArchitectedPeriodType, ReportsAggType, ScoreResultType, ScoresAggType, SeveritiesAggType, StandardsAggType, StandardWithCheckType } from '../types/wellArchitectedGraphQLTypes'; import { WellArchitectedQueries } from '../types/queryArguments'; export declare enum GetCustomerAccountDataFields { COLUMN_CHECKS_AGG = "checksAgg", COLUMN_MONTHLY_TREND_AGG = "monthlyTrendAgg", COLUMN_PAGINATION = "pagination", COLUMN_PERIOD = "period", COLUMN_REPORTS_AGG = "reportsAgg", COLUMN_RESULTS = "results", COLUMN_SCORES_AGG = "scoresAgg", COLUMN_SEVERITIES_AGG = "severitiesAgg", COLUMN_STANDARDS_AGG = "standardsAgg", COLUMN_STANDARDS = "standards" } export declare type GetCustomerAccountDataType = { [GetCustomerAccountDataFields.COLUMN_CHECKS_AGG]?: ChecksAggType; [GetCustomerAccountDataFields.COLUMN_MONTHLY_TREND_AGG]?: MonthlyTrendAggType; [GetCustomerAccountDataFields.COLUMN_PAGINATION]?: WellArchitectedPaginationType; [GetCustomerAccountDataFields.COLUMN_PERIOD]?: WellArchitectedPeriodType; [GetCustomerAccountDataFields.COLUMN_REPORTS_AGG]?: ReportsAggType[]; [GetCustomerAccountDataFields.COLUMN_RESULTS]?: ScoreResultType[]; [GetCustomerAccountDataFields.COLUMN_SCORES_AGG]?: ScoresAggType; [GetCustomerAccountDataFields.COLUMN_SEVERITIES_AGG]?: SeveritiesAggType; [GetCustomerAccountDataFields.COLUMN_STANDARDS_AGG]?: StandardsAggType; [GetCustomerAccountDataFields.COLUMN_STANDARDS]?: StandardWithCheckType[]; }; export declare type GetCustomerAccountDataGraphQLResultType = { [WellArchitectedQueries.GET_CUSTOMER_ACCOUNT_DATA]: GetCustomerAccountDataType; }; export declare class GetCustomerAccountData extends AbstractEntity { #private; constructor(getCustomerAccountDataInput: GetCustomerAccountDataType); get checksAgg(): ChecksAggType | undefined; get monthlyTrendAgg(): MonthlyTrendAggType | undefined; get pagination(): WellArchitectedPaginationType | undefined; get period(): WellArchitectedPeriodType | undefined; get scoresAgg(): ScoresAggType | undefined; get reportsAgg(): ReportsAggType[] | undefined; get results(): ScoreResultType[] | undefined; get severitiesAgg(): SeveritiesAggType | undefined; get standardsAgg(): StandardsAggType | undefined; get standards(): StandardWithCheckType[] | undefined; toJSON(): GetCustomerAccountDataType; }