/*! * Copyright Adaptavist 2022 (c) All rights reserved */ import { OrganizationObjectAsResponse } from "../definitions/OrganizationObjectAsResponse"; export interface OrganizationsResponseAsResponse { count?: number; next_page?: string; organizations?: Array; previous_page?: string; meta?: { after_cursor?: string; before_cursor?: string; has_more?: boolean; }; links?: { next: string; prev: string; }; } //# sourceMappingURL=OrganizationsResponseAsResponse.d.ts.map