import { AbstractEntity } from '../../abstractEntity'; import { ChecksAggType, EndCustomersAggType, MarketplacesAggType, MonthlyTrendAggType, PaginationsType, PeriodsType, ScoreResultType, ScoresAggType, SeveritiesAggType } from '../types/securityScoreGraphQLTypes'; import { SecurityScoreQueries } from '../types/queryArguments'; /** * @deprecated * Prefer using equivalent type in the wellArchitected */ export declare enum GetPartnerDataFields { COLUMN_CHECKS_AGG = "checksAgg", COLUMN_END_CUSTOMERS_AGG = "endCustomersAgg", COLUMN_MARKETPLACES_AGG = "marketplacesAgg", COLUMN_MONTHLY_TREND_AGG = "monthlyTrendAgg", COLUMN_PAGINATION = "pagination", COLUMN_PERIOD = "period", COLUMN_RESULTS = "results", COLUMN_SCORES_AGG = "scoresAgg", COLUMN_SEVERITIES_AGG = "severitiesAgg" } /** * @deprecated * Prefer using equivalent type in the wellArchitected */ export declare type GetPartnerDataType = { [GetPartnerDataFields.COLUMN_CHECKS_AGG]?: ChecksAggType; [GetPartnerDataFields.COLUMN_END_CUSTOMERS_AGG]?: EndCustomersAggType; [GetPartnerDataFields.COLUMN_MARKETPLACES_AGG]?: MarketplacesAggType; [GetPartnerDataFields.COLUMN_MONTHLY_TREND_AGG]?: MonthlyTrendAggType; [GetPartnerDataFields.COLUMN_PAGINATION]?: PaginationsType; [GetPartnerDataFields.COLUMN_PERIOD]?: PeriodsType; [GetPartnerDataFields.COLUMN_RESULTS]?: ScoreResultType[]; [GetPartnerDataFields.COLUMN_SCORES_AGG]?: ScoresAggType; [GetPartnerDataFields.COLUMN_SEVERITIES_AGG]?: SeveritiesAggType; }; /** * @deprecated * Prefer using equivalent type in the wellArchitected */ export declare type GetPartnerDataGraphQLResultType = { [SecurityScoreQueries.GET_PARTNER_DATA]: GetPartnerDataType; }; /** * @deprecated * Prefer using equivalent type in the wellArchitected */ export declare class GetPartnerData extends AbstractEntity { #private; constructor(getPartnerDataInput: GetPartnerDataType); get checksAgg(): ChecksAggType | undefined; get endCustomersAgg(): EndCustomersAggType | undefined; get monthlyTrendAgg(): MonthlyTrendAggType | undefined; get marketplacesAgg(): MarketplacesAggType | undefined; get period(): PeriodsType | undefined; get pagination(): PaginationsType | undefined; get results(): ScoreResultType[] | undefined; get scoresAgg(): ScoresAggType | undefined; get severitiesAgg(): SeveritiesAggType | undefined; toJSON(): GetPartnerDataType; }