import { AptlyBaseSchema } from './extends';
export type AptlyWholesaler = AptlyWholesalerSchema<string, string>;
export interface AptlyWholesalerSchema<ID, DATE> extends AptlyBaseSchema<ID, DATE> {
    orgNumber: string;
    integrated: boolean;
}
