import { AbstractEntity } from '../../abstractEntity'; import { ChecksAggType, MonthlyTrendAggType, PaginationsType, PeriodsType, ScoreResultType, ScoresAggType, SeveritiesAggType, StandardsAggType, StandardWithCheckType } from '../types/securityScoreGraphQLTypes'; import { SecurityScoreQueries } from '../types/queryArguments'; /** * @deprecated * Prefer using equivalent type in the wellArchitected */ export declare enum GetCustomerAccountDataFields { COLUMN_CHECKS_AGG = "checksAgg", COLUMN_MONTHLY_TREND_AGG = "monthlyTrendAgg", COLUMN_PAGINATION = "pagination", COLUMN_PERIOD = "period", COLUMN_RESULTS = "results", COLUMN_SCORES_AGG = "scoresAgg", COLUMN_SEVERITIES_AGG = "severitiesAgg", COLUMN_STANDARDS_AGG = "standardsAgg", COLUMN_STANDARDS = "standards" } /** * @deprecated * Prefer using equivalent type in the wellArchitected */ export declare type GetCustomerAccountDataType = { [GetCustomerAccountDataFields.COLUMN_CHECKS_AGG]?: ChecksAggType; [GetCustomerAccountDataFields.COLUMN_MONTHLY_TREND_AGG]?: MonthlyTrendAggType; [GetCustomerAccountDataFields.COLUMN_PAGINATION]?: PaginationsType; [GetCustomerAccountDataFields.COLUMN_PERIOD]?: PeriodsType; [GetCustomerAccountDataFields.COLUMN_RESULTS]?: ScoreResultType[]; [GetCustomerAccountDataFields.COLUMN_SCORES_AGG]?: ScoresAggType; [GetCustomerAccountDataFields.COLUMN_SEVERITIES_AGG]?: SeveritiesAggType; [GetCustomerAccountDataFields.COLUMN_STANDARDS_AGG]?: StandardsAggType; [GetCustomerAccountDataFields.COLUMN_STANDARDS]?: StandardWithCheckType[]; }; /** * @deprecated * Prefer using equivalent type in the wellArchitected */ export declare type GetCustomerAccountDataGraphQLResultType = { [SecurityScoreQueries.GET_CUSTOMER_ACCOUNT_DATA]: GetCustomerAccountDataType; }; /** * @deprecated * Prefer using equivalent type in the wellArchitected */ export declare class GetCustomerAccountData extends AbstractEntity { #private; constructor(getCustomerAccountDataInput: GetCustomerAccountDataType); get checksAgg(): ChecksAggType | undefined; get monthlyTrendAgg(): MonthlyTrendAggType | undefined; get pagination(): PaginationsType | undefined; get period(): PeriodsType | undefined; get scoresAgg(): ScoresAggType | undefined; get results(): ScoreResultType[] | undefined; get severitiesAgg(): SeveritiesAggType | undefined; get standardsAgg(): StandardsAggType | undefined; get standards(): StandardWithCheckType[] | undefined; toJSON(): GetCustomerAccountDataType; }