import { ConferenceWebAccessTypeEnum } from './ConferenceWebAccessTypeEnum';
/** List public web access of your conference */
export interface ConferenceWebAccess {
    /** The id of the conference web access */
    id: number;
    /** The type of the conference web access : read or write */
    type: ConferenceWebAccessTypeEnum;
    /** The URL of the conference web access */
    url: string;
}
//# sourceMappingURL=ConferenceWebAccess.d.ts.map