UNPKG

@toutix/whitelabel

Version:

Toutix whitelabel React container components

24 lines 710 B
import { IEventV2 } from "./Event"; import { IProfile } from "./User"; export interface IOrganization { id: string; organizationName: string; organizationDescription?: string; organizationHtmlDescription?: string; organizationLogo?: string; organizationEmail?: string; organizationPhone?: string; organizationAddress?: string; organizationCurrency?: string; shortUrl?: string; organizers: IProfile[]; isActive: boolean; } export interface IOrganizationDetailsResponse { organizationDetails: IOrganization; pastEvents: IEventV2[]; upcomingEvents: IEventV2[]; count: number; durationMessage: string; } //# sourceMappingURL=Organization.d.ts.map