/** * DTO with Facebook provider details of specific store * used to obtain reviews any time. * * @interface FacebookProviderDetailsDTO */ export interface FacebookProviderDetailsDTO { name: string; id: string; accessToken: string; userpicUrl: string; }