import { AbstractEntity } from '../../../abstractEntity'; import { DataKeywords, FiltersParameters, SortParameters } from '../../licensesClient'; export declare enum EndCustomerOrganizationUnitFindResultFields { COLUMN_ORGANIZATION_UNIT_REF = "organizationUnitRef", COLUMN_NAME = "name", COLUMN_LAST_UPDATE = "lastUpdate" } export declare type EndCustomerOrganizationUnitFindResultType = { [EndCustomerOrganizationUnitFindResultFields.COLUMN_ORGANIZATION_UNIT_REF]: string; [EndCustomerOrganizationUnitFindResultFields.COLUMN_NAME]: string; [EndCustomerOrganizationUnitFindResultFields.COLUMN_LAST_UPDATE]: string; }; export declare type EndCustomerOrganisationUnitDataKeywords = { [EndCustomerOrganizationUnitFindResultFields.COLUMN_ORGANIZATION_UNIT_REF]?: DataKeywords; [EndCustomerOrganizationUnitFindResultFields.COLUMN_NAME]?: DataKeywords; [EndCustomerOrganizationUnitFindResultFields.COLUMN_LAST_UPDATE]?: DataKeywords; }; export declare type EndCustomerOrganizationUnitSortParameters = { [EndCustomerOrganizationUnitFindResultFields.COLUMN_ORGANIZATION_UNIT_REF]?: SortParameters; [EndCustomerOrganizationUnitFindResultFields.COLUMN_NAME]?: SortParameters; [EndCustomerOrganizationUnitFindResultFields.COLUMN_LAST_UPDATE]?: SortParameters; }; export declare type EndCustomerOrganizationUnitFiltersParameters = { [EndCustomerOrganizationUnitFindResultFields.COLUMN_ORGANIZATION_UNIT_REF]?: FiltersParameters; [EndCustomerOrganizationUnitFindResultFields.COLUMN_NAME]?: FiltersParameters; [EndCustomerOrganizationUnitFindResultFields.COLUMN_LAST_UPDATE]?: FiltersParameters; }; export declare class EndCustomerOrganizationUnitFindResult extends AbstractEntity { #private; constructor(endCustomerOrganizationUnit: EndCustomerOrganizationUnitFindResultType); get organizationUnitRef(): string; get name(): string; get lastUpdate(): string; toJSON(): EndCustomerOrganizationUnitFindResultType; }