import { GeolocationData, RelationTypeEnum } from '../../common';
import { SerializedImage, SerializedProp } from '../interfaces/customer-base';

export interface AssetWitness {
  approved: boolean;
  avatarUrl: string;
  city: string;
  country: string;
  createdAt: string;
  email: string;
  eventIdRef: string;
  firstName: string;
  geolocation: GeolocationData;
  id: string;
  isMinted: boolean;
  lastName: string;
  mintedAt: string | null;
  name: string;
  relationType: RelationTypeEnum;
  serializedImages: SerializedImage[] | null;
  serializedProps: SerializedProp[] | null;
  state: string;
  userId: string;
}
