@bit-ui-libs/common
Version:
This library was generated with [Nx](https://nx.dev).
25 lines (23 loc) • 627 B
text/typescript
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;
}