Type Alias DropUncheckedCreateWithoutGameInput

DropUncheckedCreateWithoutGameInput: {
    createdAt?: Date | string;
    dbId?: string;
    description?: string | null;
    dropId: string;
    endsAt: Date | string;
    imageUrl?: string | null;
    name: string;
    organizationId?: string | null;
    organizationName?: string | null;
    organizationUrl?: string | null;
    platform: PlatformEnum;
    platformData?: Prisma.NullableJsonNullValueInput | InputJsonValue;
    sentDrops?: SentDropUncheckedCreateNestedManyWithoutDropInput;
    startsAt: Date | string;
    status: string;
    updatedAt?: Date | string;
    url?: string | null;
}