export default interface Media {
    created: Date;
    source: string;
    mimeType: string;
    useCase: string;
    userId?: string;
    agentId?: string;
    url?: string;
    s3?: {
        bucket: string;
        key: string;
    };
    messenger?: {
        facebookGraphType: string;
        attachmentId: string;
    };
    _id?: any;
}
