import type { BasicUser } from './basic-user';
export interface OrganizationRead {
    'id'?: number;
    'slug'?: string;
    'name'?: string;
    'description'?: string;
    'created_date'?: string;
    'updated_date'?: string;
    'contact'?: object;
    'owner': BasicUser | null;
}
